:root {
  --cream: #f2e9d8;
  --blush: #e6d3d0;
  --black: #14100d;
  --near-black: #1c1712;
  --orange: #c1502e;
  --orange-dark: #a8431f;
  --text-dark: #1f1a15;
  --text-muted: #6b5f52;
  --text-on-dark: #e8e0d4;
  --text-on-dark-muted: #a89a89;
  --border-warm: #d8c9a8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav */
header.site-nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-on-dark);
}
.logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 22px; line-height: 1; }
.logo-sub { font-size: 9px; letter-spacing: 2px; color: var(--orange); display: block; margin-top: 2px; }
nav.links {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav.links a {
  color: var(--text-on-dark-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
  padding-bottom: 4px;
}
nav.links a:hover, nav.links a.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.15s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-dark { background: var(--black); color: var(--text-on-dark); border: 1px solid rgba(255,255,255,0.15); }
.btn-outline { background: transparent; color: var(--text-on-dark); border: 1px solid rgba(255,255,255,0.3); }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span { width: 22px; height: 2px; background: var(--text-on-dark); display: block; }
.mobile-nav-panel {
  display: none;
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 20px 20px;
}
.mobile-nav-panel.open { display: block; }
.mobile-nav-panel a {
  display: block;
  padding: 12px 0;
  color: var(--text-on-dark-muted);
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-panel a.active, .mobile-nav-panel a:hover { color: var(--orange); }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse 800px 500px at 15% 0%, rgba(193,80,46,0.16), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(193,80,46,0.10), transparent 60%),
    var(--near-black);
  color: var(--text-on-dark);
  padding: 90px 32px 70px;
  position: relative;
}
.hero-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 700;
  max-width: 760px;
  margin-bottom: 26px;
}
.hero p.lede {
  font-size: 19px;
  color: var(--text-on-dark-muted);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-byline { font-size: 14px; color: var(--text-on-dark-muted); }

/* Sections */
section { padding: 80px 32px; }
.section-cream { background: var(--cream); }
.section-blush { background: var(--blush); }
.section-dark { background: var(--black); color: var(--text-on-dark); }

.eyebrow-dark { color: var(--orange); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; display: block; }
h2.section-title { font-size: 40px; line-height: 1.15; margin-bottom: 18px; font-weight: 700; }
.section-lede { font-size: 17px; color: var(--text-muted); max-width: 640px; line-height: 1.65; }
.section-lede.on-dark { color: var(--text-on-dark-muted); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.rule { width: 56px; height: 3px; background: var(--orange); margin: 20px 0 24px; }

.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.card {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border-warm);
  border-radius: 6px;
  padding: 28px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.card-icon {
  width: 22px; height: 22px;
  color: var(--orange);
  margin-bottom: 14px;
}

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.photo-card { border-radius: 8px; overflow: hidden; background: #fff; border: 1px solid var(--border-warm); }
.photo-card img { width: 100%; height: 200px; object-fit: cover; }
.photo-card .pc-body { padding: 20px; }
.photo-card h3 { font-size: 18px; margin-bottom: 8px; }
.photo-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,80,46,0.1);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.gallery-grid .g-big { grid-row: span 2; height: 100%; }
.gallery-grid .g-big img { height: 100%; }
.gallery-grid .g-small img { height: 100%; min-height: 160px; }

/* Contact CTA band */
.cta-band {
  background: var(--black);
  color: var(--text-on-dark);
  padding: 70px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 32px; max-width: 520px; }
.cta-contact-grid { display: grid; gap: 14px; }
.cta-contact-item { display: flex; align-items: center; gap: 14px; }
.cta-contact-item .ci-icon {
  width: 42px; height: 42px;
  background: rgba(193,80,46,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.cta-contact-item .ci-label { font-size: 12px; color: var(--text-on-dark-muted); }
.cta-contact-item .ci-value { font-weight: 600; color: var(--text-on-dark); }

/* Footer */
footer {
  background: var(--black);
  color: var(--text-on-dark-muted);
  padding: 60px 32px 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 { color: var(--text-on-dark); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; color: var(--text-on-dark-muted); }
.footer-col a:hover { color: var(--orange); }
.footer-contact-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-warm);
  border-radius: 4px;
  background: rgba(255,255,255,0.6);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  background: var(--blush);
  border-radius: 6px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .cc-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-card .cc-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--orange-dark); font-weight: 700; margin-bottom: 4px; }
.contact-card .cc-value { font-weight: 600; font-size: 15px; }

.stat-band {
  background: var(--orange);
  color: #fff;
  padding: 44px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-band .stat-num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; }
.stat-band .stat-label { font-size: 13px; opacity: 0.9; margin-top: 6px; }

.legal-body h2 { font-size: 26px; margin: 36px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; }

/* Art panels — replace stock photography with an original, on-brand treatment */
.art-panel {
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(193,80,46,0.24), transparent 55%),
    repeating-linear-gradient(115deg, rgba(216,201,168,0.35) 0px, rgba(216,201,168,0.35) 1px, transparent 1px, transparent 34px),
    linear-gradient(160deg, #2a231b, #14100d 75%);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.art-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(193,80,46,0.35), transparent 45%);
}
.art-panel .art-mark {
  position: absolute;
  bottom: 18px;
  left: 20px;
  color: rgba(232,224,212,0.55);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.gallery-grid .art-panel.g-big { grid-row: span 2; height: 100%; }

.avatar-mono {
  border-radius: 8px;
  background: linear-gradient(155deg, #2a231b, #14100d 75%);
  border: 1px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.avatar-mono::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(193,80,46,0.30), transparent 50%);
}
.avatar-mono span {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  color: var(--orange);
  z-index: 1;
  position: relative;
}

@media (max-width: 900px) {
  nav.links, .nav-ctas { display: none; }
  .mobile-toggle { display: flex; }
  .hero h1 { font-size: 38px; }
  .two-col, .cards-2, .cards-3, .footer-grid, .form-grid, .stat-band { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid .g-big { grid-row: auto; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  section { padding: 56px 20px; }
  .hero { padding: 56px 20px; }
}
