/* ============================================================
   Secret Garden Therapy — shared stylesheet
   Refined organic minimalism. Calm, airy, nature-forward.
   ============================================================ */

/* ---- Tokens ------------------------------------------------ */
:root {
  /* Brand (from brief — use exactly) */
  --teal: #2ABCBC;          /* accents, large display, decorative fills only */
  --teal-deep: #1E8E8E;     /* large headings / borders on light */
  --ink: #2E3A3A;           /* body text */
  --cream: #FAF8F3;         /* page background */
  --sage: #EAF1EC;          /* alt section background */
  --white: #FFFFFF;

  /* Derived for AA text contrast (teal/teal-deep fail as body text) */
  --teal-700: #147A78;      /* links + buttons (white text passes AA) */
  --teal-800: #0E5F5E;      /* hover/active */
  --ink-soft: #586565;      /* muted captions/meta */
  --line: #DCE6DF;          /* hairline dividers */

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-base: clamp(1.0625rem, 1.0rem + 0.25vw, 1.125rem);   /* 17 → 18 */
  --text-lead: clamp(1.1875rem, 1.05rem + 0.5vw, 1.375rem);
  --h1: clamp(2.75rem, 1.8rem + 4.2vw, 5rem);
  --h2: clamp(2rem, 1.5rem + 2vw, 3rem);
  --h3: clamp(1.5rem, 1.3rem + 0.8vw, 1.875rem);

  /* Space */
  --space-section: clamp(3.5rem, 2.5rem + 5vw, 6.5rem);   /* 56 → 104 */
  --content-max: 1100px;
  --prose-max: 68ch;
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --dur: 320ms;
  --dur-slow: 700ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Depth */
  --shadow-sm: 0 2px 10px rgba(46, 58, 58, 0.05);
  --shadow-md: 0 14px 40px -18px rgba(30, 90, 90, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(30, 90, 90, 0.38);
}

/* ---- Reset / base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a { color: var(--teal-700); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--teal-800); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0.01em;
}

::selection { background: rgba(42, 188, 188, 0.22); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--teal-700);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: -64px; transform: translateX(-50%);
  background: var(--teal-800); color: #fff; padding: 0.65rem 1.25rem;
  border-radius: 0 0 12px 12px; z-index: 200; transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---- Layout helpers --------------------------------------- */
.container { width: 100%; max-width: var(--content-max); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.section { padding-block: var(--space-section); }
.section--sage { background: var(--sage); }
.section--cream { background: var(--cream); }
.prose { max-width: var(--prose-max); margin-inline: auto; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal-700); margin-bottom: 1rem;
}
.lead { font-size: var(--text-lead); line-height: 1.6; color: var(--ink); }
.muted { color: var(--ink-soft); }

.h-rule {
  width: 64px; height: 1px; border: 0; margin: 1.75rem auto;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.h-rule--left { margin-inline: 0; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em; line-height: 1;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--teal-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--teal-800); color: #fff; box-shadow: var(--shadow-lg); }

.btn--outline { background: transparent; color: var(--teal-800); border-color: var(--teal-deep); }
.btn--outline:hover { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }

.btn--cream { background: var(--cream); color: var(--teal-800); box-shadow: var(--shadow-md); }
.btn--cream:hover { background: #fff; color: var(--teal-800); box-shadow: var(--shadow-lg); }

.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.textlink {
  font-family: var(--font-body); font-weight: 600; color: var(--teal-700);
  display: inline-flex; align-items: center; gap: 0.4em;
}
.textlink .arrow { transition: transform var(--dur) var(--ease); }
.textlink:hover .arrow { transform: translateX(4px); }

/* ---- Header / nav ----------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
/* Header gets its own wider container so logo + nav anchor near the screen edges */
.site-header .container { max-width: 1340px; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 0.55rem; min-height: 56px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 64px; width: auto; }

/* Wrapper holding nav links + CTA — single centered row on desktop */
.nav-menu { display: flex; align-items: center; gap: 2rem; }

.nav-links {
  display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem);
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  color: var(--ink); letter-spacing: 0.01em; position: relative; padding-block: 0.35rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--teal); transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--teal-800); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--teal-800); }

