:root {
  --cream: #F4E4CC;
  --cream-warm: #EFD4C4;
  --cream-soft: #F7EAD6;
  --terracotta: #B85C3A;
  --terracotta-deep: #9C3F1A;
  --sage: #6F7D62;
  --sage-deep: #586553;
  --stone: #B5B5AE;
  --stone-soft: #CFCFC8;
  --espresso: #1A1410;
  --espresso-muted: #5A4A3A;
  --espresso-soft: #3F2E22;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --didone: 'Bodoni Moda', 'Didot', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.container.narrow { max-width: 840px; }

section { padding: 80px 0; }
section.tight { padding: 64px 0; }

.band-cream { background: var(--cream); }
.band-blush { background: var(--cream-warm); }
.band-stone { background: var(--stone); }
.band-stone-soft { background: var(--stone-soft); }

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 22px;
}
.section-label.terra { color: var(--terracotta-deep); }
.section-label.cream { color: var(--cream); opacity: 0.95; }
.section-label.dark { color: var(--espresso); }

/* === HEADER === */
.site-header {
  padding: 18px 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,20,16,0.10);
  position: sticky; top: 0; z-index: 50;
}
.nav-row { display: flex; justify-content: space-between; align-items: center; }
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  color: var(--espresso) !important;
}
.brand:hover { color: var(--espresso); }
.brand-mark { flex-shrink: 0; display: block; }
.brand-text {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1;
}
.footer-mark { display: flex; align-items: center; gap: 14px; }
.footer-mark svg { display: block; }
.footer-mark .footer-brand-text {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.footer-mark .footer-brand-text em { color: var(--terracotta); font-style: italic; }
.brand-text em { color: var(--terracotta); font-style: italic; font-weight: 500; }
nav ul { list-style: none; display: flex; gap: 36px; }
nav a {
  color: var(--espresso);
  text-decoration: none !important;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
nav a:hover { color: var(--terracotta); }

/* === HERO — FULL SCREEN, FULL BLEED === */
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  align-items: stretch;
  position: relative;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px max(40px, calc((100vw - 1180px) / 2 + 40px));
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.02;
  color: var(--espresso);
  margin: 24px 0 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-copy h1 em { color: var(--terracotta); font-style: italic; font-weight: 500; }
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--espresso-muted);
  margin-bottom: 44px;
  max-width: 94%;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(244,228,204,0.55) 12%, rgba(244,228,204,0) 30%);
  pointer-events: none;
  z-index: 2;
}

.cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary { background: var(--espresso); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-deep); }
.btn-text {
  color: var(--espresso);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1.5px solid var(--espresso);
  padding-bottom: 3px;
  line-height: 1;
}
.btn-text:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* === TRUST BAR — SAGE === */
.trust-bar { background: var(--sage); padding: 20px 0; }
.trust-row { display: flex; justify-content: center; align-items: baseline; gap: 28px; flex-wrap: wrap; }
.trust-label {
  font-size: 11px;
  color: var(--cream);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}
.trust-list {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.trust-list strong { font-weight: 500; }
.trust-list em { font-style: italic; opacity: 0.85; }

/* === COPY STYLES === */
.lead-line {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.2;
  color: var(--espresso);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}
.body-serif {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--espresso);
  margin-bottom: 18px;
}
.body-serif a, .link {
  color: var(--terracotta-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.body-serif a:hover, .link:hover { color: var(--terracotta); }
.block-h {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.2;
  color: var(--espresso);
  font-weight: 500;
  margin-bottom: 32px;
  max-width: 92%;
}
.lead-serif {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--espresso);
  font-weight: 400;
  margin-bottom: 32px;
}
.lead-serif.sub { color: var(--espresso-muted); font-style: italic; }

/* === WHO === */
.who-list { display: flex; flex-direction: column; gap: 28px; }
.who-item h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--terracotta-deep);
  margin-bottom: 8px;
  font-weight: 500;
}
.who-item p { font-size: 18px; color: var(--espresso); line-height: 1.55; }

