:root{
  --bg: #f6f2ec;
  --panel: rgba(255,255,255,.72);
  --panel2: rgba(255,255,255,.86);
  --ink: #161514;
  --muted: rgba(22,21,20,.72);
  --line: rgba(22,21,20,.12);
  --gold: #b69563;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --shadow2: 0 10px 28px rgba(0,0,0,.10);
  --radius: 22px;
}

*{ 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: radial-gradient(1200px 600px at 20% 0%, rgba(182,149,99,.12), transparent 55%),
              radial-gradient(1000px 500px at 90% 30%, rgba(0,0,0,.06), transparent 60%),
              var(--bg);
  line-height:1.55;
}

h1,h2,h3{ font-family: Fraunces, Georgia, serif; letter-spacing:.2px; }
h1{ font-weight:600; font-size: clamp(2.0rem, 4vw, 3.1rem); margin:.2rem 0 .7rem; }
h2{ font-weight:600; font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin:0 0 .7rem; }
p{ margin:.4rem 0 1rem; }
a{ color:inherit; text-decoration:none; }
strong{ font-weight:600; }

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

.muted{ color:var(--muted); }
.tiny{ font-size:.86rem; }
.hidden{ display:none; }

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(10px);
  background: var(--bg);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand-mark{
  width:42px; height:42px; border-radius: 14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.65), transparent 60%),
    linear-gradient(145deg, rgba(182,149,99,.95), rgba(22,21,20,.95));
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-family: Fraunces, Georgia, serif; font-weight:600; }
.brand-sub{ font-size:.82rem; color:var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  padding:10px 10px;
  border-radius: 999px;
  color: rgba(22,21,20,.86);
}
.nav a:hover{ background: rgba(182,149,99,.12); }

.pill{
  border:1px solid rgba(182,149,99,.55);
  background: rgba(182,149,99,.10);
  padding:10px 14px !important;
}

.nav-toggle{
  display:none; /* shown on mobile via media query */
  width:44px; height:44px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.nav-toggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background: rgba(22,21,20,.75);
  border-radius: 3px;
}

.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-bg{
  position:absolute; inset:0;
  background-image:
    linear-gradient(90deg, rgba(246,242,236,.92) 0%, rgba(246,242,236,.82) 35%, rgba(246,242,236,.20) 70%, rgba(246,242,236,.05) 100%),
    radial-gradient(900px 500px at 20% 20%, rgba(182,149,99,.16), transparent 55%),
    url("/assets/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.03);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(246,242,236,.0), rgba(246,242,236,.45));
  pointer-events:none;
}
.hero-inner{ position:relative; padding: 64px 0; }
.hero-card{
  width:min(640px, 100%);
  background: var(--panel);
  border:1px solid rgba(255,255,255,.45);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.85rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(22,21,20,.72);
}
.kicker::before{
  content:"";
  width:10px; height:10px; border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(182,149,99,.18);
}
.lead{ font-size:1.04rem; color: rgba(22,21,20,.82); }

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 10px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid rgba(22,21,20,.14);
  background: rgba(22,21,20,.92);
  color:white;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn:hover{ transform: translateY(-1px); }
.btn.ghost{
  background: rgba(255,255,255,.65);
  color: var(--ink);
  box-shadow: none;
}
.btn.small{ padding:10px 14px; font-size:.95rem; }

.trust{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 14px; }
.trust-item{ font-size:.92rem; color: rgba(22,21,20,.72); display:flex; align-items:center; gap:10px; }
.dot{ width:8px; height:8px; border-radius:999px; background: rgba(182,149,99,.95); box-shadow:0 0 0 4px rgba(182,149,99,.18); }

.section{ padding: 72px 0; }
.section.soft{
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.12));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom: 18px; }
.section-head p{ margin:0; }

.grid{ display:grid; gap: 16px; }
.cards{ grid-template-columns: repeat(4, 1fr); }
.card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--panel2);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, background .2s ease;
}
.card:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); }
.card-kicker{ font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; color: rgba(22,21,20,.62); }
.card-title{ font-family: Fraunces, Georgia, serif; font-weight:600; font-size:1.25rem; margin-top: 6px; }
.card-note{ margin-top: 10px; color: rgba(22,21,20,.70); }
.card.mini{ padding:16px 16px; }
.contact-cards{ display:grid; grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }

