/* Atelier des Ombres — modern redesign
   Design system: warm gallery palette, Playfair Display + Inter,
   fluid type scale, soft shadows, smooth micro-interactions. */

:root {
  --ink: #17130f;
  --ink-soft: #4a4139;
  --paper: #faf7f2;
  --paper-alt: #f1e9db;
  --paper-card: #ffffff;
  --accent: #b8752f;
  --accent-dark: #8f5a22;
  --accent-soft: #efdcc0;
  --gold: #d9a441;
  --gold-soft: #f6e6c3;
  --line: rgba(27, 22, 17, 0.1);
  --shadow-sm: 0 2px 8px rgba(27, 22, 17, 0.06);
  --shadow-md: 0 12px 32px rgba(27, 22, 17, 0.1);
  --shadow-lg: 0 24px 60px rgba(27, 22, 17, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --content-width: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

.wrap {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

/* ---------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding: 0.6rem 0.15rem;
  margin: -0.6rem -0.15rem;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}

.link-arrow:hover {
  gap: 0.7rem;
  color: var(--accent-dark);
}

/* Inline links within running text (prose paragraphs, dark cards) —
   simple underline, no tap-target padding. .link-arrow is for standalone
   CTA-style links only; using it mid-sentence stretches its box across
   the line. */
.text-link {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.15em;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.text-link:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--accent-dark);
}

.text-link.is-on-dark {
  color: var(--paper);
  text-decoration-color: rgba(250, 247, 242, 0.6);
}

.text-link.is-on-dark:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ---------------------------------------------------------- Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.nav__brand img {
  height: 42px;
  width: auto;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  position: relative;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right 0.28s var(--ease);
}

.nav__link:hover, .nav__link[aria-current="page"] {
  color: var(--ink);
}

.nav__link:hover::after, .nav__link[aria-current="page"]::after {
  right: 0;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper-card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}

.nav__toggle span::before, .nav__toggle span::after {
  position: absolute;
  left: 0;
}

.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

.nav__toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 8vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__overlay a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  text-decoration: none;
  color: var(--ink);
}

.nav__overlay a[aria-current="page"] {
  color: var(--accent-dark);
  font-style: italic;
}

.nav__overlay-cta {
  margin-top: 1rem;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--paper) !important;
  background: var(--ink);
  padding: 1rem 1.75rem;
  border-radius: 999px;
}

.nav__cta {
  padding: 0.65rem 1.35rem;
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
}

/* ---------------------------------------------------------- Stat chips */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-chip {
  background: var(--paper-card);
  padding: clamp(1.25rem, 3vw, 1.75rem) 1rem;
  text-align: center;
}

.stat-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--accent-dark);
}

.stat-chip span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 700px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------- Instructor spotlight */
.spotlight {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.spotlight__media {
  position: relative;
}

.spotlight__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.spotlight__badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}

.spotlight__badge strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
}

.spotlight__badge span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: rgba(23, 19, 15, 0.72);
}

.spotlight__body p {
  color: var(--ink-soft);
}

.spotlight__body p + p {
  margin-top: 1rem;
}