/* === PAIN GRID === */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pain {
  padding: 32px 30px;
  border-radius: 4px;
}
.pain-warm { background: rgba(184,92,58,0.10); color: var(--terracotta-deep); }
.pain-sage { background: rgba(111,125,98,0.14); color: var(--sage-deep); }
.pain-icon { width: 48px; height: 48px; margin-bottom: 18px; display: block; }
.pain h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--espresso);
  margin-bottom: 10px;
  font-weight: 500;
}
.pain p { font-size: 17px; color: var(--espresso-soft); line-height: 1.55; }

/* === LANES === */
.lanes { display: flex; flex-direction: column; gap: 12px; }
.lane {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 4px;
  align-items: start;
}
.lane-warm { background: rgba(184,92,58,0.08); }
.lane-sage { background: rgba(111,125,98,0.12); }
.lane .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--terracotta);
  font-weight: 600;
  padding-top: 2px;
}
.lane-sage .roman { color: var(--sage-deep); }
.lane h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--espresso);
  font-weight: 500;
  margin-bottom: 6px;
}
.lane p { font-size: 18px; color: var(--espresso-muted); line-height: 1.55; }

/* === ENGAGEMENTS BANNER === */
.banner-terra { background: var(--terracotta-deep); padding: 42px 0; }
.banner-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.banner-row h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.15;
  color: var(--cream);
  font-weight: 500;
  margin-top: 6px;
}
.banner-cta {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--cream);
  padding: 14px 26px;
  border-radius: 2px;
  white-space: nowrap;
}
.banner-cta:hover { background: var(--cream); color: var(--terracotta-deep); }

/* === ENGAGEMENT CARDS === */
#engagements .container { display: flex; flex-direction: column; gap: 16px; }
.eng { padding: 30px 32px; border-radius: 4px; }
.eng-warm { background: rgba(184,92,58,0.08); }
.eng-sage { background: rgba(111,125,98,0.12); }
.eng-sage-deep { background: rgba(111,125,98,0.20); border-left: 3px solid var(--sage); }
.eng-head { display: grid; grid-template-columns: 36px 1fr; gap: 18px; align-items: baseline; margin-bottom: 14px; }
.eng-head h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--espresso);
  font-weight: 500;
  grid-column: 2;
}
.eng-head .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--terracotta);
  font-weight: 600;
  grid-row: 1 / span 2;
}
.eng-head .num.sage { color: var(--sage-deep); }
.eng-head .meta {
  grid-column: 2;
  font-size: 14px;
  color: var(--espresso-muted);
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-top: -6px;
}
.eng p {
  font-size: 18px;
  color: var(--espresso-soft);
  line-height: 1.6;
  margin-left: 54px;
  margin-bottom: 14px;
}
.eng .leave-with { font-size: 17px; }
.eng .leave-with strong { color: var(--espresso); font-weight: 600; }
.talk-link {
  margin-left: 54px;
  font-size: 12px;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1.5px solid var(--terracotta);
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 600;
}
.talk-link.sage { color: var(--sage-deep); border-color: var(--sage-deep); }
.talk-link:hover { opacity: 0.75; }

/* === ONGOING NOTE === */
.ongoing-note {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--cream-soft);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--espresso);
  text-align: center;
}
.ongoing-note strong { color: var(--terracotta-deep); font-weight: 600; }

/* === OPEN CONVERSATION === */
.callout {
  background: var(--cream-warm);
  border-left: 4px solid var(--terracotta);
  padding: 32px 36px;
  border-radius: 2px;
}
.callout-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.callout p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--espresso);
}

/* === EXPERIENCE === */
.exp-list { display: flex; flex-direction: column; gap: 26px; }
.exp { padding-bottom: 26px; border-bottom: 0.5px solid rgba(26,20,16,0.18); }
.exp:last-child { border-bottom: 0; padding-bottom: 0; }
.exp-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.exp-head h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--espresso);
  font-weight: 500;
}
.exp-head span { font-size: 14px; color: var(--espresso-muted); letter-spacing: 0.08em; font-weight: 500; }
.exp p { font-size: 18px; color: var(--espresso-soft); line-height: 1.55; max-width: 96%; }

