:root{
  --bg:#f5f2ee;
  --bg2:#efeae4;
  --card:#fff;
  --text:#2c2825;
  --muted:#6d5f62;
  --line:rgba(176,138,143,.22);
  --pink:#d38d91;
  --pink-light:#e8c8c9;
  --pink-muted:#b08a8f;
  --pink-soft:rgba(211,141,145,.15);
  --shadow: 0 18px 60px rgba(176,138,143,.12);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(232,200,201,.4), transparent 60%),
    radial-gradient(700px 450px at 85% 10%, rgba(211,141,145,.2), transparent 55%),
    linear-gradient(180deg, var(--bg), #ebe6e0 70%);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}
.container{width:min(var(--max), calc(100% - 48px)); margin-inline:auto}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.skip-link{
  position:absolute; left:-9999px; top:12px;
  background:var(--text); color:#f5f2ee; padding:10px 12px; border-radius:12px;
}
.skip-link:focus{left:12px; z-index:9999}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(245,242,238,.88);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:12px; text-decoration:none; align-items:center; min-width:0}
.brand-mark{
  width:42px; height:42px; border-radius:14px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  display:grid; place-items:center; font-weight:800; color:#2c2825;
  box-shadow: 0 10px 28px rgba(211,141,145,.2);
}
.brand-logo{
  width:42px;
  height:42px;
  border-radius:14px;
  object-fit:cover;
  display:block;
}
.brand-text{display:flex; flex-direction:column; min-width:0}
.brand-name{
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:.2px;
  font-size:16px;
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-quote{
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.hamburger{
  border:1px solid var(--line);
  background: rgba(255,255,255,.6);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
  box-shadow: 0 4px 16px rgba(176,138,143,.1);
}
.hamburger:focus-visible{outline:3px solid var(--pink); outline-offset:2px}
.hamburger-lines{display:grid; gap:5px}
.hamburger-lines span{
  width:22px; height:2px; background: var(--text);
  display:block; border-radius:10px;
}

/* Menu */
.menu{
  display:none;
  border-top:1px solid var(--line);
  background: rgba(245,242,238,.98);
}
.menu.open{display:block}
.menu-inner{
  display:grid;
  gap:10px;
  padding:14px 0 18px;
}
.menu-link{
  text-decoration:none;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid transparent;
  background: rgba(255,255,255,.5);
}
.menu-link:hover{border-color: var(--pink)}
.menu-cta{
  text-decoration:none;
  padding:12px 12px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--pink), var(--pink-muted));
  color:#fff;
  font-weight:700;
  text-align:center;
}

.overlay{
  position:fixed; inset:0; z-index:40;
  background: rgba(44,40,37,.4);
  backdrop-filter: blur(2px);
}

/* Sections */
.main{padding-bottom: 40px}
.section{padding: 74px 0}
.section.alt{background: rgba(255,255,255,.6); border-block:1px solid var(--line)}
.section-head{display:flex; flex-direction:column; gap:8px; margin-bottom:22px}
h1,h2,h3{margin:0}
h1{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing:.2px;
  line-height:1.05;
}
h2{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing:.2px;
}
h3{font-size:18px}
.muted{color:var(--muted)}
.lead{font-size:18px; color: var(--text)}
.eyebrow{
  margin:0 0 10px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid var(--pink-muted);
  background: var(--pink-soft);
  border-radius:999px;
  color: var(--pink-muted);
  font-weight:600;
  font-size:13px;
}
.subtext{margin: 12px 0 18px; color: var(--muted); font-weight:500}

