/* =========================================================
   Mistress Michelle — single-page dark theme
   Palette carried from legacy WP: teal #154147, cyan #6ad1d6,
   pale cyan text #c2f0f4, muted grey-green #a8b0a9.
   ========================================================= */

:root {
  --bg-deep:   #0b1416;
  --bg-dark:   #152024;
  --bg-panel:  #1c2a2e;
  --bg-teal:   #154147;
  --bg-teal-2: #003d40;

  --accent:         #6ad1d6;
  --accent-bright:  #7ee6ea;
  --accent-dim:     #5eadb0;
  --accent-pale:    #c2f0f4;

  --text:       #e8f4f5;
  --text-muted: #a8b0a9;
  --text-dim:   #7a8a8c;

  --danger: #b84a4a;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.65);

  --max: 1200px;
  --gutter: 24px;
  --header-h: 72px;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* ===== RESET / BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
html.age-locked, html.age-locked body { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-bright); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; margin: 0 0 .4em; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.1em; }
li { margin-bottom: 0.35em; }
img { max-width: 100%; display: block; }

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: radial-gradient(ellipse at center, rgba(21,65,71,0.85) 0%, rgba(0,0,0,0.97) 80%);
  backdrop-filter: blur(6px);
  z-index: 10000;
  animation: fadeIn .3s ease;
}
.age-gate.open { display: flex; }
.age-gate__box {
  width: 100%; max-width: 560px;
  background: var(--bg-dark);
  border: 1px solid rgba(106, 209, 214, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 32px;
  text-align: center;
}
.age-gate__logo { width: 90px; height: auto; margin: 0 auto 16px; filter: drop-shadow(0 4px 12px rgba(106,209,214,0.3)); }
.age-gate h1 { color: var(--accent-bright); font-size: 2.2rem; margin-bottom: 14px; }
.age-gate p { color: var(--accent-pale); font-size: 1rem; margin-bottom: 22px; }
.age-gate__buttons { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 18px; }
.age-gate__btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
.age-gate__btn--accept {
  background: var(--accent); color: var(--bg-teal-2);
  box-shadow: 0 8px 24px rgba(106,209,214,0.25);
}
.age-gate__btn--accept:hover { background: var(--accent-bright); transform: translateY(-2px); }
.age-gate__btn--decline {
  background: transparent; color: var(--text-muted);
  border-color: rgba(168,176,169,0.4);
}
.age-gate__btn--decline:hover { color: var(--text); border-color: var(--text-muted); }
.age-gate__fine { font-size: 0.8rem; color: var(--text-dim); margin-top: 12px; }
.age-gate__fine a { color: var(--text-muted); text-decoration: underline; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11,20,22,0.85) 0%, rgba(11,20,22,0.4) 100%);
  backdrop-filter: blur(10px);
  transition: background .25s ease, height .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(11,20,22,0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  height: 60px;
}
.header-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo-link { display: inline-flex; align-items: center; }
.header-logo {
  height: 46px; width: auto;
  transition: height .25s ease, filter .2s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.site-header.scrolled .header-logo { height: 38px; }
.main-nav { display: flex; gap: 6px; }
.main-nav a {
  color: var(--accent-pale);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
}
.main-nav a:hover { color: var(--accent-bright); background: rgba(106,209,214,0.08); }

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
}
.hamburger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--accent-pale);
  transition: transform .3s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(11,20,22,0.98);
  backdrop-filter: blur(10px);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  z-index: 999;
  border-bottom: 1px solid rgba(106,209,214,0.15);
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu a {
  display: block;
  padding: 18px 24px;
  color: var(--accent-pale);
  border-bottom: 1px solid rgba(106,209,214,0.1);
  font-size: 1.05rem;
}
.mobile-menu a:hover { background: rgba(106,209,214,0.08); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) var(--gutter) 80px;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(21,65,71,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(94,173,176,0.15) 0%, transparent 55%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  filter: brightness(0.65) contrast(1.05);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, var(--bg-deep) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.hero__text { max-width: 640px; }
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 500;
}
.hero__title {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-pale) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(106,209,214,0.3);
  margin-bottom: 0.2em;
}
.hero__tagline {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero__welcome {
  color: var(--accent-bright);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.hero__intro {
  color: var(--accent-pale);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 55ch;
}
.hero__figure {
  display: flex;
  justify-content: center;
  align-self: end;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.hero__figure img {
  max-height: min(680px, 82vh);
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(106,209,214,0.25));
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 98%);
          mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 98%);
}

.cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: var(--bg-teal-2);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 30px rgba(106,209,214,0.25);
  text-transform: uppercase;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(106,209,214,0.4);
  color: var(--bg-teal-2);
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px var(--gutter);
  position: relative;
}
.section:nth-of-type(even) { background: var(--bg-dark); }
.section--services { background: var(--bg-dark); }
.section--about { background: linear-gradient(180deg, var(--bg-teal) 0%, var(--bg-dark) 100%); }
.section--gallery { background: var(--bg-deep); }
.section--reviews { background: var(--bg-dark); }
.section--taboos { background: var(--bg-teal); }
.section--extras { background: linear-gradient(135deg, var(--bg-teal-2) 0%, var(--bg-dark) 100%); }

