/* =========================================================
   SOPHIA & DOMINIK — refined wedding design
   Palette:
   Milk        #FBF7F4
   Blush Oat   #E8D8CE
   Dusty Rose  #B98F88
   Cocoa Taupe #7A6258
   Espresso    #3B2F2A
   ========================================================= */

:root{
  --bg:#FBF7F4;
  --surface:#FFFCFA;
  --surface-soft:#F6EDE8;

  --ink:#3B2F2A;
  --muted:#7A6258;
  --rose:#B98F88;
  --rose-dark:#9E7069;
  --taupe:#7A6258;
  --blush:#E8D8CE;
  --milk:#FBF7F4;
  --espresso:#3B2F2A;

  --line:rgba(122,98,88,.20);
  --line-soft:rgba(185,143,136,.18);

  --shadow-sm:0 8px 25px rgba(59,47,42,.06);
  --shadow:0 18px 55px rgba(59,47,42,.10);
  --shadow-lg:0 28px 80px rgba(59,47,42,.14);

  --radius-sm:12px;
  --radius:20px;
  --radius-lg:30px;
  --max:1180px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

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

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

button,
input,
textarea{
  font:inherit;
}

::selection{
  background:var(--blush);
  color:var(--espresso);
}

.container{
  width:min(calc(100% - 40px),var(--max));
  margin:auto;
}

/* ---------- Typography ---------- */

h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  line-height:1.1;
  letter-spacing:-.025em;
}

h1{
  font-size:clamp(52px,6vw,86px);
  margin:18px 0 8px;
}

h2{
  font-size:clamp(40px,4.5vw,60px);
  margin:12px 0 16px;
}

h3{
  font-size:28px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:10px;
  font-weight:700;
  color:var(--rose-dark);
}

.eyebrow:before{
  content:"";
  width:28px;
  height:1px;
  background:var(--rose);
}

.script{
  font-family:"Brush Script MT","Segoe Script",cursive;
  color:var(--rose);
  font-size:clamp(35px,4vw,58px);
  line-height:1;
  font-weight:400;
}

.lead{
  font-size:17px;
  color:var(--muted);
  max-width:560px;
  margin:26px 0 34px;
}

/* ---------- Header ---------- */

.site-header{
  position:fixed;
  z-index:50;
  top:0;
  left:0;
  right:0;
  background:rgba(251,247,244,.88);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(232,216,206,.72);
}

.nav{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  font-family:Georgia,serif;
  letter-spacing:.01em;
  font-size:20px;
  line-height:1;
}

.logo-mark{
  color:var(--espresso);
  flex-shrink:0;
}

.logo-text{
  display:block;
}

.logo small{
  display:block;
  font-family:"Brush Script MT","Segoe Script",cursive;
  font-size:14px;
  letter-spacing:0;
  color:var(--rose);
  margin-top:5px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.nav-links a{
  position:relative;
  color:var(--ink);
  transition:color .2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--rose-dark);
}

.nav-links a.active:after{
  content:"";
  position:absolute;
  height:1px;
  background:var(--rose);
  left:0;
  right:0;
  bottom:-9px;
}

.menu-toggle{
  display:none;
  border:0;
  background:none;
  padding:6px;
  color:var(--ink);
  cursor:pointer;
}

.menu-toggle svg{
  width:24px;
  height:24px;
}

/* ---------- Buttons ---------- */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:13px 21px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.btn-primary{
  background:var(--rose);
  color:#fff;
  box-shadow:0 10px 26px rgba(185,143,136,.28);
}

.btn-primary:hover{
  background:var(--rose-dark);
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(158,112,105,.30);
}

.btn-light{
  background:transparent;
  border-color:var(--rose);
  color:var(--espresso);
}

.btn-light:hover{
  background:var(--blush);
  transform:translateY(-2px);
}

.btn-whatsapp{
  background:#25D366;
  color:#fff;
  box-shadow:0 8px 22px rgba(37,211,102,.22);
}

.btn-whatsapp:hover{
  background:#1fb959;
}

.btn-whatsapp svg{
  width:18px;
  height:18px;
}

/* ---------- WhatsApp ---------- */

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:70;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(37,211,102,.30);
  transition:transform .25s ease;
}

.whatsapp-float:hover{
  transform:translateY(-3px) scale(1.05);
}