.nav-cta { margin-left: 0.25rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; border-radius: 10px;
}
.nav-toggle:hover { background: rgba(42, 188, 188, 0.1); }
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  /* The header's backdrop-filter creates a containing block for position:fixed,
     which would collapse the off-canvas panel into the header bar. Drop it on mobile. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { display: block; position: relative; z-index: 130; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--cream); box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 0; padding: 6rem 2.25rem 2.25rem;
    transform: translateX(100%); transition: transform var(--dur-slow) var(--ease);
    z-index: 110;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 0; font-size: 1.2rem; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 1.5rem 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(30, 58, 58, 0.4);
    opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur);
    z-index: 90;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
}

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative; min-height: 84vh; display: flex; align-items: center;
  isolation: isolate; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Mostly-neutral dark scrim: soft plate behind the centered text, crisp meadow elsewhere */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(78% 62% at 50% 50%, rgba(14, 22, 22, 0.60) 0%, rgba(14, 22, 22, 0.34) 50%, rgba(14, 22, 22, 0.06) 80%, transparent 100%),
    linear-gradient(180deg, rgba(14, 22, 22, 0.34) 0%, rgba(14, 22, 22, 0.06) 24%, transparent 50%, rgba(14, 22, 22, 0.30) 100%),
    radial-gradient(120% 90% at 50% 116%, rgba(20, 122, 120, 0.18), transparent 60%);
}
.hero__inner { width: 100%; padding-block: clamp(5rem, 12vh, 8rem); }
.hero__content { max-width: 760px; margin-inline: auto; text-align: center; color: #fff; }
.hero__mark {
  width: clamp(56px, 7vw, 82px); height: auto; margin: 0 auto 1.4rem;
  filter: drop-shadow(0 3px 16px rgba(8, 28, 28, 0.55));
}
.hero__cta { display: flex; justify-content: center; }
.hero h1 {
  color: #fff; font-size: var(--h1); font-weight: 500; line-height: 1.04;
  letter-spacing: 0.005em; text-shadow: 0 2px 28px rgba(8, 40, 40, 0.45);
}
.hero__tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.35rem, 1rem + 1.6vw, 2rem); font-weight: 500;
  color: #EAFBFB; margin-top: 1rem; text-shadow: 0 2px 18px rgba(8, 40, 40, 0.5);
}
.hero__cta { margin-top: 2.25rem; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.75rem; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 38px;
  background: linear-gradient(var(--teal), transparent);
  animation: scrollpulse 2.4s var(--ease) infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---- Page header (interior pages) ------------------------- */
.page-head { padding-block: clamp(3rem, 4rem, 6rem) clamp(1rem, 2vw, 2rem); text-align: center; }
.page-head h1 { font-size: var(--h2); }
.page-head p { margin-top: 0.75rem; }

/* ---- Section heading -------------------------------------- */
.section-head { max-width: 60ch; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head h2 { font-size: var(--h2); }
.section-head p { margin-top: 1rem; }

/* ---- Intro / prose ---------------------------------------- */
.intro p { font-size: var(--text-lead); line-height: 1.7; }
.intro .textlink { margin-top: 1.75rem; }

/* ---- Pull quote ------------------------------------------- */
.pullquote { max-width: 30ch; margin-inline: auto; text-align: center; position: relative; }
.pullquote::before {
  content: "\201C"; font-family: var(--font-display); color: var(--teal);
  font-size: 6rem; line-height: 0.6; display: block; margin-bottom: 0.5rem; opacity: 0.5;
}
.pullquote blockquote {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); line-height: 1.3; color: var(--teal-deep);
}

/* ---- Offering cards --------------------------------------- */
.cards { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.4rem); display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-deep)); transform: scaleX(0);
  transform-origin: left; transition: transform var(--dur-slow) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 44px; height: 44px; color: var(--teal-deep); margin-bottom: 1.25rem; }
.card__icon svg { width: 100%; height: 100%; }
.card h2 { font-size: var(--h3); margin-bottom: 0.5rem; }
.card__meta { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.25rem; }
.card__foot { margin-top: auto; padding-top: 1rem; }

