
:root{
  --bg:#f5f2ef;
  --surface:#efe2db;
  --surface-2:#ffffff;
  --text:#231f1d;
  --muted:#6f625c;
  --accent:#c89e8f;
  --accent-2:#b78473;
  --dark:#111111;
  --dark-2:#1b1b1b;
  --line:#e4d9d2;
  --max:1200px;
  --shadow:0 20px 50px rgba(22,15,12,.08);
  --radius:28px;
  --serif: "Georgia", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.container{width:min(calc(100% - 28px), var(--max)); margin:auto}
.section{padding:72px 0}
.small-label{
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.24em;
  color:var(--muted);
}
.title{
  font-family:var(--serif);
  font-size:clamp(2rem, 4vw, 4.2rem);
  line-height:1.02;
  margin:10px 0 18px;
  font-weight:500;
}
.title.md{font-size:clamp(1.8rem, 3vw, 3rem)}
.text{
  color:var(--muted);
  font-size:1rem;
}
.btns{display:flex; gap:12px; flex-wrap:wrap; margin-top:22px}
.btn{
  height:46px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.28s ease;
  cursor:pointer;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
}
.btn.primary:hover{background:var(--accent-2); transform:translateY(-1px)}
.btn.ghost{
  border-color:#ccb7ad;
  color:var(--text);
  background:rgba(255,255,255,.7);
}
.btn.ghost:hover{background:#fff; transform:translateY(-1px)}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background:rgba(245,242,239,.78);
  border-bottom:1px solid rgba(35,31,29,.06);
}
.topbar-inner{
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-badge{
  width:34px;height:34px;border-radius:10px;
  background:linear-gradient(135deg,var(--accent),#e8d0c5);
  box-shadow:var(--shadow);
}
.brand-title{font-weight:700; letter-spacing:.02em}
.brand-sub{font-size:.8rem; color:var(--muted)}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{font-size:.92rem;color:var(--muted)}
.nav a:hover{color:var(--text)}
.theme-links{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
}
.theme-pill{
  border:1px solid var(--line);
  background:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:.82rem;
  color:var(--muted);
}

.hero{
  padding:26px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:24px;
  align-items:start;
}
.hero-stack{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.card-img-lg{
  border-radius:34px;
  overflow:hidden;
  min-height:520px;
  box-shadow:var(--shadow);
}
.card-img-lg img{width:100%; height:100%; object-fit:cover}
.hero-below{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.mini-photo,.mini-copy{
  border-radius:26px;
  overflow:hidden;
  min-height:170px;
  box-shadow:var(--shadow);
}
.mini-photo img{width:100%; height:100%; object-fit:cover}
.mini-copy{
  padding:20px;
  background:#ead5cb;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-copy{
  padding:26px;
  min-height:100%;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(239,226,219,.86));
  border:1px solid #eadfd9;
  box-shadow:var(--shadow);
}
.hero-stats{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.stat{
  border-radius:22px;
  padding:18px 14px;
  background:#fff;
  border:1px solid var(--line);
  text-align:center;
}
.stat b{display:block; font-size:1.15rem}
.stat span{display:block; margin-top:6px; font-size:.82rem; color:var(--muted)}

.services-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card{
  min-height:200px;
  background:#f0dfd6;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.service-card.dark{
  background:#121212;
  color:#fff;
}
.service-card.photo{padding:0}
.service-card.photo img{width:100%;height:100%;object-fit:cover}
.service-card .inner{padding:22px}
.service-card h3{
  margin:0 0 10px;
  font-family:var(--serif);
  font-size:1.35rem;
  font-weight:500;
}
.service-card p{margin:0; color:inherit; opacity:.86}

.feature-split{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:26px;
  align-items:center;
}
.frame-photo{
  border:10px solid #eadfd8;
  padding:10px;
  background:#fff;
  box-shadow:var(--shadow);
}
.frame-photo img{
  width:100%;
  min-height:430px;
  object-fit:cover;
}
.block-copy{
  padding:16px 8px;
}
.block-copy .title{margin-top:6px}
.inline-link{
  display:inline-flex; align-items:center; gap:10px; margin-top:18px; font-weight:600;
}
.inline-link::after{content:"→"; transition:.25s ease}
.inline-link:hover::after{transform:translateX(3px)}

.cosmetics{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:32px;
  align-items:center;
}
.flatlay{
  border-radius:32px;
  overflow:hidden;
  min-height:400px;
  box-shadow:var(--shadow);
}
.flatlay img{width:100%; height:100%; object-fit:cover}
.quote-band{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.quotes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.quote{
  padding:8px 6px;
}
.quote-mark{
  font-family:var(--serif);
  color:var(--accent);
  font-size:3rem;
  line-height:1;
}
.quote p{
  margin:0;
  color:var(--muted);
}

.dark-feature{
  background:linear-gradient(180deg,#181818,#0e0e0e);
  color:#fff;
}
.dark-wrap{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:26px;
  align-items:center;
}
.dark-photo{
  border-radius:0;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.dark-photo img{
  width:100%;
  min-height:420px;
  object-fit:cover;
}
.dark-copy{
  border:1px solid rgba(255,255,255,.16);
  padding:34px;
  background:rgba(255,255,255,.03);
}
.dark-copy .small-label,
.dark-copy .text{color:rgba(255,255,255,.72)}
.dark-copy .title{color:#fff}

.massage{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:26px;
  align-items:center;
}
.offset-photo{
  position:relative;
  min-height:420px;
}
.offset-photo .back{
  position:absolute; inset:32px auto auto 0;
  width:62%; height:72%;
  background:#f0d9cf;
  border-radius:28px;
}
.offset-photo .front{
  position:absolute; right:0; top:0;
  width:78%; height:82%;
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:10px solid rgba(255,255,255,.55);
}
.offset-photo .front img{width:100%;height:100%;object-fit:cover}

.contact-wrap{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  min-height:560px;
  box-shadow:var(--shadow);
}
.contact-bg{
  position:absolute; inset:0;
}
.contact-bg img{width:100%; height:100%; object-fit:cover}
.contact-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(243,235,230,.42), rgba(18,18,18,.26));
}
.contact-card{
  position:relative;
  width:min(100% - 28px, 520px);
  margin:68px auto;
  background:#111;
  color:#fff;
  padding:28px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 24px 50px rgba(0,0,0,.28);
}
.contact-card .small-label,
.contact-card .text{color:rgba(255,255,255,.72)}
.form{
  margin-top:18px;
  display:grid;
  gap:12px;
}
.field{
  width:100%;
  height:48px;
  border:1px solid rgba(255,255,255,.16);
  background:#fff;
  color:#111;
  padding:0 14px;
  outline:none;
}
textarea.field{
  min-height:110px;
  padding:12px 14px;
  resize:vertical;
}
.form .btn{width:fit-content}

.footer{
  background:#0e0e0e;
  color:#fff;
  padding:26px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  align-items:start;
}
.footer small, .footer p{color:rgba(255,255,255,.72); margin:0}
.socials{
  display:flex; gap:10px; margin-top:10px
}
.dot{
  width:9px;height:9px;border-radius:999px;background:#fff;opacity:.8
}

/* Noir theme overrides */
body.noir{
  --bg:#111213;
  --surface:#1a1717;
  --surface-2:#171516;
  --text:#f4ebe5;
  --muted:#bcaea7;
  --accent:#d4a894;
  --accent-2:#c08f79;
  --dark:#f0e4db;
  --dark-2:#e7d9d0;
  --line:#322b29;
  --shadow:0 20px 50px rgba(0,0,0,.22);
}
body.noir .topbar{background:rgba(17,18,19,.82); border-bottom-color:rgba(255,255,255,.06)}
body.noir .theme-pill{background:#181818; color:#d7cbc4}
body.noir .hero-copy{background:linear-gradient(180deg, rgba(26,23,23,.88), rgba(22,20,20,.96)); border-color:#2c2625}
body.noir .stat,
body.noir .service-card,
body.noir .contact-card{border-color:#2c2625}
body.noir .stat{background:#171616}
body.noir .mini-copy{background:#241f1d}
body.noir .service-card{background:#191716}
body.noir .service-card.dark{background:#ece0d7; color:#201a18}
body.noir .frame-photo{background:#181716; border-color:#2b2624}
body.noir .quote-band{background:#151515; border-color:#2b2624}
body.noir .footer{background:#090909}
body.noir .contact-overlay{background:linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.42))}

/* Responsive */
@media (max-width: 1024px){
  .hero-grid,
  .feature-split,
  .cosmetics,
  .dark-wrap,
  .massage{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .hero-copy{order:2}
}
@media (max-width: 720px){
  .topbar-inner{height:auto; padding:14px 0; flex-direction:column; align-items:flex-start}
  .nav{display:none}
  .hero{padding-top:18px}
  .card-img-lg{min-height:320px}
  .hero-below{grid-template-columns:1fr 1fr}
  .mini-photo,.mini-copy{min-height:128px}
  .hero-copy{padding:22px}
  .hero-stats{grid-template-columns:1fr}
  .services-grid,
  .quotes,
  .footer-grid{grid-template-columns:1fr}
  .section{padding:56px 0}
  .frame-photo img,
  .flatlay,
  .dark-photo img{min-height:280px}
  .offset-photo{min-height:320px}
  .offset-photo .back{top:32px; width:66%; height:62%}
  .offset-photo .front{width:84%; height:76%}
  .contact-wrap{min-height:640px}
  .contact-card{margin:42px auto}
}