.spotlight__credits {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.spotlight__credits span {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

@media (max-width: 860px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__badge { right: 1rem; }
}

/* ---------------------------------------------------------- Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
  flex-grow: 1;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-card__meta cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card__years {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--gold-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

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

/* ---------------------------------------------------------- Instagram-style gallery teaser */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.insta-grid.is-five {
  grid-template-columns: repeat(5, 1fr);
}

.insta-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.insta-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 11, 7, 0.45), rgba(15, 11, 7, 0) 55%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.insta-grid a:hover img {
  transform: scale(1.08);
}

.insta-grid a:hover::after {
  opacity: 1;
}

@media (max-width: 860px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------------------------------- Expo spotlight (youth hook) */
.expo-spotlight {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.expo-spotlight__media {
  position: relative;
}

.expo-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expo-spotlight__body {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expo-spotlight__tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.expo-spotlight__body h2 {
  color: var(--paper);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-style: italic;
}

.expo-spotlight__body p {
  margin-top: 1rem;
  color: rgba(250, 247, 242, 0.78);
  max-width: 42ch;
}

.expo-spotlight__body .btn {
  margin-top: 1.75rem;
  align-self: flex-start;
}

@media (max-width: 860px) {
  .expo-spotlight { grid-template-columns: 1fr; }
  .expo-spotlight__media { height: 260px; }
}

/* ---------------------------------------------------------- Final CTA banner */
.final-cta {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-style: italic;
  max-width: 18ch;
  margin: 0 auto;
}

.final-cta p {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------------------------------------------------------- Hero (home) */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 11, 7, 0.4) 0%, rgba(15, 11, 7, 0.42) 40%, rgba(15, 11, 7, 0.88) 100%);
}

.hero__content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.hero__eyebrow {
  color: var(--accent-soft);
}

.hero__eyebrow::before {
  background: var(--accent-soft);
}

.hero h1 {
  margin-top: 1rem;
  text-align: center;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  font-style: italic;
  font-weight: 500;
  color: #fff;
}

.hero__sub {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  border-color: #fff;
}

/* ---------------------------------------------------------- Page hero (inner pages) */
.page-hero {
  position: relative;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  height: min(62vh, 560px);
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 11, 7, 0.72) 0%, rgba(15, 11, 7, 0) 55%);
}

.page-hero__card {
  position: absolute;
  left: clamp(1.25rem, 6vw, 4rem);
  right: clamp(1.25rem, 6vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 640px;
  color: #fff;
  z-index: 1;
}

.page-hero__card .eyebrow {
  color: var(--accent-soft);
}

.page-hero__card .eyebrow::before {
  background: var(--accent-soft);
}

.page-hero__card h1 {
  margin-top: 0.75rem;
  color: #fff;
  font-size: clamp(1.9rem, 4.4vw, 2.75rem);
  font-style: italic;
  font-weight: 500;
}

.page-hero__card p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  max-width: 46ch;
}

/* ---------------------------------------------------------- Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section--alt {
  background: var(--paper-alt);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 600;
}

.prose {
  max-width: 66ch;
}

.prose p + p {
  margin-top: 1.1rem;
}

.prose strong, .prose .highlight {
  font-weight: 700;
  color: var(--ink);
}

/* ---------------------------------------------------------- Feature (image + text alternating) */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature--reverse .feature__media {
  order: 2;
}

.feature__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature__body .eyebrow {
  margin-bottom: 0.5rem;
}

.feature__body h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin-bottom: 1rem;
}

.feature__body p {
  color: var(--ink-soft);
}

.feature__body .link-arrow, .feature__body .btn {
  margin-top: 1.5rem;
}

@media (max-width: 860px) {
  .feature, .feature--reverse {
    grid-template-columns: 1fr;
  }
  .feature--reverse .feature__media {
    order: 0;
  }
}

/* ---------------------------------------------------------- Story / quote block */
.story-media {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-media img {
  width: 100%;
  display: block;
}

/* ---------------------------------------------------------- Cards / quote / CTA */
.quote-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cta-card {
  text-align: center;
  background: linear-gradient(145deg, var(--ink) 0%, #2b2117 100%);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 3.5rem);
}

.cta-card p.cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  max-width: 32ch;
  margin: 0 auto 1.75rem;
}

/* ---------------------------------------------------------- Advantages list */
.check-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.check-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--ink-soft);
}

.check-list li strong {
  color: var(--ink);
}

.check-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------------------------------------------------------- Schedule table */
.schedule {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.schedule__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
}

.schedule__row:nth-child(even) {
  background: var(--paper-alt);
}

.schedule__row dt {
  font-weight: 600;
}

.schedule__row dd {
  margin: 0;
  color: var(--ink-soft);
  text-align: right;
}

/* ---------------------------------------------------------- FAQ */
.faq {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-card);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq__icon::before { width: 10px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 10px; }

