:root{
  --base:#FCFBF9;
  --cream:#FFFFFF;
  --soft:#F7F3F1;
  --soft-2:#F1EBE6;

  --olive:#B97D7B;
  --olive-2:#928E5E;
  --dark:#575527;
  --ink:#3B2A2A;
  --muted:#746665;
  --white:#FFFFFF;

  --warm-fog:#DDD3C9;
  --berry:#ECC4C3;
  --blossom:#B97D7B;
  --meadow:#928E5E;
  --soldier:#575527;

  --line:rgba(87,85,39,.16);
  --shadow:0 24px 70px rgba(87,85,39,.10);
  --shadow-soft:0 18px 44px rgba(87,85,39,.06);

  --radius-xl:32px;
  --max:1180px;
  --ease:cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--base);
  overflow-x:hidden;
}

body.cart-open{overflow:hidden}

a{
  color:inherit;
  text-decoration:none;
}

button,input,select,textarea{font:inherit}

button{cursor:pointer}

img{
  max-width:100%;
  display:block;
}

.page-shell{
  width:100%;
  min-height:100vh;
  position:relative;
  isolation:isolate;
  background:
    radial-gradient(circle at 10% 8%, rgba(236,196,195,.34), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(146,142,94,.18), transparent 30%),
    var(--base);
}

.grain{
  pointer-events:none;
  position:fixed;
  inset:0;
  z-index:0;
  opacity:.06;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}

.container{
  width:min(calc(100% - 36px),var(--max));
  margin-inline:auto;
  position:relative;
  z-index:2;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(221,211,201,.90);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px);
  box-shadow:0 10px 34px rgba(87,85,39,.05);
}

.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}

.brand-mark{
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,var(--olive),var(--olive-2));
  color:#FFFDFB;
  font-family:Georgia,serif;
  font-size:19px;
  font-weight:700;
  box-shadow:0 14px 26px rgba(87,85,39,.18);
}

.custom-logo-wrap img,
.custom-logo-link img{
  max-width:64px!important;
  max-height:64px!important;
  width:auto!important;
  height:auto!important;
  object-fit:contain!important;
}

.brand-copy strong{
  display:block;
  font-size:15px;
  letter-spacing:-.02em;
  color:var(--dark);
}

.brand-copy span{
  display:block;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--olive);
  margin-top:3px;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:8px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,253,251,.58);
}

.nav-links a{
  font-size:13px;
  color:rgba(87,85,39,.82);
  padding:9px 12px;
  border-radius:999px;
  transition:.25s var(--ease);
  white-space:nowrap;
}

.nav-links a:hover{
  color:var(--olive);
  background:rgba(236,196,195,.35);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.icon-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid var(--line);
  background:rgba(255,253,251,.86);
  color:var(--dark);
  display:grid;
  place-items:center;
  position:relative;
  transition:.25s var(--ease);
}

.icon-btn:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-soft);
}

.cart-count{
  position:absolute;
  top:-3px;
  right:-3px;
  width:19px;
  height:19px;
  border-radius:50%;
  background:var(--dark);
  color:#FFFDFB;
  font-size:11px;
  font-weight:800;
  display:grid;
  place-items:center;
}

.menu-toggle{display:none}

.btn{
  border:1px solid transparent;
  border-radius:999px;
  padding:13px 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  font-size:14px;
  font-weight:750;
  line-height:1;
  transition:.25s var(--ease);
  white-space:nowrap;
}

.btn-primary{
  color:#FFFDFB;
  background:var(--olive);
  border-color:var(--olive);
  box-shadow:0 18px 36px rgba(87,85,39,.12);
}

.btn-primary:hover{
  background:var(--dark);
  border-color:var(--dark);
  color:#FFFDFB;
  transform:translateY(-2px);
}

.btn-light,
.btn-outline,
.mini-btn{
  background:rgba(255,253,251,.72);
  color:var(--dark);
  border:1px solid rgba(185,125,123,.38);
}

.btn-light:hover,
.btn-outline:hover,
.mini-btn:hover{
  background:var(--soft);
  color:var(--dark);
  border-color:var(--olive);
}

.mini-btn{
  min-height:42px;
  border-radius:999px;
  padding:10px 18px;
  font-size:13px;
  font-weight:800;
}