.two-col{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 26px;
  align-items:start;
}

.ticks{ list-style:none; padding:0; margin: 16px 0 0; }
.ticks li{
  position:relative; padding-left: 26px; margin: 10px 0;
  color: rgba(22,21,20,.78);
}
.ticks li::before{
  content:"";
  position:absolute; left:0; top:.5em;
  width:14px; height:14px; border-radius: 4px;
  background: rgba(182,149,99,.20);
  border:1px solid rgba(182,149,99,.55);
}
.ticks li::after{
  content:"";
  position:absolute; left:4px; top:.62em;
  width:6px; height:10px;
  border-right:2px solid rgba(22,21,20,.78);
  border-bottom:2px solid rgba(22,21,20,.78);
  transform: rotate(40deg);
}

.text-link{ display:inline-flex; margin-top: 14px; color: rgba(22,21,20,.82); border-bottom: 1px solid rgba(182,149,99,.65); padding-bottom:2px; }

.callout{
  border-radius: var(--radius);
  border:1px solid rgba(182,149,99,.35);
  background: rgba(182,149,99,.12);
  padding: 20px 18px;
}
.callout-title{ font-family: Fraunces, Georgia, serif; font-weight:600; font-size:1.2rem; margin-bottom:8px; }
.callout-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }

.form-card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--panel2);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
}
.field{ margin: 12px 0; }
label{ display:block; font-size:.9rem; color: rgba(22,21,20,.75); margin-bottom: 6px; }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(22,21,20,.16);
  background: rgba(255,255,255,.80);
  font: inherit;
}
textarea{ resize: vertical; min-height: 120px; }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.page-hero{
  padding: 54px 0 18px;
}
.page-hero-inner{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  padding: 22px 20px;
  box-shadow: var(--shadow2);
}
.pill-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 8px; }
.pill-row .pill{ display:inline-flex; }

.accordions{ display:grid; gap: 10px; }
.accordion{
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  overflow:hidden;
}
.accordion summary{
  cursor:pointer;
  list-style:none;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-family: Fraunces, Georgia, serif;
  font-weight:600;
}
.accordion summary::-webkit-details-marker{ display:none; }
.chev{
  width:10px; height:10px;
  border-right:2px solid rgba(22,21,20,.72);
  border-bottom:2px solid rgba(22,21,20,.72);
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-left:auto;
}
details[open] .chev{ transform: rotate(225deg); }

.price-table{ padding: 0 14px 14px; }
table{ width:100%; border-collapse: collapse; }
td{
  padding: 10px 6px;
  border-top: 1px solid rgba(22,21,20,.10);
  vertical-align:top;
}
td.price{ text-align:right; white-space:nowrap; font-weight:600; }

.note{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(22,21,20,.05);
  border:1px solid rgba(22,21,20,.08);
}

.reviews-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.review-card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--panel2);
  padding: 18px 18px;
  box-shadow: var(--shadow2);
}
.review-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.review-name{ font-family: Fraunces, Georgia, serif; font-weight:600; }
.review-stars{
  letter-spacing: .12em;
  color: rgba(182,149,99,.95);
  font-size: .95rem;
}

.site-footer{
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.45);
  padding: 38px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.footer-title{ font-family: Fraunces, Georgia, serif; font-weight:600; margin-bottom: 10px; }
.footer-brand{ font-family: Fraunces, Georgia, serif; font-weight:600; font-size:1.2rem; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin: 8px 0; }
.footer-links a{ color: rgba(22,21,20,.80); }
.footer-links a:hover{ color: rgba(22,21,20,.95); text-decoration: underline; text-underline-offset:3px; }
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top:1px solid rgba(22,21,20,.08);
  color: rgba(22,21,20,.72);
  font-size:.9rem;
}

@media (max-width: 920px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .two-col{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .nav-toggle{ display:inline-flex; }
  .nav{
    position:absolute;
    right: 20px;
    top: 68px;
    flex-direction:column;
    align-items:stretch;
    width: min(320px, calc(100% - 40px));
    padding: 10px;
    border-radius: 18px;
    border:1px solid var(--line);
    background: rgba(246,242,236,.92);
    box-shadow: var(--shadow2);
    display:none;
  }
  .nav a{ padding: 12px 12px; }
  .nav.open{ display:flex; }
}

@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
  .hero{ min-height: 76vh; }
  .hero-card{ padding: 22px 18px; }
  .grid-2{ grid-template-columns: 1fr; }
}