.section-inner { max-width: var(--max); margin: 0 auto; }
.section-title {
  text-align: center;
  color: var(--accent-bright);
  margin-bottom: 10px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 18px auto 0;
}
.section-title--left { text-align: left; }
.section-title--left::after { margin-left: 0; }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 50px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.service-card {
  background: rgba(21,65,71,0.4);
  border: 1px solid rgba(106,209,214,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent-dim);
}
.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter .3s ease;
}
.service-card:hover .service-card__img { filter: brightness(1); }
.service-card h3 {
  padding: 20px 22px 0;
  color: var(--accent-bright);
  font-size: 1.4rem;
}
.service-card p {
  padding: 0 22px;
  color: var(--accent-pale);
  font-size: 0.95rem;
}
.service-card ul {
  padding-left: 40px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.service-card ul li::marker { color: var(--accent-dim); }

/* ===== ABOUT ===== */
.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}
.about-portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(106,209,214,0.2);
}
.about-text { color: var(--accent-pale); font-size: 1.02rem; }
.about-text p { margin-bottom: 1.1em; }
.about-text strong { color: var(--accent-bright); }

/* ===== GALLERY / REVIEWS ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

/* Swipeable reviews carousel — coverflow style */
.reviews-carousel {
  position: relative;
  margin-top: 40px;
  padding: 0 clamp(0px, 4vw, 56px);
}
.reviews-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 60px calc(50% - clamp(130px, 23vw, 180px)) 60px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-slide {
  flex: 0 0 auto;
  height: clamp(220px, 34vw, 340px);
  width: auto;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transform: scale(0.78);
  opacity: 0.5;
  filter: blur(2px);
  z-index: 1;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease, filter .4s ease;
}
.review-slide img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.55);
}
.review-slide--active {
  transform: scale(1.3);
  opacity: 1;
  filter: none;
  z-index: 3;
}
.review-slide--active img {
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.review-slide--active:hover { transform: scale(1.33); }

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(11,20,22,0.7);
  border: 1px solid rgba(106,209,214,0.3);
  color: var(--accent-pale);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s, color .2s, transform .2s;
}
.reviews-arrow:hover {
  background: var(--accent);
  color: var(--bg-teal-2);
}
.reviews-arrow--left  { left: 0; }
.reviews-arrow--right { right: 0; }
.reviews-arrow[disabled] { opacity: 0.25; cursor: not-allowed; }

.reviews-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 14px;
}
.reviews-dots__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(106,209,214,0.25);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.reviews-dots__dot.active {
  background: var(--accent-bright);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .reviews-carousel { padding: 0; }
  .reviews-arrow { display: none; }
  .review-slide { width: 78vw; }
}
.gallery-item {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid rgba(106,209,214,0.1);
  transition: transform .3s ease, border-color .3s ease;
}
.reviews-grid .gallery-item { aspect-ratio: 3 / 4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--accent);
  z-index: 2;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ===== TABOOS ===== */
.taboos-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.taboos-list li {
  background: rgba(11,20,22,0.4);
  border: 1px solid rgba(184,74,74,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: var(--accent-pale);
  text-align: center;
  position: relative;
  padding-left: 40px;
}
.taboos-list li::before {
  content: '✕';
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--danger);
  font-weight: 700;
}

/* ===== EXTRAS (Patreon + Shop) ===== */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.extra-card {
  position: relative;
  background: rgba(11,20,22,0.6);
  border: 1px solid rgba(106,209,214,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}
.extra-card:hover { transform: translateY(-4px); border-color: var(--accent-dim); }
.extra-card h3 { color: var(--accent-bright); font-size: 1.6rem; margin-bottom: 12px; }
.extra-card p { color: var(--accent-pale); font-size: 0.98rem; }
.extra-card--coming { opacity: 0.95; }
.extra-card__badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--bg-teal-2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== FOOTER / CONTACT ===== */
.site-footer {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  padding: 90px var(--gutter) 30px;
  color: var(--accent-pale);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
.footer-form .section-title { text-align: left; margin-bottom: 20px; }
.footer-form .section-title::after { margin-left: 0; }
.footer-intro { color: var(--accent-pale); margin-bottom: 24px; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11,20,22,0.6);
  border: 1px solid rgba(106,209,214,0.2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(11,20,22,0.8);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }
.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: var(--bg-teal-2);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(106,209,214,0.2);
}
.contact-form button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(106,209,214,0.35);
}
.contact-form button:disabled { opacity: 0.7; cursor: wait; }

.honeypot-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-status {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.form-status.show { opacity: 1; }
.form-status.success { color: var(--accent-bright); }
.form-status.error { color: var(--danger); }

.footer-info h3 { color: var(--accent-bright); font-size: 1.6rem; margin-bottom: 4px; }
.footer-subtitle { color: var(--text-muted); font-style: italic; margin-bottom: 22px; }
.footer-phone {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--accent-bright);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-channels { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.footer-channel {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(106,209,214,0.1);
  color: var(--accent-bright);
  border: 1px solid rgba(106,209,214,0.3);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
}
.footer-channel:hover { background: rgba(106,209,214,0.2); }

.footer-bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(106,209,214,0.15);
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.footer-bottom > * { margin: 0; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }
.footer-sep { color: var(--text-dim); }

@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-sep { display: none; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(11,20,22,0.6);
  border: 1px solid rgba(106,209,214,0.25);
  color: var(--accent-pale);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); color: var(--bg-teal-2); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
  :root { --header-h: 64px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 20px; }
  .hero__figure { order: -1; }
  .hero__figure img { max-height: 380px; }
  .hero__text { text-align: center; margin-inline: auto; }
  .hero__intro { margin-inline: auto; }
  .hero__text .cta-btn { margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-portrait img { max-width: 280px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 70px var(--gutter); }
  .hero { padding: calc(var(--header-h) + 30px) var(--gutter) 60px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero__welcome { font-size: 1.25rem; }
  .cta-btn { width: 100%; text-align: center; }
  .age-gate__box { padding: 28px 20px; }
  .age-gate h1 { font-size: 1.6rem; }
}