.mobile-panel{
  display:none;
  position:fixed;
  top:92px;
  right:18px;
  left:18px;
  z-index:99;
  background:rgba(221,211,201,.98);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:14px;
}

.mobile-panel.is-open{
  display:grid;
  gap:4px;
}

.mobile-panel a{
  padding:14px;
  border-radius:16px;
  color:var(--dark);
  font-weight:750;
  border-bottom:1px solid rgba(87,85,39,.1);
}

.mobile-panel a:hover{
  background:rgba(236,196,195,.45);
  color:var(--olive);
}

section{
  position:relative;
  padding:92px 0;
}

.hero{
  padding:96px 0 86px;
  background:
    radial-gradient(circle at 12% 12%,rgba(236,196,195,.42),transparent 32%),
    radial-gradient(circle at 88% 18%,rgba(146,142,94,.18),transparent 34%),
    linear-gradient(180deg,#FFFDFB 0%,var(--base) 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,490px);
  gap:58px;
  align-items:center;
}

.eyebrow,
.kicker,
.plan-tag{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--dark);
  background:rgba(236,196,195,.48);
  border:1px solid rgba(185,125,123,.28);
  border-radius:999px;
  padding:8px 12px;
  margin-bottom:20px;
}

.eyebrow::before{
  content:"";
  width:9px;
  height:9px;
  background:var(--olive);
  border-radius:50%;
}

.hero h1,
.section-title,
.about-card h2,
.contact-card h2,
.cta-band h2{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--dark);
  font-weight:500;
  letter-spacing:-.06em;
}

.hero h1{
  font-size:clamp(48px,7vw,104px);
  line-height:.93;
  margin:0 0 22px;
  max-width:860px;
}

.hero h1 span{
  color:var(--olive);
  font-style:italic;
}

.hero-copy,
.section-text{
  font-size:17px;
  line-height:1.72;
  color:rgba(87,85,39,.78);
  max-width:640px;
  margin:0 0 28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:38px;
  max-width:700px;
}

.trust-card,
.service-card,
.step-card,
.plan-card,
.faq-item,
.contact-card,
.lead-form{
  background:rgba(255,253,251,.68);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow-soft);
  transition:.25s var(--ease);
}

.trust-card{
  padding:16px;
  border-radius:20px;
}

.trust-card strong{
  display:block;
  font-family:Georgia,serif;
  font-size:25px;
  color:var(--olive);
  line-height:1;
}

.trust-card span{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:rgba(87,85,39,.78);
  line-height:1.45;
}

.hero-visual{
  position:relative;
  min-height:660px;
}

.portrait-card{
  position:absolute;
  inset:0 0 0 auto;
  width:min(100%,470px);
  height:650px;
  border-radius:52% 52% 36px 36px;
  overflow:hidden;
  border:1px solid rgba(185,125,123,.28);
  background:#FFFDFB;
  box-shadow:var(--shadow);
}

.portrait-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.portrait-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  text-align:center;
  background:
    radial-gradient(circle at 50% 24%,#FFFDFB 0 18%,rgba(236,196,195,.62) 19% 44%,rgba(221,211,201,.92) 45%);
}

.portrait-placeholder strong{
  font-family:Georgia,serif;
  font-size:38px;
  color:var(--dark);
}

.floating-note{
  position:absolute;
  left:0;
  bottom:58px;
  max-width:350px;
  background:rgba(255,253,251,.80);
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
}

.floating-note small{
  color:var(--olive);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.16em;
}

.floating-note p{
  font-family:Georgia,serif;
  font-size:24px;
  line-height:1.05;
  margin:10px 0 0;
  color:var(--dark);
}

.visual-tag{
  position:absolute;
  right:0;
  bottom:0;
  width:138px;
  height:138px;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-align:center;
  background:var(--dark);
  color:#FFFDFB;
  font-weight:900;
  line-height:.95;
  transform:rotate(-8deg);
  border:8px solid #FFFDFB;
  box-shadow:var(--shadow-soft);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:38px;
}

.section-title{
  font-size:clamp(38px,5vw,62px);
  line-height:.97;
  margin:0;
}

.section-text{
  margin:0;
  max-width:520px;
}