/* === ABOUT === */
.about-grid-bg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px;
  margin: 0 auto;
}
.about-side { padding: 72px 48px; }
.about-side:first-child { padding-right: 36px; }
.about-side:last-child { padding-left: 36px; }
.about-grid-bg .body-serif { font-size: 19px; line-height: 1.6; }

/* === PAINTINGS === */
.paintings-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  text-decoration: none;
}
.paint {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.3s;
}
.paintings-grid:hover .paint { transform: scale(0.98); }
.paint-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--espresso-muted);
  margin-top: 16px;
  text-align: center;
}

/* === LOCATION & LANGUAGES === */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.loc-heading {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--espresso);
  font-weight: 500;
  margin-bottom: 18px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pill {
  background: rgba(26,20,16,0.16);
  color: var(--espresso);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.loc-note { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--espresso-soft); }
.lang-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.lang-list li { display: flex; align-items: baseline; gap: 14px; }
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cream);
  min-width: 110px;
  text-align: center;
  font-weight: 500;
}
.tag-1 { background: var(--espresso); font-weight: 600; }
.tag-2 { background: rgba(26,20,16,0.65); }
.tag-3 { background: rgba(26,20,16,0.4); }
.lang-desc { font-family: var(--serif); font-size: 17px; color: var(--espresso); }

/* === LIVE CASE STUDY === */
.banner-sage { background: var(--sage); padding: 64px 0; }
.banner-h {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 16px;
  max-width: 90%;
}
.banner-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 85%;
  line-height: 1.5;
}
.follow-row { display: flex; gap: 32px; flex-wrap: wrap; }
.follow-link, .follow-link-secondary {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 3px;
  font-weight: 600;
}
.follow-link { border-bottom: 1.5px solid var(--cream); }
.follow-link-secondary { border-bottom: 1px solid rgba(244,228,204,0.55); }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 26px; }
.faq h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--espresso);
  margin-bottom: 8px;
  font-weight: 500;
}
.faq p { font-size: 18px; color: var(--espresso-muted); line-height: 1.55; }

/* === CONTACT === */
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 42px);
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 32px;
  max-width: 92%;
  font-weight: 500;
}
.email-line { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--espresso); }
.reply-time { font-size: 15px; color: var(--espresso-muted); font-style: italic; margin-top: 22px; }
.external-links { margin-top: 32px; font-size: 14px; color: var(--espresso-muted); }
.link-small { color: var(--terracotta-deep); text-decoration: none; border-bottom: 1px solid var(--terracotta-deep); padding-bottom: 1px; }

/* === FOOTER === */
.site-footer { background: var(--espresso); padding: 36px 0; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-brand { font-family: var(--serif); font-size: 17px; color: var(--cream); letter-spacing: 0.02em; }
.footer-brand em { color: var(--terracotta); font-style: italic; }
.footer-links { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px;
  color: var(--cream);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
  font-weight: 500;
}
.footer-links a:hover { opacity: 1; color: var(--terracotta); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  section { padding: 56px 0; }
  section.tight { padding: 48px 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 24px; order: 1; }
  .hero-photo { min-height: 420px; order: 2; }
  .hero-photo-fade { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .about-grid-bg { grid-template-columns: 1fr; }
  .about-side { padding: 48px 28px; }
  .loc-grid { grid-template-columns: 1fr; gap: 32px; }
  .paintings-grid { grid-template-columns: repeat(2, 1fr); }
  nav ul { gap: 18px; }
  nav a { font-size: 11px; }
  .lane p, .eng p, .eng .leave-with, .talk-link { margin-left: 0; }
  .eng-head { grid-template-columns: 28px 1fr; gap: 14px; }
  .brand-text { font-size: 22px; }
  .brand-mark { width: 36px; height: 36px; }
}
