:root {
  --ink: #23180f;
  --muted: #7c6b5a;
  --cream: #fff8ed;
  --paper: #fbefe0;
  --gold: #b87934;
  --copper: #8f4e24;
  --line: rgba(35, 24, 15, 0.14);
  --shadow: 0 30px 80px rgba(56, 31, 13, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 121, 52, 0.22), transparent 32rem),
    linear-gradient(135deg, #fffaf3 0%, var(--cream) 42%, #f2dfc8 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand { display: grid; gap: 2px; text-transform: uppercase; letter-spacing: 0.18em; }
.brand span { font-family: "Cormorant Garamond", serif; font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 700; letter-spacing: 0.14em; }
.brand small { color: var(--muted); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em; }

nav { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 0.93rem; font-weight: 600; }
.nav-cta { color: var(--ink); border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,0.4); }

main { width: min(1180px, calc(100% - 32px)); margin: 0 auto 36px; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 460px); align-items: center; gap: clamp(30px, 6vw, 78px); min-height: calc(100vh - 116px); padding: 36px 0 70px; }
.hero-copy { max-width: 650px; }
.eyebrow, .section-kicker { color: var(--copper); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; line-height: 0.95; margin: 0; }
h1 { font-size: clamp(4rem, 10vw, 8.8rem); letter-spacing: -0.065em; margin: 18px 0 24px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); letter-spacing: -0.045em; }
h3 { font-size: 2rem; letter-spacing: -0.025em; }
p { line-height: 1.7; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: var(--muted); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; border-radius: 999px; padding: 0 22px; font-weight: 800; border: 1px solid var(--line); }
.button.primary { background: var(--ink); color: #fffaf3; box-shadow: 0 16px 30px rgba(35,24,15,0.18); }
.button.ghost { background: rgba(255,255,255,0.45); color: var(--ink); }
.hero-card { margin: 0; padding: 12px; background: rgba(255,255,255,0.44); border: 1px solid rgba(255,255,255,0.7); border-radius: 36px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-card img { border-radius: 26px; aspect-ratio: 0.94 / 1; object-fit: cover; object-position: center; }
.panel { background: rgba(255,255,255,0.46); border: 1px solid rgba(255,255,255,0.75); border-radius: 34px; padding: clamp(28px, 5vw, 58px); box-shadow: 0 18px 60px rgba(56,31,13,0.08); }
.intro { max-width: 920px; margin: 0 auto 28px; text-align: center; }
.intro p:last-child, .cta p { color: var(--muted); max-width: 62ch; margin-inline: auto; }
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.cards article { background: rgba(255,255,255,0.38); border: 1px solid var(--line); border-radius: 28px; padding: 28px; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; }
.cards span { color: var(--gold); font-weight: 900; letter-spacing: 0.2em; }
.cards p, .copy-stack p, .quote p { color: var(--muted); }
.service-area { text-align: center; border-block: 1px solid var(--line); margin: 48px 0; padding: 18px 0; color: var(--copper); font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.76rem; }
.cta { text-align: center; }
footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 44px; display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 0.9rem; }
.page { padding-top: 40px; }
.about-hero { max-width: 980px; margin: 0 auto 42px; }
.about-hero h1 { font-size: clamp(3.6rem, 8vw, 7rem); }
.split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 42px; margin: 48px 0; }
.quote { text-align: center; padding: 60px 0; }
blockquote { font-family: "Cormorant Garamond", serif; font-size: clamp(3rem, 7vw, 6rem); line-height: 1; margin: 0; letter-spacing: -0.05em; }

@media (max-width: 860px) {
  .site-header, footer { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; padding-bottom: 6px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 16px; }
  .hero-card { transform: none; max-width: 520px; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.4rem, 18vw, 5.2rem); }
}