.about{
  background:#FFFDFB;
}

.about-grid{
  display:grid;
  grid-template-columns:minmax(300px,480px) minmax(0,1fr);
  gap:70px;
  align-items:center;
}

.about-photo{
  height:620px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(185,125,123,.28);
  box-shadow:var(--shadow);
  background:#FFFDFB;
}

.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.about-card{
  border:1px solid var(--line);
  background:rgba(255,253,251,.74);
  border-radius:34px;
  padding:44px;
  box-shadow:var(--shadow-soft);
}

.about-card h2{
  font-size:clamp(42px,5vw,68px);
  line-height:.95;
  margin:0 0 24px;
}

.about-card p{
  font-size:16px;
  line-height:1.75;
  color:rgba(87,85,39,.78);
  margin:0 0 16px;
}

.services-grid,
.process-grid,
.plans-grid{
  display:grid;
  gap:22px;
}

.services-grid{
  grid-template-columns:repeat(3,1fr);
}

.service-card:hover,
.step-card:hover,
.plan-card:hover,
.faq-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:rgba(185,125,123,.34);
}

.service-card{
  padding:28px;
  display:flex;
  min-height:300px;
  flex-direction:column;
  justify-content:space-between;
}

.service-icon,
.step-number{
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:var(--soft);
  color:var(--dark);
  border:1px solid var(--line);
  font-weight:900;
}

.service-card h3,
.step-card h3,
.plan-card h3{
  font-size:23px;
  letter-spacing:-.03em;
  margin:0 0 12px;
  color:var(--dark);
}

.service-card p,
.step-card p,
.plan-card p,
.plan-meta{
  color:rgba(87,85,39,.78);
  line-height:1.65;
  margin:0;
}

.plans{
  background:linear-gradient(180deg,#FFFDFB 0%,var(--base) 100%);
}

.plans-grid{
  grid-template-columns:repeat(3,1fr);
}

.plan-card{
  padding:28px;
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.plan-card.featured{
  background:var(--soft);
  border-color:rgba(185,125,123,.38);
  color:var(--dark);
}

.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured .plan-meta,
.plan-card.featured .price{
  color:var(--dark)!important;
}

.plan-card.featured .plan-tag{
  background:rgba(255,253,251,.48);
  color:var(--dark);
  border-color:rgba(87,85,39,.16);
}

.plan-card.featured .btn{
  background:var(--dark)!important;
  color:#FFFDFB!important;
  border-color:var(--dark)!important;
}

.plan-card.featured .btn:hover{
  background:var(--olive)!important;
  border-color:var(--olive)!important;
}

.plan-tag{
  margin-bottom:14px;
}

.price{
  display:block;
  font-family:Georgia,serif;
  color:var(--olive);
  font-size:36px;
  line-height:1;
  margin:18px 0;
}

.plan-meta{
  font-size:13px;
  margin-top:12px;
}

.plans-includes{
  margin-top:34px;
}

.process-grid{
  grid-template-columns:repeat(4,1fr);
}

.step-card{
  padding:28px;
}

.step-number{
  font-family:Georgia,serif;
  font-size:22px;
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:42px;
  border-radius:32px;
  background:linear-gradient(135deg,var(--dark),var(--olive-2));
  color:#FFFDFB;
  box-shadow:var(--shadow);
}

.cta-band h2{
  font-size:clamp(34px,4vw,56px);
  line-height:1;
  margin:0 0 12px;
  color:#FFFDFB;
}

.cta-band p,
.cta-band .kicker{
  color:#FFFDFB!important;
}

.cta-band p{
  margin:0;
  max-width:740px;
  line-height:1.7;
}

.cta-band .btn-primary{
  background:#FFFDFB!important;
  color:var(--dark)!important;
  border-color:#FFFDFB!important;
}

.cta-band .btn-primary:hover{
  background:var(--soft)!important;
  color:var(--dark)!important;
  border-color:var(--soft)!important;
}

.faq-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:46px;
}

.faq-list{
  display:grid;
  gap:12px;
}

.faq-item{
  overflow:hidden;
}

.faq-question{
  width:100%;
  border:0;
  background:transparent;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:left;
  color:var(--dark);
  font-weight:850;
}

.faq-answer{
  display:none;
  padding:0 24px 22px;
  color:rgba(87,85,39,.78);
  line-height:1.65;
}

.faq-item.active .faq-answer{
  display:block;
}

.contact{
  background:
    radial-gradient(circle at 12% 8%, rgba(236,196,195,.32), transparent 30%),
    linear-gradient(180deg,#FFFDFB 0%,var(--base) 100%);
}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,440px) minmax(0,1fr);
  gap:26px;
  align-items:start;
}

