﻿:root {
  --ink: #241719;
  --text: #3f3230;
  --muted: #766765;
  --paper: #fffaf6;
  --soft: #f7eee8;
  --rose: #974757;
  --rose-soft: #f3e1df;
  --moss: #65715d;
  --gold: #c9a76e;
  --line: rgba(36, 23, 25, 0.12);
  --shadow: 0 24px 70px rgba(54, 32, 28, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(151, 71, 87, .07), transparent 38%), linear-gradient(180deg, var(--paper), #f3e8df 76%, #ecddd3);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(36,23,25,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(36,23,25,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 72%);
  z-index: -1;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(22px, 4vw, 58px);
  background: rgba(255,250,246,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: grid; line-height: 1.05; text-decoration: none; justify-self: start; }
.brand span, h1, h2, h3, .quote-band p, .price-card strong { font-family: Georgia, "Times New Roman", serif; }
.brand span { font-size: clamp(1.15rem, 1.7vw, 1.55rem); font-weight: 700; }
.brand small { color: var(--muted); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.main-nav a, .nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.1;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.main-nav a { padding: 9px 14px; color: var(--muted); font-size: .94rem; }
.main-nav a:hover, .main-nav a.active { color: var(--rose); background: var(--rose-soft); }
.nav-cta { padding: 11px 20px; color: white; background: var(--ink); box-shadow: 0 12px 30px rgba(36,23,25,.18); white-space: nowrap; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }

.hero {
  width: min(1240px, calc(100% - 44px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 82px) 0 clamp(52px, 7vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}
.hero > *, .intro-grid > *, .split-section > *, .two-column > *, .about-hero > * { min-width: 0; }
.hero-content { max-width: 650px; }
.hero-media { position: relative; order: 2; perspective: 1200px; }
.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-height: 660px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotateY(-5deg) rotateX(1deg);
  filter: saturate(1.04) contrast(1.02);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 9% -5% auto auto;
  width: 78%;
  height: 72%;
  border: 1px solid rgba(201,167,110,.45);
  transform: rotate(4deg);
  z-index: -1;
}
.hero-sculpture {
  position: absolute;
  left: -48px;
  bottom: 50px;
  width: clamp(130px, 13vw, 200px);
  height: clamp(130px, 13vw, 200px);
  transform-style: preserve-3d;
  animation: float3d 8s ease-in-out infinite;
}
.hero-sculpture span { position: absolute; inset: 0; border: 1px solid rgba(151,71,87,.3); background: rgba(255,250,246,.5); backdrop-filter: blur(8px); box-shadow: 0 18px 54px rgba(151,71,87,.14); }
.hero-sculpture span:nth-child(1) { transform: rotateX(62deg) rotateZ(45deg); }
.hero-sculpture span:nth-child(2) { transform: rotateY(58deg) rotateZ(45deg); }
.hero-sculpture span:nth-child(3) { transform: rotateZ(45deg); }

.eyebrow { margin: 0 0 14px; color: var(--rose); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.03; word-break: normal; overflow-wrap: normal; }
h1 { max-width: 680px; font-size: clamp(3.2rem, 5.25vw, 6.05rem); letter-spacing: 0; }
h2 { font-size: clamp(2rem, 3.55vw, 3.85rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); font-size: 1.04rem; overflow-wrap: break-word; }
.lead { max-width: 620px; margin: 26px 0 0; font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { border: 1px solid transparent; padding: 13px 22px; text-align: center; }
.button.primary { color: white; background: var(--rose); box-shadow: 0 14px 36px rgba(151,71,87,.24); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.58); border-color: var(--line); }
.button.secondary:hover { background: white; box-shadow: 0 12px 28px rgba(36,23,25,.09); }

.section-band, .feature-strip, .split-section, .cta-panel, .subhero, .offer-grid, .price-wrap, .contact-grid, .quote-band {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto clamp(54px, 8vw, 108px);
}
.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 5vw, 72px); align-items: start; padding-top: 34px; border-top: 1px solid var(--line); }
.intro-grid p:last-child { margin: 0; color: var(--ink); font-size: clamp(1.12rem, 1.7vw, 1.38rem); }
.feature-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.feature-strip article { min-height: 250px; padding: clamp(24px, 4vw, 40px); background: rgba(255,250,246,.86); }
.feature-strip span { color: var(--gold); font-weight: 850; }
.feature-strip h3 { margin-top: 34px; }
.split-section { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(28px, 6vw, 90px); align-items: center; }
.portrait-card { position: relative; }
.portrait-card img, .about-hero img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.portrait-card::after { content: ""; position: absolute; inset: 28px -24px -24px 24px; border: 1px solid rgba(101,113,93,.38); z-index: -1; }
.copy-block p { max-width: 620px; }
.text-link { color: var(--rose); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.cta-panel, .quote-band { position: relative; padding: clamp(34px, 6vw, 76px); border-radius: var(--radius); background: var(--ink); overflow: hidden; box-shadow: var(--shadow); }
.cta-panel::before, .quote-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(151,71,87,.36), transparent 55%), linear-gradient(45deg, transparent, rgba(201,167,110,.18)); }
.cta-panel > *, .quote-band > * { position: relative; }
.cta-panel h2, .cta-panel p, .quote-band p { color: white; }
.cta-panel p { max-width: 620px; }
.cta-panel .eyebrow { color: #f4c8c8; }

.subhero { padding: clamp(54px, 8vw, 112px) 0 clamp(30px, 6vw, 74px); }
.subhero.compact { max-width: 920px; text-align: center; }
.subhero h1 { font-size: clamp(2.8rem, 5.4vw, 5.4rem); }
.subhero p { max-width: 760px; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.subhero.compact p { margin-left: auto; margin-right: auto; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 70px); padding-top: 34px; border-top: 1px solid var(--line); }
.soft-card { padding: clamp(24px, 4vw, 40px); background: rgba(255,255,255,.62); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 54px rgba(60,35,30,.08); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card { display: grid; grid-template-rows: 240px 1fr; background: rgba(255,250,246,.78); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 54px rgba(60,35,30,.1); transition: transform .25s ease, box-shadow .25s ease; }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer-card img { width: 100%; height: 100%; object-fit: cover; }
.offer-card div { padding: 26px; }
.about-hero { display: grid; grid-template-columns: 1.1fr minmax(260px, 430px); gap: clamp(28px, 6vw, 88px); align-items: center; }
.quote-band p { margin: 0; font-size: clamp(1.7rem, 3.4vw, 3.25rem); line-height: 1.16; }
.price-wrap { display: grid; place-items: center; }
.price-card { width: min(680px, 100%); padding: clamp(32px, 6vw, 72px); text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,250,246,.84); box-shadow: var(--shadow); }
.price-card span, .contact-card span { color: var(--rose); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.price-card strong { display: block; margin: 12px 0 18px; font-size: clamp(4rem, 10vw, 8rem); line-height: .9; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { min-height: 330px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,250,246,.82); box-shadow: 0 18px 54px rgba(60,35,30,.1); }
.contact-card .button { margin-top: auto; max-width: 100%; overflow-wrap: anywhere; }
.section { width: min(1020px, calc(100% - 36px)); margin: 0 auto 34px; padding: clamp(24px, 4vw, 44px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,250,246,.82); box-shadow: 0 18px 54px rgba(60,35,30,.08); }
.section h2 { margin-bottom: 18px; }
.section h3 { margin-top: 28px; margin-bottom: 10px; }
.section p { margin: 0 0 14px; }
.legal-page { padding-bottom: 70px; }
.legal-page a { color: var(--rose); font-weight: 700; overflow-wrap: anywhere; }
.legal-title { margin-bottom: 34px; }
.redirect-page { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.redirect-box { width: min(680px, 100%); padding: clamp(30px, 6vw, 60px); border: 1px solid var(--line); background: rgba(255,250,246,.9); border-radius: var(--radius); box-shadow: var(--shadow); }
.redirect-box .text-link { display: inline-block; margin-left: 16px; }

.site-footer { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 34px clamp(18px, 5vw, 62px); background: #241719; color: white; }
.site-footer div:first-child { display: grid; }
.site-footer span, .site-footer a { color: rgba(255,255,255,.74); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }

.reveal { animation: reveal .7s ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float3d { 0%,100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); } 50% { transform: translateY(-18px) rotateX(8deg) rotateY(-10deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr; justify-items: center; }
  .brand { justify-items: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { order: -1; max-width: 760px; }
  .hero-media { order: 0; min-height: auto; overflow: visible; width: min(760px, 100%); }
  .hero-media::before { display: none; }
  .hero-media img { width: 100%; height: auto; transform: none; aspect-ratio: 16 / 10; }
  .hero-sculpture { width: 150px; height: 150px; left: 18px; bottom: -22px; }
  .intro-grid, .split-section, .two-column, .about-hero { grid-template-columns: 1fr; }
  .feature-strip, .offer-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-strip article { min-height: auto; }
}
@media (max-width: 640px) {
  .site-header { padding: 14px; align-items: stretch; }
  .main-nav { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .main-nav a { padding: 9px 6px; font-size: .85rem; min-width: 0; white-space: normal; text-align: center; }
  .nav-cta { width: 100%; }
  .hero { display: flex; flex-direction: column; width: min(100% - 36px, 520px); padding: 28px 0 54px; overflow: hidden; }
  .hero-content, .lead, .hero-actions { width: min(100%, 292px); max-width: 100%; }
  .lead { font-size: .98rem; }
  h1 { font-size: clamp(1.75rem, 8.2vw, 2.12rem); max-width: 292px; }
  .subhero h1 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .hero-actions, .footer-links, .site-footer { flex-direction: column; align-items: stretch; }
  .button { width: 100%; max-width: 100%; }
  .section-band, .feature-strip, .split-section, .cta-panel, .subhero, .offer-grid, .price-wrap, .contact-grid, .quote-band { width: min(100% - 28px, 1160px); margin-bottom: 54px; }
  .site-footer { text-align: center; }
  .footer-links { justify-content: center; }
}