.whatsapp-float svg{
  width:28px;
  height:28px;
}

/* ---------- Hero ---------- */

.hero{
  min-height:760px;
  padding-top:82px;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  align-items:stretch;
  background:var(--milk);
}

.hero-copy{
  position:relative;
  display:flex;
  align-items:center;
  padding:90px 50px 100px max(20px,calc((100vw - var(--max))/2));
  overflow:hidden;
}

.hero-copy:after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(232,216,206,.62),transparent 70%);
  right:-250px;
  bottom:-220px;
  pointer-events:none;
}

.hero-copy > div{
  position:relative;
  z-index:1;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-image{
  min-height:680px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--blush),var(--taupe));
}

.hero-image:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(59,47,42,.10),transparent 35%,rgba(59,47,42,.08));
  pointer-events:none;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.image-placeholder{
  height:100%;
  display:grid;
  place-items:center;
  text-align:center;
  padding:40px;
  color:#fff;
  background:linear-gradient(135deg,var(--rose),var(--taupe));
}

.image-placeholder strong{
  display:block;
  font-family:Georgia,serif;
  font-size:34px;
  margin-bottom:8px;
}

/* ---------- Trust bar ---------- */

.trust{
  position:relative;
  margin:-56px auto 0;
  z-index:3;
}

.trust-grid{
  background:rgba(255,252,250,.94);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:8px;
  backdrop-filter:blur(12px);
}

.trust-item{
  padding:28px 24px;
  text-align:center;
  border-right:1px solid var(--line);
}

.trust-item:last-child{
  border:0;
}

.trust-item .icon{
  width:38px;
  height:38px;
  margin:0 auto;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--blush);
  color:var(--rose-dark);
}

.trust-item .icon svg,
.trust-item .icon i{
  width:20px;
  height:20px;
}

.trust-item strong{
  display:block;
  font-size:11px;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin:11px 0 5px;
}

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

/* ---------- Sections ---------- */

.section{
  padding:120px 0;
}

.section:nth-of-type(even){
  background:#FFF9F6;
}

.section-head{
  max-width:670px;
  margin-bottom:50px;
}

.section-head h2{
  margin-top:14px;
}

.section-head p{
  color:var(--muted);
  font-size:17px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:76px;
  align-items:center;
}

.photo-card{
  min-height:500px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:linear-gradient(135deg,var(--blush),var(--taupe));
  box-shadow:var(--shadow);
}

.photo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.text p{
  color:var(--muted);
}

.text p:last-of-type{
  margin-bottom:28px;
}

/* ---------- Cards ---------- */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease,box-shadow .25s ease;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.card h3{
  font-size:28px;
  margin:14px 0 8px;
}

.card p{
  color:var(--muted);
  margin:0;
}

/* ---------- Service tiles ---------- */

.service{
  min-height:280px;
  position:relative;
  overflow:hidden;
  color:#fff;
  padding:30px;
  display:flex;
  align-items:flex-end;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}

.service h3{
  font-size:32px;
  margin:0 0 5px;
}

.service p{
  margin:0;
  color:#F8EFEB;
}

.service .fake-image{
  position:absolute;
  inset:0;
  opacity:.68;
  background:
    radial-gradient(circle at 25% 20%,rgba(232,216,206,.75),transparent 30%),
    linear-gradient(135deg,var(--taupe),var(--espresso));
}

.service:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 20%,rgba(59,47,42,.82));
}

.service-content{
  position:relative;
  z-index:1;
}

/* ---------- Quote ---------- */

.quote{
  padding:45px 50px;
  border:1px solid rgba(255,255,255,.12);
  border-left:0;
  background:var(--rose);
  color:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  text-align:center;
}

.quote p{
  font-family:Georgia,serif;
  font-size:clamp(21px,2.2vw,29px);
  line-height:1.45;
  margin:0 auto 18px;
  max-width:850px;
}

.quote span{
  color:#F9EDE9;
  font-size:13px;
  letter-spacing:.05em;
}

/* ---------- CTA ---------- */

.cta{
  position:relative;
  overflow:hidden;
  background:var(--espresso);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-shadow:var(--shadow-lg);
}

.cta:after{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  border-radius:50%;
  right:-220px;
  top:-250px;
  background:radial-gradient(circle,rgba(185,143,136,.35),transparent 68%);
}