.contact-card,
.lead-form{
  padding:32px;
}

.contact-card h2{
  font-size:clamp(38px,4vw,58px);
  line-height:1;
  margin:0 0 18px;
}

.contact-list{
  display:grid;
  gap:14px;
  margin-top:26px;
}

.contact-line{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,253,251,.72);
}

.contact-line>span:first-child{
  font-size:22px;
}

.contact-line strong{
  display:block;
  color:var(--dark);
  margin-bottom:4px;
}

.contact-line div span{
  color:rgba(87,85,39,.78);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.field{
  display:grid;
  gap:8px;
}

.field.full,
.consent{
  grid-column:1/-1;
}

label{
  font-size:13px;
  font-weight:800;
  color:var(--olive);
}

input,
select,
textarea{
  width:100%;
  border:1px solid rgba(87,85,39,.18);
  background:rgba(255,253,251,.78);
  border-radius:16px;
  padding:14px 15px;
  color:var(--dark);
  outline:0;
}

textarea{
  min-height:126px;
  resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--olive);
  box-shadow:0 0 0 4px rgba(185,125,123,.14);
}

input::placeholder,
textarea::placeholder{
  color:rgba(87,85,39,.50);
}

.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(87,85,39,.78);
  font-size:13px;
}

.consent input{
  width:auto;
  margin-top:3px;
}

.form-note{
  font-size:12px;
  color:rgba(87,85,39,.62);
  margin:12px 0 0;
}

.contact-maholy-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:28px;
  align-items:stretch;
}

.contact-maholy-intro{
  border-radius:34px;
  padding:38px;
  background:linear-gradient(135deg,var(--olive),var(--olive-2));
  color:#FFFDFB;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.contact-maholy-intro .kicker{
  background:rgba(255,253,251,.18);
  color:#FFFDFB;
  border-color:rgba(255,253,251,.24);
}

.contact-maholy-intro h2{
  color:#FFFDFB;
  font-size:clamp(42px,5vw,68px);
  line-height:.95;
  margin:18px 0;
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:-.06em;
}

.contact-maholy-intro p{
  color:rgba(255,253,251,.88);
  font-size:16px;
  line-height:1.7;
  max-width:520px;
}

.contact-maholy-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

.contact-maholy-actions .btn-primary{
  background:#FFFDFB;
  color:var(--dark);
  border-color:#FFFDFB;
}

.contact-maholy-actions .btn-primary:hover{
  background:var(--soft);
  color:var(--dark);
  border-color:var(--soft);
}

.contact-maholy-actions .btn-outline{
  background:transparent;
  color:#FFFDFB;
  border-color:rgba(255,253,251,.55);
}

.contact-maholy-actions .btn-outline:hover{
  background:rgba(255,253,251,.12);
  color:#FFFDFB;
}

.contact-mini-info{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:34px;
}

.contact-mini-info div{
  border:1px solid rgba(255,253,251,.18);
  background:rgba(255,253,251,.12);
  border-radius:18px;
  padding:14px;
}

.contact-mini-info span{
  display:block;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:rgba(255,253,251,.68);
  margin-bottom:6px;
}

.contact-mini-info strong{
  display:block;
  color:#FFFDFB;
  font-size:13px;
  line-height:1.25;
}

.contact-maholy-form{
  border-radius:34px;
  background:rgba(255,253,251,.74);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.contact-maholy-form .form-grid{
  gap:14px;
}

.contact-maholy-form textarea{
  min-height:104px;
}

.site-footer{
  background:var(--dark);
  color:rgba(255,253,251,.78);
  padding:28px 0;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:13px;
  color:rgba(255,253,251,.78);
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:90;
  width:58px;
  height:58px;
  border-radius:50%;
  background:var(--dark);
  color:#FFFDFB;
  display:grid;
  place-items:center;
  box-shadow:0 18px 36px rgba(87,85,39,.18);
  transition:.25s var(--ease);
}

.whatsapp-float:hover{
  background:var(--olive);
  transform:translateY(-3px);
}

.cart-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(87,85,39,.38);
  z-index:190;
}

