@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #f4eee2;
  --cream-light: #fbf6ed;
  --paper: #fffaf1;
  --ink: #2d2b24;
  --muted: #6d685d;
  --sage: #6f765f;
  --sage-dark: #515842;
  --line: rgba(75, 70, 55, 0.16);
  --shadow: 0 22px 70px rgba(44, 38, 28, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream-light), var(--cream));
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); }

.site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  padding: 26px 42px;
  display: flex;
  justify-content: space-between;
  color: white;
}
.logo { display: flex; flex-direction: column; line-height: 1; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.logo-main { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.04em; }
.logo-sub { margin-top: 4px; text-transform: uppercase; font-size: .72rem; letter-spacing: .22em; opacity: .82; }
.main-nav { display: flex; gap: 26px; font-size: .95rem; text-shadow: 0 2px 16px rgba(0,0,0,.35); }

.hero { min-height: 760px; position: relative; overflow: hidden; background: #1c1914; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.95); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.32) 35%, rgba(255,244,229,.08) 72%),
    linear-gradient(180deg, rgba(0,0,0,.12), transparent 38%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(540px, calc(100% - 48px));
  padding-top: 210px;
  margin-left: clamp(26px, 7vw, 110px);
  color: white;
}
.eyebrow, .section-kicker {
  text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: var(--sage);
}
.hero .eyebrow { color: rgba(255,255,255,.76); }

h1, h2, h3 { margin: 0; line-height: 1.1; font-weight: 500; }
h1, h2 { font-family: "Cormorant Garamond", serif; }
h1 { font-size: clamp(3.8rem, 8vw, 6.8rem); letter-spacing: -.05em; max-width: 560px; }
h2 { font-size: clamp(2.4rem, 4.8vw, 4.2rem); letter-spacing: -.04em; }
h3 { font-size: 1.25rem; }

.hero-content p:not(.eyebrow) { margin: 30px 0 34px; max-width: 420px; font-size: 1.06rem; color: rgba(255,255,255,.92); }
.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 48px; padding: 0 24px; border: 0; border-radius: 7px;
  background: var(--sage); color: white; cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.button:hover, .button.dark { background: var(--sage-dark); }

.section { padding: 90px 32px; }
.container { max-width: 1120px; margin: 0 auto; }
.narrow { max-width: 840px; }
.two-columns { display: grid; grid-template-columns: .85fr 1.15fr; gap: 78px; align-items: start; }
.two-columns.reversed { grid-template-columns: 1.12fr .88fr; }

.intro, .practical-section, .contact-section { background: var(--cream-light); }
.definition-card {
  margin-top: 72px; padding: 38px 42px; border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255,255,255,.75), rgba(255,255,255,.35)), #e8dcc8;
  border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow);
}
.definition-card span { display: block; color: var(--muted); margin-bottom: 10px; }
.definition-card strong {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 500; color: #665946;
}

.personal-section { background: radial-gradient(circle at 82% 20%, rgba(111,118,95,.11), transparent 18rem), var(--cream); }
.personal-section p { font-size: 1.12rem; }
.story-section { background: var(--paper); }
.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.05rem, 3.2vw, 3.2rem);
  line-height: 1.16; color: #6b604e;
}
.words-section { background: radial-gradient(circle at 14% 20%, rgba(111,118,95,.12), transparent 16rem), var(--cream); }
.soft-card {
  background: rgba(255,255,255,.55); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.soft-card h3 { font-family: "Cormorant Garamond", serif; font-size: 2.1rem; margin-bottom: 18px; }

.green-band { padding: 46px 32px; background: linear-gradient(90deg, #65705b, #7a8266); color: white; }
.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.band-grid article { display: grid; grid-template-columns: auto 1fr; column-gap: 20px; border-right: 1px solid rgba(255,255,255,.28); padding-right: 30px; }
.band-grid article:last-child { border-right: 0; }
.band-grid span { font-size: 2rem; opacity: .82; grid-row: span 2; }
.band-grid h3 { font-family: "Cormorant Garamond", serif; font-size: 2rem; }
.band-grid p { margin: 8px 0 0; color: rgba(255,255,255,.78); }

.session-box { border-left: 1px solid var(--line); padding-left: 44px; }
.session-line { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-bottom: 28px; }
.session-line span {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--sage); border-radius: 50%; color: var(--sage-dark); font-weight: 700;
}
.session-line p { margin: 8px 0 0; }

.access-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(111,118,95,.10), transparent 18rem),
    var(--paper);
}
.address-card {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.address-card strong,
.address-card span {
  display: block;
}
.address-card strong {
  margin-bottom: 10px;
}
.address-card span {
  color: var(--muted);
}
.map-card {
  display: grid;
  gap: 22px;
}
.map-placeholder {
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.64), rgba(255,255,255,.28)),
    radial-gradient(circle at 25% 25%, rgba(111,118,95,.18), transparent 12rem),
    #e8dcc8;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  box-shadow: var(--shadow);
}
.map-placeholder span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #665946;
}
.map-placeholder p {
  margin: 8px 0 0;
}

.contact-card {
  text-align: center; max-width: 760px; padding: 72px 38px; border-radius: 30px;
  background: radial-gradient(circle at top left, rgba(111,118,95,.14), transparent 18rem), var(--paper);
  box-shadow: var(--shadow);
}
.contact-card p { max-width: 620px; margin: 0 auto 32px; }
.email-note {
  font-size: .9rem;
  opacity: .8;
}
.email-output {
  margin-top: 24px !important;
  font-size: 1.1rem;
}
.email-output a {
  color: var(--sage-dark);
  border-bottom: 1px solid currentColor;
}

footer { padding: 42px 32px; background: #2d3027; color: rgba(255,255,255,.78); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-email { color: rgba(255,255,255,.72); }

@media (max-width: 900px) {
  .site-header { padding: 22px; }
  .main-nav { display: none; }
  .hero { min-height: 680px; }
  .hero-content { padding-top: 190px; margin-left: 24px; }
  .two-columns, .two-columns.reversed, .band-grid { grid-template-columns: 1fr; }
  .session-box { border-left: 0; padding-left: 0; }
  .band-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); padding: 0 0 24px; }
  .band-grid article:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .section { padding: 66px 22px; }
  .hero-content { width: calc(100% - 44px); }
  h1 { font-size: 3.25rem; }
  .definition-card, .contact-card, .soft-card, .address-card { padding: 34px 24px; }
}


.map-link {
  margin-top: 18px !important;
}

.map-link a {
  display: inline-block;
  color: var(--sage-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.map-link a:hover {
  color: var(--sage);
}

.access-notes {
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.access-notes p {
  margin: 0;
}


.support-section {
  background: var(--cream-light);
}

.phone-line {
  margin-top: 14px;
}

.phone-line a,
.contact-details a {
  color: var(--sage-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.transport-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.transport-list li {
  margin-bottom: 10px;
}

.contact-details {
  margin: 28px auto 24px;
  display: grid;
  gap: 12px;
}

.contact-details p {
  margin: 0 auto;
}


.about-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(111,118,95,.11), transparent 18rem),
    var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: center;
}

.portrait-wrap {
  max-width: 360px;
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  filter: saturate(.92) contrast(.96);
}

.about-section p {
  font-size: 1.04rem;
}

.about-section .button {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    max-width: 280px;
  }
}
