
:root {
  --ink: #251d2c;
  --muted: #6d6273;
  --soft: #f8f4ef;
  --paper: #fffdfa;
  --line: rgba(55, 42, 60, 0.13);
  --rose: #b1788a;
  --rose-dark: #8f5a6c;
  --lilac: #8e76b7;
  --peach: #f5d8c8;
  --cream: #fbf7f1;
  --shadow: 0 22px 70px rgba(63, 38, 54, 0.08);
  --radius: 28px;
  --max: 1320px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 250, 0.74);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.32);
}
.nav-inner {
  width: min(var(--max), calc(100% - 72px));
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: lowercase;
  font-size: 24px;
}
.logo small { display:block; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top:-3px; }
.logo-mark {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: linear-gradient(140deg, #e6aeba, #8b78bc 52%, #f4d2be);
  box-shadow: inset 0 0 18px rgba(255,255,255,.35), 0 12px 32px rgba(125,90,120,.22);
  transform: rotate(-10deg);
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-size: 14px;
  color: #3f3546;
}
.main-nav a { padding: 28px 0; border-bottom: 1px solid transparent; }
.main-nav a.active { border-color: var(--lilac); color: #24172d; }
.header-actions { display:flex; gap: 24px; align-items:center; font-size:14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(91, 66, 85, 0.22);
  border-radius: 999px;
  background: #fffaf6;
  box-shadow: 0 16px 45px rgba(66,42,55,.08);
  color: var(--ink);
  font-weight: 500;
}
.btn.primary { background: #a16778; color: #fff; border-color:#a16778; }
.btn.ghost { background: rgba(255,255,255,.52); }
.btn .arrow { font-size: 18px; line-height: 1; }

.hero {
  min-height: 780px;
  padding-top: 78px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fffdf9 0%, #fff9f4 42%, transparent 70%);
}
.hero-visual {
  position: absolute;
  inset: 78px 0 auto auto;
  width: 66%;
  height: 702px;
  overflow: hidden;
  z-index: 0;
}
.hero-visual img { width:100%; height:100%; object-fit:cover; object-position:center; filter:saturate(.92) contrast(.96); }
.hero-visual::before {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,253,250,1) 0%, rgba(255,253,250,.86) 23%, rgba(255,253,250,.30) 48%, rgba(255,253,250,0) 78%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding-top: 112px;
  max-width: 1320px;
}
.kicker {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 650;
  margin-bottom: 24px;
}
h1, h2, h3, .display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  color: #1e1725;
  margin: 0;
}
h1 { font-size: clamp(72px, 8.2vw, 132px); line-height: .91; max-width: 720px; }
.page-title h1 { max-width: 720px; }
h2 { font-size: clamp(46px, 5.1vw, 82px); line-height: .95; }
h3 { font-size: 32px; line-height: 1.04; letter-spacing: -0.035em; }
p { color: var(--muted); line-height: 1.58; font-size: 17px; margin: 0; }
.hero-copy p { max-width: 520px; margin-top: 28px; font-size: 19px; color:#423747; }
.hero-actions { display:flex; gap: 18px; margin-top: 34px; }

.section { padding: 110px 0; }
.container { width: min(var(--max), calc(100% - 72px)); margin: 0 auto; }
.section.soft { background: linear-gradient(180deg, #fffdf9, #faf6f1); }
.cards-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.offer-card {
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 32px;
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.pill-icon {
  width: 42px; height: 42px; border-radius: 11px; background: #f2e8f4; color: var(--lilac); display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:34px;
}
.offer-card p { font-size:15px; margin-top: 18px; }
.arrow-link { margin-top:30px; color:#5a4151; font-size:22px; }

.split {
  display: grid;
  grid-template-columns: .72fr 1.18fr;
  gap: 70px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.15fr .85fr; }
.split .copy p { margin-top: 26px; max-width: 490px; }
.media-panel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(70, 39, 58, .1);
  background: #fff;
}
.media-panel img { width:100%; height:100%; object-fit:cover; }
.media-panel.arch { background: radial-gradient(circle at 52% 42%, #fff, #fbf3f4 70%); }
.text-link { display:inline-flex; align-items:center; gap:18px; margin-top:36px; color:var(--rose-dark); border-bottom:1px solid rgba(143,90,108,.35); padding-bottom:7px; }

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.image-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.image-card img { height: 210px; width:100%; object-fit:cover; }
.image-card-body { padding: 28px; }
.number { display:inline-flex; width:44px; height:44px; border-radius: 9px; align-items:center; justify-content:center; background:#f5efec; color:#8f6c75; font-size:14px; margin-bottom:20px; }

.cta-band {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 290px;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  padding: 56px 72px;
  background: #f5d8c8;
  box-shadow: var(--shadow);
}
.cta-band img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.cta-band::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(255,245,235,.96), rgba(255,245,235,.62) 47%, rgba(255,245,235,.1)); z-index:1; }
.cta-band .cta-copy { position:relative; z-index:2; }
.cta-band p { margin-top:18px; max-width: 430px; color:#56465a; }

.site-footer {
  padding: 70px 0 30px;
  background: #fffdf9;
  border-top: 1px solid var(--line);
}
.footer-grid { display:grid; grid-template-columns: 1.3fr repeat(4, 1fr) 1.4fr; gap: 44px; }
.footer-grid h4 { margin:0 0 16px; font-size:13px; color:#2b2330; }
.footer-grid a, .footer-grid p { display:block; font-size:13px; color:#6b606f; line-height:1.75; }
.newsletter { display:flex; margin-top:14px; border:1px solid var(--line); border-radius:8px; overflow:hidden; }
.newsletter input { flex:1; border:0; padding:12px 14px; background:#fff; color: var(--ink); }
.newsletter button { border:0; width:42px; background:#a16778; color:#fff; }
.footer-bottom { margin-top:52px; padding-top:24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; font-size:12px; color:#867a88; }

/* Inner pages */
.page-hero { min-height: 600px; padding-top:78px; position:relative; overflow:hidden; background:#fffdf9; }
.page-hero .hero-visual { height:522px; }
.page-hero .hero-copy { padding-top:94px; }
.page-hero h1 { font-size: clamp(72px, 8vw, 120px); }
.page-hero p { max-width: 520px; }

.service-row {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items:center; padding: 70px 0;
}
.service-row:nth-child(even) { grid-template-columns: .95fr 1.05fr; }
.service-row .media-panel { height: 380px; }
.service-row .copy { max-width: 500px; }
.service-row p { margin-top:24px; }
.step-cards { display:grid; grid-template-columns: repeat(4,1fr); gap:32px; margin-top:54px; }
.step-card { border:1px solid var(--line); border-radius:18px; padding:36px; min-height:310px; background:#fff; box-shadow: var(--shadow); }
.step-card .pill-icon { width:78px;height:78px;border-radius:50%; font-size:30px; }
.matrix { border:1px solid var(--line); border-radius:20px; overflow:hidden; margin-top:42px; background:#fff; }
.matrix-row { display:grid; grid-template-columns: .7fr repeat(4,1fr); border-top:1px solid var(--line); }
.matrix-row:first-child { border-top:0; background:#fbf4f1; }
.matrix-cell { padding:24px; border-left:1px solid var(--line); font-size:15px; color:#5c515f; }
.matrix-cell:first-child { border-left:0; color:#302535; font-weight:650; }
.pricing-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:28px; margin-top:52px; }
.price-card { background:#fff; border:1px solid var(--line); border-radius:20px; padding:40px; box-shadow: var(--shadow); }
.price { font-size:56px; letter-spacing:-.04em; margin: 28px 0 8px; color:#211929; }
ul.clean { padding:0; list-style:none; margin:28px 0; }
ul.clean li { margin: 12px 0; color:#625669; font-size:15px; }
ul.clean li::before { content:"○"; color: var(--lilac); margin-right:10px; }
.contact-grid { display:grid; grid-template-columns: 1.25fr .75fr; gap:80px; }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
input, textarea, select { border:1px solid var(--line); border-radius:8px; padding:14px 16px; font:inherit; background:#fff; color:var(--ink); }
textarea { grid-column:1/-1; min-height:138px; resize:vertical; }
.full { grid-column:1/-1; }
.form-card, .detail-card { background:#fff; border:1px solid var(--line); border-radius:22px; padding:42px; box-shadow:var(--shadow); }
.faq { margin-top:46px; border:1px solid var(--line); border-radius:16px; background:#fff; overflow:hidden; }
.faq-row { padding:22px 28px; border-top:1px solid var(--line); display:flex; justify-content:space-between; color:#433849; }
.faq-row:first-child { border-top:0; }

@media (max-width: 860px) {
  .site-header { height: 68px; }
  .nav-inner { width: calc(100% - 36px); grid-template-columns: 1fr auto; }
  .main-nav { display:none; }
  .header-actions a:first-child { display:none; }
  .header-actions .btn { padding:0 16px; min-height:42px; }
  .logo { font-size:20px; }
  .hero, .page-hero { min-height:auto; padding-top:68px; }
  .hero-visual, .page-hero .hero-visual { position:relative; inset:auto; width:100%; height:310px; margin-top:20px; }
  .hero-visual::before { background: linear-gradient(180deg, rgba(255,253,250,.0), rgba(255,253,250,.0)); }
  .hero-copy, .page-hero .hero-copy { width: calc(100% - 36px); padding-top:60px; }
  h1 { font-size: 58px; line-height:.95; }
  h2 { font-size:42px; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .section { padding:72px 0; }
  .container { width: calc(100% - 36px); }
  .cards-four, .image-card-grid, .pricing-grid, .step-cards { grid-template-columns: 1fr; }
  .split, .split.reverse, .service-row, .service-row:nth-child(even), .contact-grid { grid-template-columns:1fr; gap:36px; }
  .service-row .media-panel { height:auto; }
  .cta-band { grid-template-columns:1fr; min-height:310px; padding:36px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction:column; gap:12px; }
  .matrix { overflow-x:auto; }
  .matrix-row { min-width: 800px; }
}
