
:root {
  --bg: #f7f4ef;
  --surface: #fbf9f5;
  --text: #141414;
  --muted: #5c5a56;
  --line: rgba(20, 20, 20, 0.10);
  --gold: #b9974f;
  --gold-soft: rgba(185, 151, 79, 0.14);
  --shadow: 0 20px 50px rgba(16, 16, 16, 0.06);
  --radius: 20px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 151, 79, 0.08), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 100%);
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 8px; background: #fff; padding: 10px 14px; z-index: 20;
}
.skip-link:focus { left: 8px; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(247, 244, 239, 0.78);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}
.header-inner {
  min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px; text-decoration: none;
}
.brand-mark {
  width: 46px; height: 72px; object-fit: contain; flex: 0 0 auto;
}
.brand-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem; letter-spacing: 0.04em; text-transform: lowercase;
}
.nav { display: flex; gap: 28px; }
.nav a {
  text-decoration: none; color: var(--muted); font-size: 0.96rem;
}
.nav a:hover { color: var(--text); }



.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  padding: 112px 0 92px;
  background: #f1e6d5;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("assets/homepage-map.png");
  background-size: cover;
  background-position: center 36%;
  background-repeat: no-repeat;
  opacity: 1;
  filter: contrast(1.18) saturate(1.08) brightness(0.98);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247,244,239,0.78) 0%, rgba(247,244,239,0.42) 42%, rgba(247,244,239,0.18) 100%),
    linear-gradient(180deg, rgba(247,244,239,0.18) 0%, rgba(247,244,239,0.00) 46%, rgba(247,244,239,0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}
.hero .lead,
.hero .hero-meta {
  max-width: 700px;
}
.eyebrow {
  margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem; color: var(--gold);
}
h1, h2, h3 {
  margin: 0; line-height: 1.1; font-weight: 600;
}
h1, h2 { font-family: 'Cormorant Garamond', Georgia, serif; }
h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.9rem);
  max-width: 100%;
  letter-spacing: -0.025em;
}

/* Controlled hero headline: never breaks into three lines */
.hero-title {
  display: block;
  width: min(100%, 1120px);
  max-width: none;
  font-size: clamp(2.9rem, 5.6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  white-space: normal;
}
.hero-title span {
  display: inline-block;
  white-space: nowrap;
}
.hero-title span + span {
  margin-left: 0.18em;
}

@media (max-width: 920px) {
  .hero-title {
    font-size: clamp(2.5rem, 8.5vw, 4.2rem);
  }
  .hero-title span {
    display: block;
  }
  .hero-title span + span {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: clamp(1.95rem, 9.8vw, 2.55rem);
  }
}

h2 { font-size: clamp(2.15rem, 5vw, 3.3rem); max-width: 15ch; }
h3 { font-size: 1.25rem; }
.lead {
  margin: 22px 0 0; max-width: 60ch; font-size: 1.13rem; color: var(--muted);
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px;
}
.hero-meta span {
  border: 1px solid var(--line); background: rgba(255,255,255,0.68); padding: 10px 14px; border-radius: 999px;
  font-size: 0.93rem; color: var(--muted);
  backdrop-filter: blur(4px);
}
.section { padding: 72px 0; }
.editorial-grid,
.contact-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start;
}
.text-stack p,
.section-intro,
.contact-intro,
.focus-grid p,
.footer-small { color: var(--muted); }
.text-stack p:first-child,
.text-stack p:last-child { margin-block: 0; }
.text-stack p + p { margin-top: 18px; }
.focus-section .section-heading.narrow { max-width: 760px; }
.section-intro { margin: 16px 0 0; max-width: 62ch; }
.focus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px;
}
.focus-grid article,
.contact-form {
  background: rgba(255,255,255,0.62); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.focus-grid article { padding: 28px; }

/* Focus section: place cards next to the Focus text on desktop */
.focus-section .container {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr);
  gap: 54px;
  align-items: start;
}

.focus-section .section-heading.narrow {
  max-width: 520px;
  position: sticky;
  top: 118px;
}

.focus-section .focus-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
}

.focus-section .focus-grid article {
  min-height: auto;
}

.number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px; background: var(--gold-soft); color: var(--gold);
  font-size: 0.85rem; margin-bottom: 18px;
}
.focus-grid h3 { margin-bottom: 10px; }
.contact-links {
  display: flex; flex-direction: column; gap: 10px; margin-top: 26px;
}
.contact-links a {
  width: fit-content; text-decoration: none; padding-bottom: 3px; border-bottom: 1px solid rgba(185, 151, 79, 0.28);
}
.contact-form { padding: 28px; }
.form-row { margin-bottom: 18px; }
.form-row.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: block; margin-bottom: 8px; font-size: 0.95rem; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(20,20,20,0.12); background: rgba(255,255,255,0.82);
  border-radius: 12px; padding: 13px 14px; font: inherit; color: var(--text);
}
input::placeholder, textarea::placeholder { color: #8e8b86; }
textarea { resize: vertical; }
.checkbox-row {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; color: var(--muted);
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 999px;
  border: 1px solid transparent; padding: 0 22px; font: inherit; cursor: pointer;
}
.button.primary {
  background: linear-gradient(180deg, #c8aa69 0%, #b08a41 100%); color: #fff;
  box-shadow: 0 14px 26px rgba(176, 138, 65, 0.22);
}
.form-note { margin: 14px 0 0; font-size: 0.92rem; color: var(--muted); }
.site-footer {
  padding: 28px 0 36px; border-top: 1px solid rgba(20, 20, 20, 0.08); margin-top: 18px;
}
.footer-grid {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 30px;
}
.footer-brand { margin-bottom: 12px; }
.footer-small { max-width: 60ch; margin: 0; font-size: 0.95rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--text); }

@media (max-width: 900px) {
  .header-inner, .footer-grid { flex-direction: column; align-items: flex-start; }
  .nav { gap: 18px; flex-wrap: wrap; }
  .editorial-grid, .contact-grid, .focus-grid, .form-row.split {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 620px; padding: 82px 0 72px; }
  .hero::before { background-position: center center; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { position: static; }
  .brand-text { font-size: 1.55rem; }
  .brand-mark { width: 40px; height: 62px; }
  .section { padding: 56px 0; }
  .contact-form, .focus-grid article { padding: 22px; }
}



@media (max-width: 980px) {
  .focus-section .container {
    display: block;
  }

  .focus-section .section-heading.narrow {
    max-width: 760px;
    position: static;
  }

  .focus-section .focus-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
}