/* ---- Closing CTA band ------------------------------------- */
.cta-band {
  position: relative; text-align: center; color: var(--ink);
  background: linear-gradient(135deg, #34C7C7 0%, var(--teal) 50%, #36CACA 100%);
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 60% at 50% -10%, rgba(255,255,255,0.4), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band .eyebrow { color: var(--teal-800); }
.cta-band h2 { font-size: var(--h2); color: var(--ink); }
.cta-band p { color: #143F3F; margin-top: 0.75rem; font-size: var(--text-lead); }
.cta-band .btn { margin-top: 2rem; }

/* ---- About: portrait + bio -------------------------------- */
.about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
}
.portrait picture { display: block; width: 100%; height: 100%; }
.portrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.bio h1 { font-size: var(--h2); }
.bio .credentials { color: var(--teal-700); font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; margin-top: 0.5rem; }
.bio p { margin-top: 1.25rem; }
.bio .btn { margin-top: 2rem; }

/* ---- Fees ------------------------------------------------- */
.fees-list { display: grid; gap: 1.1rem; max-width: 860px; margin-inline: auto; }
.fee {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem 2rem; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 1.9rem) clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fee:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fee__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.fee__name span { display: block; font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--ink-soft); margin-top: 0.2rem; letter-spacing: 0.01em; }
.fee__price { text-align: right; font-weight: 600; color: var(--teal-800); font-size: 1.05rem; max-width: 22ch; }
.fees-note { text-align: center; margin-top: 2.5rem; font-size: var(--text-lead); color: var(--ink-soft); }

/* ---- Locations -------------------------------------------- */
.locations { display: flex; flex-direction: column; gap: clamp(3.5rem, 7vw, 6rem); }
.loc {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.loc:nth-child(even) .loc__media { order: 2; }
.loc__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.loc__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 7 / 5; }
.loc--portrait .loc__media img { aspect-ratio: 4 / 5; }
.loc__body h2 { font-size: var(--h3); }
.loc__body .place { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-700); display: block; margin-bottom: 0.6rem; }
.loc__body p { margin-top: 1rem; max-width: 52ch; }

/* ---- Workshops -------------------------------------------- */
.status-pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--sage); color: var(--teal-800); border: 1px solid var(--line);
  font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em;
  padding: 0.45rem 1rem; border-radius: 999px;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(42,188,188,0.2); }
.workshop {
  max-width: 820px; margin-inline: auto; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 4vw, 3.25rem); box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.workshop::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--teal), var(--teal-deep));
}
.workshop h2 { font-size: var(--h3); }
.workshop > p { margin-top: 1.25rem; }
.workshop h3 { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; color: var(--teal-800); margin-top: 2rem; }
.outcomes { list-style: none; padding: 0; margin-top: 1.25rem; display: grid; gap: 0.85rem; }
.outcomes li { position: relative; padding-left: 2rem; }
.outcomes li::before {
  content: ""; position: absolute; left: 0; top: 0.6em; width: 12px; height: 12px;
  border-radius: 0 50% 50% 50%; background: var(--teal); transform: rotate(45deg); opacity: 0.85;
}
.workshop__foot { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between; }
.tuition { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--ink); }

/* ---- Contact ---------------------------------------------- */
.contact-card { max-width: 640px; margin-inline: auto; text-align: center; }
.contact-card p { font-size: var(--text-lead); }
.contact-card .email-btn { margin-block: 2rem; font-size: 1.05rem; }
.contact-card .sign { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--teal-deep); margin-top: 2rem; }
.contact-card .sign span { display: block; }
.contact-meta { margin-top: 2.5rem; color: var(--ink-soft); font-size: 0.95rem; letter-spacing: 0.04em; }

/* ---- Footer ----------------------------------------------- */
.site-footer { background: var(--sage); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 2rem 3rem; align-items: start; justify-content: space-between; }
.footer-brand img { width: 168px; }
.footer-brand .tagline { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--teal-800); margin-top: 1rem; max-width: 30ch; }
.site-footer a { color: var(--teal-800); }
.site-footer a:hover { color: var(--ink); }
.footer-col .footer-h { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.85rem; }
.footer-col p, .footer-col a { font-size: 0.98rem; line-height: 1.9; }
.footer-col .credentials { color: var(--ink); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center; color: var(--ink-soft); font-size: 0.85rem; }

/* ---- Scroll reveal (progressive enhancement) -------------- */
/* Content is fully visible without JS; only hidden once .js is set. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .portrait { max-width: 380px; margin-inline: auto; }
  .loc, .loc:nth-child(even) .loc__media { grid-template-columns: 1fr; }
  .loc:nth-child(even) .loc__media { order: 0; }
  .loc__media { max-width: 560px; margin-inline: auto; width: 100%; }
}
@media (max-width: 560px) {
  .fee { grid-template-columns: 1fr; }
  .fee__price { text-align: left; }
  .workshop__foot { flex-direction: column; align-items: flex-start; }
}

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