/* =========================
   ✅ HIGHLIGHT: THEME
   ========================= */
:root{
  --bg: #F7F5F2;
  --surface: #FFFFFF;
  --ink: #111111;
  --muted: #3A3A3A;
  --hairline: rgba(17,17,17,.12);
  --gold: #C9A24D;
  --shadow: 0 18px 40px rgba(0,0,0,.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
}

/* =========================
   ✅ HIGHLIGHT: BASE
   ========================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
.container{ max-width: var(--max); margin:0 auto; padding:0 18px; }
section{ padding:84px 0; }
@media (min-width:768px){ section{ padding:120px 0; } }

/* =========================
   ✅ HIGHLIGHT: HEADER / NAV
   ========================= */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(247,245,242,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--hairline);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:70px;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  white-space:nowrap;
}
.brand__mark{
  width:34px; height:34px;
  border-radius:10px;
  border:1px solid rgba(201,162,77,.85);
  display:grid;
  place-items:center;
  font-weight:600;
  letter-spacing:.02em;
  font-family:"Playfair Display", serif;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-family:"Playfair Display", serif; font-size:18px; letter-spacing:.01em; }
.brand__tag{ font-size:12px; letter-spacing:.18em; text-transform:uppercase; color: rgba(17,17,17,.65); margin-top:2px; }

.nav__toggle{
  appearance:none;
  border:1px solid rgba(17,17,17,.16);
  background: rgba(255,255,255,.35);
  border-radius:10px;
  padding:10px 12px;
  min-height:44px;
  min-width:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease, transform .18s ease;
}
.nav__toggle:hover{
  border-color: rgba(201,162,77,.7);
  background: rgba(255,255,255,.55);
  transform: translateY(-1px);
}
.nav__toggle:focus{
  outline: 2px solid rgba(201,162,77,.45);
  outline-offset: 2px;
}

.nav__links{
  position:absolute;
  left:0; right:0;
  top:70px;
  background: rgba(247,245,242,.96);
  border-bottom:1px solid var(--hairline);
  display:none;
}
.nav__links.is-open{ display:block; }
.nav__linksInner{
  padding-top:12px;
  padding-bottom:14px;
  display:grid;
  gap:10px;
}
.nav__link{
  text-decoration:none;
  padding:12px 10px;
  border-radius:10px;
  border:1px solid transparent;
  font-size:15px;
}
.nav__link:hover{
  border-color: rgba(201,162,77,.6);
  background: rgba(255,255,255,.55);
}

/* Desktop nav */
@media (min-width:900px){
  .nav__toggle{ display:none; }
  .nav__links{
    position:static;
    display:block !important;
    background:transparent;
    border:none;
  }
  .nav__linksInner{
    padding:0;
    display:flex;
    gap:8px;
    align-items:center;
    justify-content:flex-end;
  }
  .nav__link{ padding:10px 10px; font-size:14px; }
}

/* =========================
   ✅ HIGHLIGHT: TYPOGRAPHY
   ========================= */
.kicker{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 14px;
}
.kicker__text{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: rgba(17,17,17,.68);
}
.kicker__line{
  height:1px;
  flex:1;
  background: rgba(201,162,77,.55);
}

h1,h2,h3{
  font-family:"Playfair Display", serif;
  letter-spacing:.01em;
  margin:0 0 14px;
  line-height:1.12;
}
h1{ font-size:38px; max-width:18ch; }
h2{ font-size:30px; max-width:26ch; }
p{ margin:0 0 16px; color: var(--muted); max-width:70ch; }
@media (min-width:768px){
  h1{ font-size:58px; }
  h2{ font-size:40px; }
}

/* =========================
   ✅ HIGHLIGHT: BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:14px 18px;
  border-radius:10px;
  text-decoration:none;
  font-size:15px;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition: transform 180ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
  cursor:pointer;
  user-select:none;
}
.btn:focus{ outline:2px solid rgba(201,162,77,.45); outline-offset:2px; }

.btn--primary{
  border-color: var(--gold);
  background: transparent;
  color: var(--ink);
}
.btn--primary:hover{
  background: var(--gold);
  transform: translateY(-1px);
}
.btn--secondary{
  border-color: rgba(17,17,17,.18);
  background: rgba(255,255,255,.35);
}
.btn--secondary:hover{
  border-color: rgba(201,162,77,.8);
  background: rgba(255,255,255,.55);
  transform: translateY(-1px);
}

/* =========================
   ✅ HIGHLIGHT: HERO
   ========================= */