.cart-overlay.is-open{
  display:block;
}

.cart-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(430px,92vw);
  background:#FFFDFB;
  z-index:200;
  transform:translateX(105%);
  transition:.3s var(--ease);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.cart-drawer.is-open{
  transform:translateX(0);
}

.cart-head,
.cart-foot{
  padding:20px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.cart-foot{
  border-top:1px solid var(--line);
  border-bottom:0;
  display:grid;
}

.cart-head h3{
  margin:0;
  font-size:22px;
  color:var(--dark);
}

.cart-items{
  padding:18px;
  overflow:auto;
  display:grid;
  gap:12px;
  flex:1;
}

.cart-item{
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  display:grid;
  gap:10px;
  background:rgba(255,253,251,.70);
}

.cart-item strong{
  color:var(--dark);
}

.cart-item span{
  color:var(--muted);
  font-size:13px;
}

.cart-item button{
  justify-self:start;
  border:0;
  background:transparent;
  color:var(--olive);
  font-weight:800;
  padding:0;
}

.total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:18px;
  color:var(--dark);
}

.payment-note{
  display:grid;
  gap:5px;
  padding:14px;
  border-radius:18px;
  background:var(--base);
  border:1px solid var(--line);
  font-size:13px;
  color:var(--dark);
}

.payment-note strong{
  color:var(--olive);
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .65s var(--ease),transform .65s var(--ease);
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:1020px){
  .nav-links{
    display:none;
  }

  .menu-toggle{
    display:grid;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .contact-maholy-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    min-height:590px;
  }

  .portrait-card{
    position:relative;
    width:100%;
    height:590px;
  }

  .floating-note{
    left:20px;
  }

  .visual-tag{
    right:18px;
  }

  .services-grid,
  .plans-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .faq-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .container{
    width:min(calc(100% - 28px),var(--max));
  }

  section{
    padding:64px 0;
  }

  .nav{
    min-height:74px;
  }

  .brand-copy span{
    display:none;
  }

  .nav-actions .btn-primary{
    display:none;
  }

  .custom-logo-wrap img,
  .custom-logo-link img{
    max-width:48px!important;
    max-height:48px!important;
  }

  .hero{
    padding:54px 0 60px;
  }

  .hero-grid{
    gap:28px;
  }

  .hero h1{
    font-size:clamp(46px,15vw,64px);
    line-height:.94;
  }

  .hero-copy,
  .section-text{
    font-size:15px;
  }

  .trust-row{
    grid-template-columns:1fr;
    margin-top:24px;
  }

  .hero-visual{
    min-height:520px;
  }

  .portrait-card{
    height:520px;
    border-radius:34px;
  }

  .floating-note{
    max-width:82%;
    bottom:24px;
    padding:18px;
  }

  .floating-note p{
    font-size:21px;
  }

  .visual-tag{
    width:112px;
    height:112px;
    font-size:14px;
  }

  .section-head{
    display:grid;
    gap:16px;
    margin-bottom:24px;
  }

  .about-photo{
    height:520px;
  }

  .about-card{
    padding:26px;
  }

  .services-grid,
  .plans-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .plan-card{
    min-height:auto;
  }

  .cta-band{
    display:grid;
    padding:28px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .footer-row{
    display:grid;
    text-align:center;
  }

  .whatsapp-float{
    width:54px;
    height:54px;
    right:16px;
    bottom:16px;
  }

  .mobile-panel{
    top:82px;
  }

  .contact-maholy-intro,
  .contact-maholy-form{
    border-radius:26px;
    padding:24px;
  }

  .contact-maholy-intro h2{
    font-size:clamp(36px,10vw,48px);
  }

  .contact-maholy-actions .btn{
    width:100%;
  }

  .contact-mini-info{
    grid-template-columns:1fr;
    gap:8px;
  }

  #planes .plans-grid{
    display:none!important;
    margin-top:18px!important;
  }

  #planes.planes-abiertos .plans-grid{
    display:grid!important;
  }

  #planes.planes-abiertos .plans-grid .plan-card{
    display:flex!important;
  }

  #planes .ver-mas-planes-wrap{
    display:flex!important;
    justify-content:center!important;
    width:100%!important;
    margin:18px 0 8px!important;
  }

  #planes .ver-mas-planes-btn{
    width:100%!important;
    max-width:340px!important;
    min-height:50px!important;
    border-radius:999px!important;
    border:0!important;
    background:var(--dark)!important;
    color:#FFFDFB!important;
    font-weight:800!important;
    font-size:15px!important;
    box-shadow:0 14px 30px rgba(87,85,39,.18)!important;
  }
}