.faq__item.is-open .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq__panel-inner {
  overflow: hidden;
}

.faq__panel-inner p {
  padding: 0 1.4rem 1.25rem;
  margin: 0;
  color: var(--ink-soft);
}

.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
}

/* ---------------------------------------------------------- Gallery + lightbox */
/* Asymmetric "photo wall" bento layout on desktop: a mix of square, wide
   and large tiles via .is-wide / .is-large on individual items. Collapses
   to a plain uniform square grid on mobile — see media query below. */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 15vw, 210px);
  grid-auto-flow: dense;
  gap: 4px;
}

.gallery__item {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery__item.is-wide {
  grid-column: span 2;
}

.gallery__item.is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 11, 7, 0.45), rgba(15, 11, 7, 0) 55%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item .zoom-icon,
.insta-grid a .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.95);
  box-shadow: var(--shadow-sm);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317130f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='10' r='6'/%3E%3Cline x1='10' y1='7' x2='10' y2='13'/%3E%3Cline x1='7' y1='10' x2='13' y2='10'/%3E%3Cline x1='14.5' y1='14.5' x2='20' y2='20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.gallery__item:hover .zoom-icon,
.insta-grid a:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 760px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: unset;
  }
  .gallery__item {
    aspect-ratio: 1 / 1;
  }
  .gallery__item.is-wide,
  .gallery__item.is-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 11, 7, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  padding: clamp(1rem, 5vw, 3rem);
}

.lightbox.is-visible {
  opacity: 1;
}

.lightbox__figure {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox__count {
  margin-top: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.lightbox__btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.25s var(--ease);
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__prev { left: clamp(0.75rem, 3vw, 2.5rem); }
.lightbox__next { right: clamp(0.75rem, 3vw, 2.5rem); }

.lightbox__close {
  position: fixed;
  top: clamp(0.75rem, 3vw, 2rem);
  right: clamp(0.75rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ---------------------------------------------------------- Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--paper-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon img {
  width: 18px;
  height: 18px;
}

.contact-info a {
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--accent-dark);
}

/* Modern form: floating labels + live validation states */
.form {
  position: relative;
}

.field {
  position: relative;
  margin-bottom: 1.35rem;
}

.field input, .field textarea {
  width: 100%;
  padding: 1.25rem 1rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--paper-card);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--paper-card);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.field label {
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  color: var(--ink-soft);
  font-size: 1rem;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease), top 0.2s var(--ease);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0.5rem;
  transform: scale(0.78);
  color: var(--accent-dark);
}

.field--select label {
  position: static;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transform: none;
}

.field__error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #b3402a;
}

.field.is-invalid input, .field.is-invalid textarea {
  border-color: #b3402a;
}

.field.is-invalid .field__error {
  display: block;
}

.form__submit {
  width: 100%;
  border: none;
  position: relative;
}

.form__submit .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(250, 247, 242, 0.4);
  border-top-color: var(--paper);
  animation: spin 0.7s linear infinite;
}

.form__submit.is-loading .spinner {
  display: inline-block;
}

.form__submit.is-loading .form__submit-label {
  opacity: 0.6;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form__success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--paper-alt);
}

.form__success.is-visible {
  display: block;
}

.form__success .check-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.form__success h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.form__success p {
  color: var(--ink-soft);
  margin: 0;
}

.map-frame {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

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

/* ---------------------------------------------------------- Legal page */
.legal h2 {
  font-size: 1.3rem;
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.legal p + p {
  margin-top: 0.85rem;
}

.legal ul {
  margin-top: 0.85rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal li {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.legal .effective-date {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.legal a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.15em;
}

.legal a:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--accent-dark);
}

/* ---------------------------------------------------------- Newsletter strip */
.newsletter {
  background: var(--paper-alt);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.newsletter__copy h2 {
  font-size: 1.3rem;
}

.newsletter__copy p {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper-card);
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-width: 220px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* ---------------------------------------------------------- Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.footer a:hover {
  color: var(--accent-dark);
}

/* ---------------------------------------------------------- Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