.hero{ padding-top:96px; }
.hero__wrap{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  align-items:start;
}
.hero__subtitle{ font-size:16px; line-height:1.75; max-width:48ch; }
.hero__cta{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin:18px 0 16px;
  max-width:420px;
}
.trust{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  font-size:14px;
  color: rgba(17,17,17,.78);
}
.trust li{ position:relative; padding-left:18px; }
.trust li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:8px; height:8px;
  border:1px solid rgba(201,162,77,.9);
  border-radius:999px;
}
.hero__media{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#ECE8E1;
  border:1px solid rgba(17,17,17,.06);
}
.hero__media img{
  width:100%;
  height:290px;
  object-fit:cover;
}
@media (min-width:768px){
  .hero{ padding-top:130px; }
  .hero__wrap{
    grid-template-columns: 1.1fr .9fr;
    gap:44px;
    align-items:center;
  }
  .hero__cta{
    grid-template-columns:auto auto;
    justify-content:start;
    max-width:none;
  }
  .trust{ grid-template-columns: repeat(3, max-content); gap:18px; }
  .hero__media img{ height:460px; }
}

/* =========================
   ✅ HIGHLIGHT: GRID + CARDS
   ========================= */
.grid{ display:grid; gap:16px; }
@media (min-width:768px){
  .grid--3{ grid-template-columns: repeat(3, 1fr); gap:18px; }
  .grid--2{ grid-template-columns: repeat(2, 1fr); gap:18px; }
}
.card{
  background: rgba(255,255,255,.60);
  border:1px solid rgba(17,17,17,.08);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.04);
}
.card h3{ font-size:20px; margin-bottom:10px; }
.card p{ margin:0; }
.card--link{ text-decoration:none; display:block; }
.card--link:hover{ border-color: rgba(201,162,77,.35); }

/* =========================
   ✅ HIGHLIGHT: CLEAN GALLERY GRID (FROM SCRATCH)
   ========================= */
.gallery-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}
@media (min-width:768px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#ECE8E1;
  border:1px solid rgba(17,17,17,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}
.gallery-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}
@media (min-width:768px){
  .gallery-card img{ height:360px; }
}
.gallery-overlay{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  padding:14px 16px;
  border-radius:16px;
  background: rgba(17,17,17,.55);
  color:#fff;
  backdrop-filter: blur(8px);
}
.gallery-overlay strong{
  display:block;
  font-size:16px;
  font-weight:600;
  line-height:1.15;
}
.gallery-overlay span{
  display:block;
  font-size:13px;
  opacity:.85;
  margin-top:4px;
}

/* =========================
   ✅ HIGHLIGHT: FORMS
   ========================= */
.surface{
  background: rgba(255,255,255,.55);
  border:1px solid rgba(17,17,17,.06);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.04);
}
.form{ display:grid; gap:12px; }
.field{ display:grid; gap:8px; }

label{
  font-size:13px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color: rgba(17,17,17,.65);
}
input, select, textarea{
  width:100%;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid rgba(17,17,17,.16);
  background: rgba(255,255,255,.75);
  font: inherit;
  color: var(--ink);
  min-height:48px;
}
textarea{ min-height:110px; resize:vertical; }
input:focus, select:focus, textarea:focus{
  outline:2px solid rgba(201,162,77,.35);
  outline-offset:2px;
  border-color: rgba(201,162,77,.65);
}
.form__row{ display:grid; gap:12px; }
@media (min-width:768px){
  .form__row{ grid-template-columns: 1fr 1fr; }
}

.addons{ display:grid; gap:10px; }
.addon{
  letter-spacing:0;
  text-transform:none;
  font-size:14px;
  color: rgba(17,17,17,.80);
  display:flex;
  align-items:center;
  gap:10px;
}
.addon input{ min-height:auto; width:auto; }