@media(min-width:761px){
  .ver-mas-planes-wrap{
    display:none!important;
  }
}
/* =====================================================
   AJUSTE FINAL · BLANCO LIMPIO MAHOLY
   Pegar al final de assets/css/main.css
===================================================== */

:root{
  --base:#FFFFFF;
  --cream:#FFFFFF;
  --soft:#F8F4F2;
  --soft-2:#F1EBE6;

  --olive:#B97D7B;
  --olive-2:#928E5E;
  --dark:#575527;
  --ink:#3B2A2A;
  --muted:#746665;
  --white:#FFFFFF;

  --warm-fog:#DDD3C9;
  --berry:#ECC4C3;
  --blossom:#B97D7B;
  --meadow:#928E5E;
  --soldier:#575527;

  --line:rgba(87,85,39,.14);
  --shadow:0 24px 70px rgba(87,85,39,.08);
  --shadow-soft:0 18px 44px rgba(87,85,39,.05);
}

/* Fondo general más limpio */
body{
  background:#FFFFFF!important;
  color:var(--ink)!important;
}

.page-shell{
  background:
    radial-gradient(circle at 10% 8%, rgba(236,196,195,.18), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(221,211,201,.20), transparent 28%),
    #FFFFFF!important;
}

/* Header más blanco */
.site-header{
  background:rgba(255,255,255,.94)!important;
  border-bottom:1px solid rgba(87,85,39,.10)!important;
  box-shadow:0 10px 34px rgba(87,85,39,.04)!important;
}

/* Menú limpio */
.nav-links{
  background:rgba(255,255,255,.88)!important;
  border-color:rgba(87,85,39,.12)!important;
}

.icon-btn{
  background:rgba(255,255,255,.92)!important;
}

/* Hero más blanco */
.hero{
  background:
    radial-gradient(circle at 12% 12%, rgba(236,196,195,.20), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(221,211,201,.16), transparent 34%),
    linear-gradient(180deg,#FFFFFF 0%,#FFFFFF 62%,#FCFBF9 100%)!important;
}

/* Secciones claras */
.about{
  background:#FFFFFF!important;
}

.plans{
  background:
    linear-gradient(180deg,#FFFFFF 0%,#FCFBF9 100%)!important;
}

.contact{
  background:
    radial-gradient(circle at 12% 8%, rgba(236,196,195,.18), transparent 30%),
    linear-gradient(180deg,#FFFFFF 0%,#FCFBF9 100%)!important;
}

/* Cards más blancas */
.trust-card,
.service-card,
.step-card,
.plan-card,
.faq-item,
.contact-card,
.lead-form,
.about-card,
.floating-note,
.contact-line,
.cart-item{
  background:rgba(255,255,255,.86)!important;
  border-color:rgba(87,85,39,.13)!important;
}

/* Plan destacado conserva estética pero más limpio */
.plan-card.featured{
  background:#ECC4C3!important;
  border-color:rgba(185,125,123,.34)!important;
}

/* Chips suaves */
.eyebrow,
.kicker,
.plan-tag{
  background:rgba(236,196,195,.38)!important;
  color:#575527!important;
  border-color:rgba(185,125,123,.24)!important;
}

/* Formularios */
input,
select,
textarea{
  background:#FFFFFF!important;
  border-color:rgba(87,85,39,.16)!important;
}

/* Footer sigue fuerte */
.site-footer{
  background:#575527!important;
}

/* Móvil */
@media(max-width:760px){
  .mobile-panel{
    background:rgba(255,255,255,.98)!important;
  }
}