:root {
  --ink: #18201f;
  --ink-soft: #48504e;
  --muted: #707875;
  --paper: #f4f1eb;
  --paper-2: #ece8df;
  --paper-3: #f8f7f3;
  --white: #fcfbf8;
  --navy: #182b35;
  --navy-2: #203b47;
  --accent: #ae7650;
  --accent-dark: #8d5d40;
  --line: rgba(24, 32, 31, .13);
  --line-light: rgba(255,255,255,.13);
  --max: 1180px;
  --radius: 2px;
  --shadow: 0 18px 50px rgba(22, 28, 27, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.75 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent-dark); }
a:hover { text-decoration-thickness: 1px; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 241, 235, .93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner,
.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -.025em;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.35rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}
nav a:hover,
nav a:focus-visible { color: var(--ink); }
nav a:hover::after,
nav a:focus-visible::after { opacity: 1; transform: scaleX(1); }

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6.5rem, 13vw, 10.5rem) clamp(5.5rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 90% 8%, rgba(174, 118, 80, .11), transparent 22rem),
    linear-gradient(135deg, #f9f7f2 0%, #ebe6dc 100%);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2.5rem;
  width: clamp(7rem, 15vw, 12rem);
  height: 1px;
  background: var(--accent);
  content: "";
  opacity: .65;
}

.hero .wrap { max-width: 1180px; }
.hero .eyebrow span {
  display: inline-block;
  padding-right: 1rem;
  border-right: 1px solid currentColor;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 980px;
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
}
h2 {
  max-width: 920px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
}
h3 {
  margin-bottom: .7rem;
  font-size: 1.04rem;
  letter-spacing: -.01em;
}
p { margin: 0 0 1.15rem; }
.lead {
  max-width: 790px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.25rem;
  margin-top: .55rem;
  padding: .88rem 1.18rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.button::after {
  margin-left: .55rem;
  content: "→";
  font-size: 1rem;
}
.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.section {
  border-bottom: 1px solid var(--line);
}
.section-workshops { background: var(--paper-3); }
.section-about { background: var(--paper-2); }
.section-testimonials { background: var(--paper-3); }
.section-newsletter { background: var(--paper); }

.section-inner {
  padding-block: clamp(5.25rem, 9vw, 8.5rem);
}

.section-heading {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic {
  min-height: 100%;
  padding: 1.65rem 1.75rem 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.topic:nth-child(odd) { background: rgba(255,255,255,.25); }
.topic p:last-child { margin-bottom: 0; }
.topic h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; font-weight: 500; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about-grid img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1.75rem;
}

.about-grid > div + div {
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--line);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.4rem;
  border: none;
  /* border-top: 0px solid var(--line); */
  /* border-left: 0px solid var(--line); */
}

blockquote {
  position: relative;
  margin: 0;
  padding: 1.8rem 1.75rem 2rem;
  border: none;
  /* border-right: 1px solid var(--line); */
  /* border-bottom: 1px solid var(--line); */
  color: var(--ink-soft);
  background: transparent;
}
blockquote::before {
  display: block;
  margin-bottom: .8rem;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  content: "“";
}

.section-workshops > .wrap > img {
  width: min(100%, 592px);
  height: auto;
  margin: 2rem 0 2.5rem;
}

.section-newsletter .section-inner {
  padding-block: clamp(5.25rem, 9vw, 8.5rem);
}
.section-newsletter .section-inner > .eyebrow { margin-bottom: 10; }

.section-newsletter img {
  display: block;
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--navy);
  color: #f7f4ee;
}
.contact::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34vw;
  height: 100%;
  background: linear-gradient(135deg, transparent 35%, rgba(174,118,80,.12) 100%);
  content: "";
  pointer-events: none;
}
.contact .wrap { position: relative; z-index: 1; }
.contact .eyebrow { color: #d09a74; }
.contact h2 { max-width: 950px; color: #fff; }
.contact p { max-width: 760px; color: rgba(247,244,238,.78); }
.contact .button { margin-top: .5rem; border-color: #f7f4ee; background: #f7f4ee; color: var(--navy); }
.contact .button:hover,
.contact .button:focus-visible { border-color: #fff; background: #fff; }
.contact a { color: #f2ddd0; }
.contact-note {
  max-width: 760px;
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(247,244,238,.58) !important;
  font-size: .9rem;
}

.site-footer { background: var(--paper); }
.footer-inner {
  min-height: 72px;
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .08em;
  /* text-transform: uppercase; */
}
.footer-inner a { color: var(--muted); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .section-newsletter .section-inner { display: block; }
  .section-newsletter .section-inner > h2 { max-width: 760px; }
  .section-newsletter .section-inner > p:not(.eyebrow) { max-width: 700px; }
  .section-newsletter .section-inner > a { margin-top: .2rem; }
}

@media (max-width: 800px) {
  .header-inner { align-items: flex-start; padding-block: .9rem; }
  .header-inner, .footer-inner { flex-direction: column; }
  .header-inner { align-items: flex-start; }
  nav { justify-content: flex-start; gap: 1rem; }
  .topic-grid, .about-grid, .quotes { grid-template-columns: 1fr; }
  .about-grid > div + div { padding-left: 0; padding-top: 2rem; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .wrap { width: min(calc(100% - 2rem), var(--max)); }
  h1 { font-size: clamp(2.9rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  nav { gap: .75rem; }
  nav a { font-size: .73rem; }
  .topic, blockquote { padding-inline: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* =========================================================
   Cookie consent
   ========================================================= */

   .cookie-banner {
    position: fixed;
    z-index: 10000;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 720px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    background: #fff;
    color: #222;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
  }
  
  .cookie-banner[hidden] {
    display: none;
  }
  
  .cookie-banner h2 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
  }
  
  .cookie-banner p {
    margin: 0 0 1rem;
  }
  
  .cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  
  .cookie-actions button {
    padding: 0.65rem 1rem;
    border: 1px solid currentColor;
    border-radius: 5px;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
  }
  
  .cookie-actions .cookie-accept {
    background: #222;
    color: #fff;
    border-color: #222;
  }
  
  .cookie-actions button:hover {
    opacity: 0.8;
  }
  
  .footer-cookie-settings {
    margin-right: 1rem;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
  }
  
  @media (max-width: 600px) {
    .cookie-banner {
      left: 0.75rem;
      right: 0.75rem;
      bottom: 0.75rem;
      padding: 1rem;
    }
  
    .cookie-actions {
      flex-direction: column;
    }
  
    .cookie-actions button {
      width: 100%;
    }
  }
  