/* Before & After gallery */
.gallery{
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-card{
  border:1px solid var(--line);
  background: var(--panel2);
  border-radius: var(--radius);
  overflow:hidden;
  padding:0;
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.gallery-card img{
  width:100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:60;
  padding: 24px;
}
.lightbox.open{ display:flex; }
.lightbox-inner{
  width:min(980px, 100%);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.lightbox-img{
  width:100%;
  height:auto;
  display:block;
  background: #000;
}
.lightbox-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 10px 12px;
  background: rgba(0,0,0,.40);
  color: rgba(255,255,255,.92);
  font-size:.95rem;
}
.lightbox-close{
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 8px 12px;
  cursor:pointer;
}

@media (max-width: 980px){
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .gallery-card img{ height: 300px; }
}
@media (max-width: 560px){
  .gallery{ grid-template-columns: 1fr; }
  .gallery-card img{ height: 340px; }
}



/* --- Mobile menu button styling (visibility handled by media query) --- */
.nav-toggle{
  background: transparent;
  border: 1px solid rgba(182,149,99,.55);
  border-radius: 12px;
  width: 44px;
  height: 38px;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.nav-toggle span{
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 2px;
  background: rgba(22,21,20,.82);
}
.nav-toggle:hover{ background: rgba(182,149,99,.10); }
.nav-toggle:active{ transform: translateY(1px); }
/* --- end --- */

/* Home clean hero variant */
.hero-card.slim{
  padding: 20px 22px;
  max-width: 560px;
}
.hero-card.slim h1{
  margin: 10px 0 16px 0;
  font-size: clamp(2rem, 5vw, 2.6rem);
}
.hero-card.slim .cta-row{ flex-wrap: wrap; }


/* Clean top cover photo */
.cover-photo{
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.cover-photo img{
  width: min(100%, 1137px);
  height: clamp(180px, 30vh, 300px);
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

/* Brand mark image (top left) */
.brand-mark-img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: .9;
}

/* (removed duplicate nav-toggle override that forced the hamburger to show on desktop) */

/* About page: tighten top spacing */
.page-about .section:first-of-type{
  padding-top: 28px;
}



/* --- Mobile spacing tweaks --- */
.cover-photo{ padding: 0; margin: 0; }
@media (max-width: 680px){
  /* On small screens, keep it crisp and not oversized */
  .cover-photo img{
    width: 100%;
    max-width: 680px;
    height: clamp(200px, 38vh, 320px);
    object-fit: cover;
  }
}
/* Reduce global section padding slightly on mobile */
@media (max-width: 680px){
  .section{ padding: 34px 0 !important; }
  .section-head{ margin-bottom: 18px !important; }
}
/* --- end --- */



/* --- FORM SELECT COLOUR FIX --- */
select {
  color: var(--ink) !important;
  background-color: #fff !important;
  -webkit-appearance: none;
  appearance: none;
}

select:invalid {
  color: #6b6b6b !important; /* muted placeholder tone */
}
/* --- END FIX --- */

/* About page image card */
.about-card-wrap{margin-top:12px}
.about-card{
  width:100%;
  height:auto;
  display:block;
  border-radius:22px;
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.06);
}

/* Desktop hero resize only */
@media (min-width: 1024px){
  .hero{
    height: 70vh !important;
  }

  .hero img,
  .hero-image{
    max-height: 650px;
    object-fit: contain;
  }
}


@media (max-width: 768px) {
  .hero {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}



/* --- Mobile: make dividers hug the hero image (no dead space) --- */
@media (max-width: 680px){
  /* Remove the header divider so the top line can sit directly on the image */
  .site-header{ border-bottom: 0 !important; }

  /* Remove section border on wrapper and put it on the image itself */
  .cover-photo{
    border-bottom: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important; /* prevents any inline image gaps */
  }
  .cover-photo img{
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
    vertical-align: middle !important;
  }

  /* Ensure the next section starts flush under the divider line */
  .cover-photo + .section{ padding-top: 34px !important; }
}
/* --- End mobile hero divider fix --- */