/* Hero */
.hero{padding-top: 86px}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:26px; align-items:stretch}
.hero-copy{max-width: 680px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.trust-row{
  list-style:none;
  padding:0;
  margin: 20px 0 0;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.trust-row li{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--text);
  font-size:13px;
}

.hero-card{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background:
    radial-gradient(550px 260px at 10% 0%, var(--pink-soft), transparent 62%),
    linear-gradient(180deg, var(--card), var(--bg2));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-inner{padding:22px}
.card-title{font-family:"Playfair Display", serif; font-size:20px; margin-bottom:12px}
.checklist{margin:0; padding-left: 18px; color: var(--text)}
.checklist li{margin: 10px 0}
.owner-photo-frame{
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  overflow:hidden;
  margin-bottom: 14px;
}
.owner-photo{
  width:100%;
  height: auto;
  display:block;
}
.owner-photo-fallback{
  display:none;
  aspect-ratio: 4 / 3;
  height: auto;
  padding: 16px;
  place-items:center;
  text-align:center;
  color: var(--muted);
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  font-weight: 700;
}
.owner-photo-fallback span{
  display:block;
  margin-top: 6px;
  color: var(--pink-muted);
  font-weight: 800;
}
.fineprint{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  border-top:1px solid var(--line);
  padding-top: 12px;
}

/* Split panels */
.split{display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:start}
.panel{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 18px;
}
.panel-title{margin-bottom: 10px}
.pill-grid{display:flex; flex-wrap:wrap; gap:10px}
.pill{
  padding: 8px 10px;
  border-radius:999px;
  border:1px solid var(--pink-muted);
  background: var(--pink-soft);
  color: var(--pink-muted);
  font-size: 13px;
}
.bullets{margin: 0; padding-left: 18px}
.bullets li{margin: 10px 0}

/* Cards */
.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--card);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{margin-bottom: 8px}

.callout{
  margin-top: 16px;
  border: 1px solid var(--pink-muted);
  background: var(--pink-soft);
  border-radius: var(--radius2);
  padding: 16px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.callout p{margin:0; color: var(--text)}

/* Gallery */
.gallery{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.shot{
  margin:0;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  background: var(--card);
  box-shadow: var(--shadow);
}
.shot-ph{
  aspect-ratio: 4 / 3;
  display:grid;
  place-items:center;
  font-weight:700;
  color: var(--muted);
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:13px;
}
.shot-img{
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display:block;
}
.shot figcaption{
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  border-top:1px solid var(--line);
}

/* Form */
.form-wrap{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 18px;
}
.form{display:grid; gap:14px}
.field-grid{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px}
.field{display:grid; gap:7px}
.field span{color: var(--text); font-weight:600; font-size: 13px}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  padding: 12px 12px;
  font: inherit;
  outline: none;
}
textarea{resize: vertical; min-height: 120px}
input:focus, select:focus, textarea:focus{
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.form-actions{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.form-hint{margin:0; color: var(--muted); font-size: 13px; max-width: 720px}
.form-status{
  min-height: 20px;
  color: var(--pink-muted);
  font-size: 13px;
}
.form-status.error{color: #c45c5c}

/* Buttons */
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 700;
  letter-spacing:.2px;
  cursor:pointer;
}
.button.primary{
  background: linear-gradient(135deg, var(--pink), var(--pink-muted));
  color: #fff;
  box-shadow: 0 14px 40px rgba(211,141,145,.25);
}
.button.secondary{
  background: var(--pink-soft);
  border-color: var(--pink-muted);
  color: var(--pink-muted);
}
.button.ghost{
  background: rgba(255,255,255,.7);
  border-color: var(--line);
  color: var(--text);
}
.button:hover{transform: translateY(-1px)}
.button:active{transform: translateY(0)}

/* Social */
.social{display:flex; gap:12px; flex-wrap:wrap}
.social-btn{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
}
.social-btn:hover{border-color: var(--pink)}
.icon{
  width:28px; height:28px;
  display:grid; place-items:center;
  border-radius: 10px;
  background: var(--pink-soft);
  border: 1px solid var(--pink-muted);
  color: var(--pink-muted);
}
.icon:has(.social-logo){
  padding:0;
  background:none;
  border:none;
  overflow:hidden;
  flex-shrink:0;
}
.social-logo{
  width:100%;
  height:100%;
  min-width:28px;
  min-height:28px;
  object-fit:contain;
  display:block;
  vertical-align:middle;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  background: var(--bg2);
}
.footer-inner{
  padding: 22px 0;
  display:grid;
  gap:14px;
}
.footer-brand{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:18px;
}
.footer-quote{color: var(--muted); font-size: 13px; margin-top: 2px}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.footer-links a{color: var(--text); text-decoration:none}
.footer-links a:hover{text-decoration:underline; color: var(--pink-muted)}
.footer-meta{color: var(--muted); font-size: 13px}

/* FAQ accordion (Inquiry page) */
.faq{
  display:grid;
  gap:10px;
}
.faq-item{
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  overflow:hidden;
}
.faq-item > summary{
  cursor:pointer;
  list-style:none;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--text);
}
.faq-item > summary::-webkit-details-marker{display:none}
.faq-item[open] > summary{
  background: rgba(255,255,255,.75);
}
.faq-body{
  padding: 0 14px 12px 14px;
  margin-left: 12px;            /* indent answer under question */
  padding-left: 12px;           /* extra indent */
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.faq-addons{
  margin: 10px 0 0 18px;
  padding: 0;
  color: var(--muted);
}
.faq-addons li{margin: 6px 0}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .field-grid{grid-template-columns: 1fr}
}
@media (max-width: 540px){
  .container{width:min(var(--max), calc(100% - 34px))}
  .gallery{grid-template-columns: 1fr}
  .brand-quote{display:none}
}

