:root {
  --ink: #050b0a;
  --deep: #061c18;
  --green: #0b3b32;
  --teal: #12a994;
  --teal-soft: #6be3d0;
  --gold: #d8a637;
  --gold-light: #f0cd78;
  --cream: #f2ead6;
  --muted: #b9b2a2;
  --line: rgba(216, 166, 55, .24);
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Trebuchet MS', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; }
h2 { font-size: clamp(2.2rem, 4.3vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.55rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; transform: translateY(-150%); background: var(--gold); color: #111; padding: .6rem 1rem; border-radius: 2px; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(5, 11, 10, .92); backdrop-filter: blur(16px); border-color: var(--line); padding-block: .7rem; }
.brand, .footer-brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand span, .footer-brand span { display: grid; line-height: 1.05; }
.brand strong { font: 600 1.12rem/1 var(--serif); letter-spacing: .04em; text-transform: uppercase; }
.brand small, .footer-brand small { margin-top: .28rem; color: var(--gold-light); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2.3rem); }
nav a { text-decoration: none; font-size: .83rem; letter-spacing: .08em; text-transform: uppercase; }
nav a:not(.nav-cta) { color: rgba(242,234,214,.78); }
nav a:hover, nav a:focus-visible { color: var(--gold-light); }
.nav-cta { padding: .65rem 1rem; border: 1px solid var(--gold); color: var(--gold-light); }
.menu-toggle { display: none; border: 0; background: none; padding: .6rem; }
.menu-toggle > span:not(.sr-only) { display: block; width: 27px; height: 2px; background: var(--cream); margin: 5px 0; transition: transform .25s, opacity .25s; }

.hero {
  position: relative;
  overflow: hidden;
  background: #030908;
}
.hero-image { width: 100%; height: auto; }
.hero-signature {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.hero-signature span { font: 500 clamp(1.4rem, 2.7vw, 2rem)/1 var(--serif); letter-spacing: .02em; }
.hero-signature strong { color: var(--gold-light); font-size: .76rem; letter-spacing: .17em; text-transform: uppercase; text-align: right; }
.eyebrow, .section-kicker { color: var(--gold-light); font-size: .76rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .78rem 1.3rem; text-decoration: none; border: 1px solid transparent; font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #0c110f; }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(242,234,214,.45); color: var(--cream); background: rgba(0,0,0,.16); }
.button-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.section { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; padding: clamp(4.5rem, 8vw, 7rem) 0; }
.manifesto { border-bottom: 1px solid var(--line); }
.manifesto-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.manifesto-title h1 { margin: 1rem 0 0; font-size: clamp(3.2rem, 6.2vw, 5.9rem); letter-spacing: -.055em; }
.manifesto-title h1 em { color: var(--gold-light); font-style: italic; }
.manifesto-title > p { margin: .65rem 0 0; color: var(--teal-soft); font: italic clamp(1.55rem, 3vw, 2.4rem)/1.2 var(--serif); }
.manifesto .lead, .about .lead { color: var(--teal-soft); font: italic 1.55rem/1.4 var(--serif); }
.manifesto-grid > div:not(.manifesto-title) p:not(.lead) { color: var(--muted); }
.manifesto-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.appointment-note { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); color: var(--cream) !important; }
.appointment-note span { color: var(--gold); margin-right: .5rem; }

.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { color: var(--muted); margin-bottom: .4rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 265px; position: relative; padding: 1.8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(11,59,50,.12), rgba(0,0,0,0)); transition: background .25s, transform .25s; }
.service-card:hover { background: rgba(11,59,50,.3); transform: translateY(-4px); }
.service-card.featured { background: linear-gradient(145deg, rgba(11,59,50,.7), rgba(6,28,24,.25)); }
.service-number { color: var(--gold); font: italic 1rem var(--serif); }
.service-card h3 { margin: 3.8rem 0 .8rem; }
.service-card p { color: var(--muted); font-size: .94rem; margin: 0; }
.service-card-wide { grid-column: 1 / -1; min-height: 0; display: grid; grid-template-columns: 70px minmax(240px, .75fr) 1.25fr; gap: 1.25rem; align-items: center; }
.service-card-wide h3 { margin: 0; }

.projects { width: auto; max-width: none; padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2)); background: var(--deep); border-block: 1px solid var(--line); }
.projects-heading { width: min(var(--max), 100%); margin-inline: auto; }
.project-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.project-card { position: relative; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; background: #020706; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card-hobbit img { filter: saturate(1.18) contrast(1.08) brightness(1.04); }
.project-card:hover img { transform: scale(1.025); }
.project-card::after { content: ''; position: absolute; inset: 24% 0 0; background: linear-gradient(transparent, rgba(1,5,4,.94)); pointer-events: none; }
.project-card figcaption { position: absolute; z-index: 1; left: 1.3rem; right: 1.3rem; bottom: 1.1rem; display: grid; gap: .18rem; }
.project-card figcaption strong { font: 500 clamp(1.15rem, 2vw, 1.4rem)/1.16 var(--serif); }
.project-card figcaption span { color: rgba(242,234,214,.78); font-size: .8rem; line-height: 1.42; }
.project-card-map { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
.book-feature { width: min(var(--max), 100%); margin: clamp(4.5rem, 8vw, 7rem) auto 0; padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.book-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem 4rem; align-items: end; margin-bottom: 2.5rem; }
.book-heading .section-kicker { grid-column: 1 / -1; margin-bottom: 0; }
.book-heading h3 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.8rem); letter-spacing: -.035em; }
.book-heading > p:last-child { color: var(--muted); margin: 0; }
.story-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.story-card { aspect-ratio: auto; display: flex; flex-direction: column; }
.story-card img { height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
.story-card-wide { grid-column: 1 / -1; }
.story-card-wide img { aspect-ratio: 2048 / 775; object-fit: cover; }
.story-card::after { display: none; }
.story-card figcaption { position: static; min-height: 130px; padding: 1.2rem 1.3rem 1.35rem; background: linear-gradient(135deg, rgba(11,59,50,.42), rgba(2,7,6,.94)); }
.tutor-panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); margin-top: 1rem; padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(216,166,55,.42); background: radial-gradient(circle at 80% 20%, rgba(18,169,148,.14), transparent 38%), rgba(3,14,12,.62); }
.tutor-panel h3 { margin: .7rem 0 0; font-size: clamp(2rem, 3.5vw, 3.2rem); }
.tutor-panel > div:last-child { align-self: center; }
.tutor-panel > div:last-child p { color: var(--muted); }
.tutor-panel .button { margin-top: .7rem; }
.event-feature { display: grid; grid-template-columns: minmax(300px, .82fr) 1.18fr; margin-top: 1rem; border: 1px solid var(--line); background: #071713; }
.event-photo { min-height: 480px; overflow: hidden; }
.event-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-copy { align-self: center; padding: clamp(2rem, 5vw, 4.5rem); }
.event-copy h3 { margin: .7rem 0 1.2rem; font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -.035em; }
.event-copy > p:not(.section-kicker) { color: var(--muted); }
.event-tags { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 1.5rem 0 2rem; padding: 0; }
.event-tags li { padding: .42rem .7rem; border: 1px solid rgba(216,166,55,.32); color: var(--gold-light); font-size: .78rem; letter-spacing: .04em; }
.text-link { color: var(--gold-light); text-underline-offset: .3rem; }
.projects-link { display: block; width: min(var(--max), 100%); margin: 2rem auto 0; }

.section-heading.compact { margin-bottom: 2.5rem; }
.steps { counter-reset: steps; list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 120px 1fr; align-items: start; padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.step-number { color: var(--gold); font: italic 3.2rem/1 var(--serif); }
.steps h3 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: .45rem; }
.steps p { max-width: 670px; color: var(--muted); margin: 0; }

.pricing { background: linear-gradient(180deg, #071713 0%, #0a211c 100%); border-block: 1px solid var(--line); }
.pricing-shell { padding-block: clamp(4.5rem, 8vw, 7rem); }
.pricing-heading { align-items: start; }
.pricing-heading h2 { margin-top: .65rem; }
.pricing-intro p { color: var(--muted); }
.pricing-intro strong { color: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.price-card { min-height: 285px; padding: clamp(1.5rem, 3vw, 2.4rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(3, 14, 12, .45); }
.price-card-free, .price-card-project { background: linear-gradient(145deg, rgba(11,59,50,.72), rgba(3,14,12,.58)); }
.price-label { min-height: 2.6rem; margin-bottom: 1.15rem; color: var(--gold-light); font-size: .78rem; font-weight: 700; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.price { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; margin-bottom: 1.1rem; border-bottom: 1px solid rgba(216,166,55,.2); }
.price strong { font: 500 clamp(2rem, 4vw, 3.25rem)/1 var(--serif); letter-spacing: -.035em; }
.price span { color: var(--teal-soft); font: italic .95rem var(--serif); text-align: right; }
.price-card > p:last-child { color: var(--muted); margin: 0; }
.pricing-note { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: clamp(1.5rem, 3vw, 2.4rem); border: 1px solid rgba(216,166,55,.42); border-top: 0; }
.pricing-note p { max-width: 790px; margin: 0; color: var(--muted); }
.pricing-note strong { color: var(--cream); }

.about { display: grid; grid-template-columns: minmax(360px,.82fr) 1.18fr; background: #0a211c; overflow: hidden; }
.about-photo { min-height: 620px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-copy { align-self: center; max-width: 730px; padding: clamp(4rem, 7vw, 7rem); }
.about-copy h2 { font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.about-copy p:not(.section-kicker):not(.lead) { color: var(--muted); }

.contact { padding-block: clamp(5rem, 10vw, 8rem); }
.contact-shell { position: relative; padding: clamp(2.5rem, 7vw, 6rem); border: 1px solid rgba(216,166,55,.45); background: radial-gradient(circle at 85% 15%, rgba(18,169,148,.16), transparent 38%), linear-gradient(145deg, #09251f, #050b0a 65%); }
.contact-shell::before, .contact-shell::after { content: '✦'; position: absolute; color: var(--gold); font-size: 1.2rem; background: var(--ink); padding: 0 .8rem; }
.contact-shell::before { top: -.8rem; left: 8%; }
.contact-shell::after { bottom: -.8rem; right: 8%; }
.contact h2 { margin: .6rem 0 1.2rem; font-size: clamp(3rem, 6vw, 5.6rem); }
.contact-shell > p:not(.section-kicker) { max-width: 650px; color: var(--muted); }
.contact-details { display: flex; flex-wrap: wrap; gap: 1.1rem 2.4rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--gold-light); font: italic 1rem var(--serif); }

footer { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: center; padding: 2.5rem 0 1.5rem; border-top: 1px solid var(--line); }
.footer-brand { font-family: var(--serif); text-decoration: none; }
.footer-brand img { width: 46px; }
footer > p { color: var(--muted); font-size: .8rem; margin: 0; }
.footer-links { display: flex; gap: 1rem; }
.footer-links a { color: var(--gold-light); font-size: .8rem; }
.copyright { grid-column: 1 / -1; padding-top: 1.3rem; border-top: 1px solid rgba(216,166,55,.12); }

@media (max-width: 900px) {
  .site-header { padding-inline: 1.25rem; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav { position: fixed; inset: 0; display: grid; place-content: center; gap: 1.8rem; background: rgba(3,10,8,.98); text-align: center; transform: translateX(100%); transition: transform .28s; }
  nav.open { transform: translateX(0); }
  nav a { font: 500 1.7rem/1.1 var(--serif); text-transform: none; }
  .nav-cta { margin-top: 1rem; }
  .manifesto-grid, .section-heading, .about, .book-heading, .tutor-panel, .event-feature, .pricing-note { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-card-wide { grid-template-columns: 60px 1fr; }
  .service-card-wide p { grid-column: 2; }
  .story-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-card-wide { grid-column: 1 / -1; }
  .event-photo { min-height: 420px; }
  .about-photo { min-height: 520px; }
  .about-copy { max-width: none; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .brand span { display: none; }
  .hero { padding-top: 74px; }
  .hero-signature { display: grid; gap: .55rem; padding-block: 1.1rem; }
  .hero-signature strong { text-align: left; line-height: 1.5; }
  .manifesto-title h1 { font-size: clamp(3.25rem, 16vw, 4.7rem); }
  .manifesto-actions .button, .contact-actions .button { width: 100%; }
  .section { width: min(100% - 2rem, var(--max)); }
  .manifesto-grid { gap: 2rem; }
  .section-heading { gap: 1.2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .service-card h3 { margin-top: 3.3rem; }
  .service-card-wide { grid-column: auto; display: block; min-height: 280px; }
  .service-card-wide h3 { margin-top: 3.3rem; }
  .projects { padding-inline: 1rem; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 0; }
  .project-card-map { grid-column: auto; aspect-ratio: 16 / 9; }
  .story-gallery { grid-template-columns: 1fr; }
  .story-card-wide { grid-column: auto; }
  .story-card figcaption { min-height: 0; }
  .event-photo { min-height: 0; aspect-ratio: 1 / 1; }
  .steps li { grid-template-columns: 55px 1fr; gap: 1rem; }
  .step-number { font-size: 2.4rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .price-label { min-height: 0; }
  .about-photo { min-height: 390px; }
  .about-copy { padding: 4rem 1rem; }
  .contact-shell { padding-inline: 1.4rem; }
  .contact-details { display: grid; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