.estimate-box{
  margin-top:10px;
  border-radius:16px;
  padding:16px;
  border:1px solid rgba(17,17,17,.08);
  background: rgba(255,255,255,.55);
}
.estimate-left{ display:block; margin-bottom:12px; }
.estimate-kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(17,17,17,.60);
}
.estimate-total{
  font-family:"Playfair Display", serif;
  font-size:34px;
  line-height:1.1;
  margin-top:6px;
}
.estimate-range{
  color: rgba(17,17,17,.65);
  font-size:14px;
  margin-top:6px;
}
.estimate-note{ margin-top:10px; }

/* =========================
   ✅ HIGHLIGHT: REVIEWS
   ========================= */
.quote{ font-size:15px; line-height:1.7; color: rgba(17,17,17,.80); margin:0 0 10px; }
.who{ font-size:13px; color: rgba(17,17,17,.65); letter-spacing:.06em; text-transform:uppercase; }

/* =========================
   ✅ HIGHLIGHT: FAQ
   ========================= */
.faq{ display:grid; gap:12px; }
details{
  background: rgba(255,255,255,.60);
  border:1px solid rgba(17,17,17,.08);
  border-radius: var(--radius);
  padding:14px 16px;
}
details summary{
  cursor:pointer;
  list-style:none;
  font-weight:600;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
details summary::-webkit-details-marker{ display:none; }
.chev{
  width:10px; height:10px;
  border-right:2px solid rgba(17,17,17,.55);
  border-bottom:2px solid rgba(17,17,17,.55);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-right:2px;
  flex:0 0 auto;
}
details[open] .chev{ transform: rotate(225deg); }
details p{ margin:12px 0 0; }

/* =========================
   ✅ HIGHLIGHT: CONTACT + FOOTER
   ========================= */
.miniTitle{ margin:0 0 10px; font-size:20px; font-family:"Playfair Display", serif; }
.contactText{ margin:0 0 10px; }

footer{
  padding:60px 0;
  border-top:1px solid var(--hairline);
  background: rgba(17,17,17,.92);
  color: rgba(255,255,255,.88);
}
.footer__grid{ display:grid; gap:18px; }
@media (min-width:768px){
  .footer__grid{ grid-template-columns: 1.2fr .8fr; align-items:start; }
}
.footerBrand{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.footerMark{ border-color: rgba(201,162,77,.8); color:#fff; }
.footerName{ font-family:"Playfair Display", serif; font-size:18px; color:#fff; }
.footerTag{ font-size:12px; letter-spacing:.18em; text-transform:uppercase; color: rgba(255,255,255,.65); margin-top:2px; }
.footerDesc{ color: rgba(255,255,255,.70); }
.footerFine{ font-size:13px; color: rgba(255,255,255,.60); margin-top:10px; }

.footer__links{ display:grid; gap:10px; }
.footer__links a{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  padding:6px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.footer__links a:hover{
  color:#fff;
  border-bottom-color: rgba(201,162,77,.7);
}

/* =========================
   ✅ HIGHLIGHT: UTILS
   ========================= */
.spacer{ height:10px; }
.note{ font-size:14px; color: rgba(17,17,17,.70); margin-top:6px; }
/* =========================
   ✅ PRICE HINTS SECTION
   ========================= */
.price-hints{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px){
  .price-hints{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.price-cardHint{
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}

.price-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.price-name{
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.15;
}

.price-badge{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,77,.35);
  background: rgba(201,162,77,.10);
  color: rgba(17,17,17,.80);
  white-space: nowrap;
}

.price-line{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(17,17,17,.10);
}

.price-label{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(17,17,17,.60);
}

.price-value{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.1;
}

.price-sub{
  margin-top: 10px;
  font-size: 14px;
  color: rgba(17,17,17,.70);
}

.price-disclaimer{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(17,17,17,.62);
  max-width: 80ch;
}/* Make pricing cards clickable without breaking layout */
.price-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.price-link:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.price-link:focus{
  outline: 2px solid rgba(201,162,77,.45);
  outline-offset: 4px;
  border-radius: 18px;
}