.cta > *{
  position:relative;
  z-index:1;
}

.cta h2{
  font-size:clamp(38px,4vw,52px);
  margin:0 0 12px;
}

.cta p{
  color:#E8D8CE;
  margin:0;
}

/* ---------- Footer ---------- */

.site-footer{
  margin-top:100px;
  padding:60px 0 30px;
  background:var(--espresso);
  color:#E8D8CE;
}

.site-footer .logo-mark{
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:45px;
}

.footer-title{
  font-family:Georgia,serif;
  font-size:21px;
  color:#fff;
}

.footer-links{
  display:grid;
  gap:8px;
  color:#CDBBB3;
  font-size:13px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(232,216,206,.18);
  margin-top:45px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#B8A49B;
  font-size:12px;
}

/* ---------- Inner page hero ---------- */

.page-hero{
  padding:175px 0 95px;
  background:
    radial-gradient(circle at 85% 25%,rgba(185,143,136,.20),transparent 25%),
    linear-gradient(135deg,var(--blush),var(--milk));
}

.page-hero h1{
  font-size:clamp(48px,6vw,76px);
  margin:15px 0;
}

.page-hero p{
  max-width:720px;
  color:var(--muted);
  font-size:18px;
}

/* ---------- Gallery ---------- */

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.gallery .tile{
  height:320px;
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(135deg,var(--blush),var(--taupe));
}

.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.gallery .tile:hover img{
  transform:scale(1.04);
}

/* ---------- Form ---------- */

.form{
  display:grid;
  gap:16px;
}

.form label{
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em;
}

.form input,
.form textarea{
  width:100%;
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  background:#FFFCFA;
  color:var(--ink);
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
}

.form input:focus,
.form textarea:focus{
  border-color:var(--rose);
  box-shadow:0 0 0 4px rgba(185,143,136,.12);
}

.form textarea{
  min-height:150px;
  resize:vertical;
}

.notice{
  padding:18px 20px;
  border-radius:var(--radius-sm);
  background:var(--surface-soft);
  color:var(--taupe);
  font-size:14px;
  border:1px solid var(--line-soft);
}

/* ---------- Responsive ---------- */

@media(max-width:1000px){
  .nav-links{
    gap:20px;
    font-size:11px;
  }

  .footer-grid{
    grid-template-columns:1.4fr 1fr 1fr;
  }
}

@media(max-width:900px){
  .nav-links{
    display:none;
    position:absolute;
    top:82px;
    left:0;
    right:0;
    background:rgba(251,247,244,.98);
    padding:22px 20px 26px;
    flex-direction:column;
    align-items:flex-start;
    border-bottom:1px solid var(--line);
    box-shadow:0 15px 30px rgba(59,47,42,.08);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a.active:after{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav>.btn{
    display:none;
  }

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

  .hero-copy{
    padding:90px 20px 60px;
  }

  .hero-image{
    min-height:540px;
  }

  .trust{
    margin:0 20px;
  }

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

  .trust-item:nth-child(2){
    border-right:0;
  }

  .trust-item:nth-child(-n+2){
    border-bottom:1px solid var(--line);
  }

  .split{
    grid-template-columns:1fr;
    gap:40px;
  }

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

  .cta{
    padding:50px 35px;
    display:block;
  }

  .cta .btn{
    margin-top:25px;
  }

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

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

  .nav{
    height:74px;
  }

  .nav-links{
    top:74px;
  }

  .hero{
    padding-top:74px;
  }

  .hero-copy{
    padding:75px 14px 50px;
  }

  h1{
    font-size:50px;
  }

  .script{
    font-size:38px;
  }

  .lead{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-image{
    min-height:430px;
  }

  .trust{
    margin:0 14px;
  }

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

  .trust-item,
  .trust-item:nth-child(2){
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .trust-item:last-child{
    border-bottom:0;
  }

  .section{
    padding:80px 0;
  }

  .photo-card{
    min-height:360px;
  }

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

  .gallery .tile{
    height:300px;
  }

  .quote{
    padding:35px 25px;
  }

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

  .footer-bottom{
    display:block;
  }

  .footer-bottom span{
    display:block;
    margin-top:8px;
  }

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

/* ---------- Reduced motion ---------- */

@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *:before,
  *:after{
    transition:none!important;
    animation:none!important;
  }
}
