/* Hocus Pocus — John O'Toole
   Responsive static website. No framework or external font dependency. */

:root {
  --ink: #050611;
  --ink-soft: #0a0c1a;
  --panel: rgba(10, 11, 24, 0.82);
  --gold: #f3bc58;
  --gold-pale: #ffe9a7;
  --gold-deep: #9b5d16;
  --violet: #7666d8;
  --text: #f8f5ed;
  --muted: #b8b4b0;
  --line: rgba(243, 188, 88, 0.24);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1220px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(75, 55, 143, 0.2), transparent 34rem),
    radial-gradient(circle at 86% 32%, rgba(152, 82, 21, 0.14), transparent 30rem),
    var(--ink);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button,
input,
select,
textarea { font: inherit; }

::selection {
  color: #111;
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  background: var(--gold);
  color: #111;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  border-bottom: 1px solid rgba(243, 188, 88, 0.12);
  background: rgba(4, 5, 13, 0.83);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  position: relative;
  z-index: 3;
  width: 145px;
  filter: drop-shadow(0 0 16px rgba(243, 188, 88, 0.3));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 50% -0.65rem;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: width 180ms ease, transform 180ms ease;
  width: 100%;
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold-pale); }

.site-nav a:hover::after,
.site-nav a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  padding: 0.72rem 1.1rem;
  border: 1px solid rgba(243, 188, 88, 0.72);
  color: var(--gold-pale) !important;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: #15100a !important;
  box-shadow: 0 0 25px rgba(243, 188, 88, 0.23);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(7, 8, 18, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 23px;
  height: 1px;
  background: var(--gold-pale);
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 31px; }

.menu-toggle.open span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 7rem 0 4rem;
  background:
    linear-gradient(90deg, rgba(4, 5, 13, 0.16), rgba(4, 5, 13, 0.52) 53%, rgba(4, 5, 13, 0.94)),
    url("../images/cosmic-background.webp") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}

#magicCanvas {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.23;
}

.hero-glow-one {
  left: 5%;
  bottom: 4%;
  background: #664dd2;
}

.hero-glow-two {
  right: 6%;
  top: 17%;
  background: #dc8f27;
}

.hero-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-portrait {
  position: relative;
  align-self: end;
  min-height: min(78vh, 860px);
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto 9% 2% 6%;
  height: 40%;
  border-radius: 50%;
  background: rgba(243, 188, 88, 0.16);
  filter: blur(58px);
  pointer-events: none;
}

.hero-portrait img {
  position: relative;
  z-index: 2;
  width: min(100%, 670px);
  max-height: 82vh;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 32px 34px rgba(0,0,0,.55));
  mask-image: linear-gradient(#000 84%, transparent 100%);
}

.portrait-ring {
  position: absolute;
  z-index: 1;
  left: 42%;
  bottom: 26%;
  width: min(25vw, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 220, 143, 0.72);
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(243, 188, 88, 0.7),
    0 0 64px rgba(243, 188, 88, 0.34),
    inset 0 0 45px rgba(243, 188, 88, 0.25);
  animation: pulse-ring 4s ease-in-out infinite;
}

.portrait-ring::before,
.portrait-ring::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(255, 229, 164, 0.34);
  border-radius: inherit;
  animation: rotate 26s linear infinite;
}

.portrait-ring::after {
  inset: -8%;
  animation-direction: reverse;
  animation-duration: 33s;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 4rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(5.2rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.68;
  background:
    linear-gradient(100deg, #8c5214 0%, #fff2af 24%, #d9912c 44%, #fff0a5 63%, #9d5c15 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 13px rgba(236, 166, 67, 0.25));
}

.hero h1 span { display: block; }
.hero h1 span:last-child { transform: translateX(0.19em); }

.ornament {
  margin: 2rem auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--gold);
}

.ornament span {
  width: 7rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament i { font-style: normal; }

.hero h2 {
  margin: 0 0 1rem;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 43rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.button {
  position: relative;
  isolation: isolate;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--gold);
  text-decoration: none;
  color: var(--gold-pale);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--gold-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  color: #17100a;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(243, 188, 88, 0.28);
}

.button:hover::before,
.button:focus-visible::before { transform: scaleX(1); }

.button-ghost {
  border-color: rgba(255,255,255,.26);
  color: rgba(255,255,255,.82);
}

.scroll-cue {
  position: absolute;
  right: 2rem;
  bottom: 2.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 3.5rem;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 45%;
  background: var(--gold);
  animation: scroll-line 2s ease-in-out infinite;
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3.6rem;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-intro h2 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-pale);
}

.section-heading > p:last-child,
.contact-intro > p:last-of-type {
  color: var(--muted);
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.show-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 188, 88, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 19, 37, 0.88), rgba(6, 7, 16, 0.97));
  box-shadow: 0 24px 60px rgba(0,0,0,.23);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.show-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 188, 88, 0.52);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}

.show-card.featured {
  transform: translateY(-1.25rem);
}

.show-card.featured:hover { transform: translateY(-1.75rem); }

.show-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.show-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 48%, rgba(5,6,17,.96));
}

.show-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}

.show-card:hover .show-image img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.show-number {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.7rem;
  color: rgba(255, 225, 156, 0.7);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.show-content {
  padding: 0.5rem 1.6rem 2rem;
}

.card-kicker {
  margin: 0 0 0.2rem;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.show-content h3 {
  margin: 0.15rem 0 0.75rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-pale);
}

.show-content p:not(.card-kicker) {
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.4rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.about-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40rem;
  height: 40rem;
  left: -18rem;
  top: 8%;
  border-radius: 50%;
  background: rgba(78, 58, 144, 0.13);
  filter: blur(65px);
}

.about-image {
  position: relative;
  padding: 1rem;
}

.image-frame {
  position: relative;
  border: 1px solid rgba(243, 188, 88, 0.45);
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

.image-frame::before,
.image-frame::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-color: var(--gold);
  pointer-events: none;
}

.image-frame::before {
  top: -6px;
  left: -6px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.image-frame::after {
  right: -6px;
  bottom: -6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(.88) contrast(1.05);
}

.experience-badge {
  position: absolute;
  right: -1rem;
  bottom: 8%;
  width: 145px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  padding: 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(5,6,17,.9);
  text-align: center;
  box-shadow: 0 0 40px rgba(243,188,88,.18);
}

.experience-badge strong {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.experience-badge span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-intro {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.about-copy > p:not(.eyebrow):not(.about-intro) { color: var(--muted); }

.about-points {
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}

.about-points > div {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.65rem;
  align-items: start;
}

.about-points span { color: var(--gold); }
.about-points p { margin: 0; color: var(--muted); }
.about-points strong {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.quote-section {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 5rem 1rem;
  border-block: 1px solid rgba(243, 188, 88, 0.12);
  background:
    linear-gradient(rgba(5,6,17,.74), rgba(5,6,17,.9)),
    url("../images/cosmic-background.webp") center / cover fixed;
}

.quote-section blockquote {
  position: relative;
  z-index: 2;
  max-width: 830px;
  margin: 0;
  text-align: center;
}

.quote-mark {
  display: block;
  height: 4rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.quote-section blockquote p {
  margin: 0;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.65rem);
  line-height: 1.26;
}

.quote-section footer {
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.quote-orbit {
  position: absolute;
  border: 1px solid rgba(243,188,88,.18);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 180px;
  transform: rotate(22deg);
  animation: orbit-float 8s ease-in-out infinite;
}

.orbit-two {
  width: 690px;
  height: 240px;
  transform: rotate(-18deg);
  animation: orbit-float 10s ease-in-out infinite reverse;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-details a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-pale);
  text-decoration: none;
}

.contact-details a span:first-child {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
}

.booking-form {
  padding: clamp(1.4rem, 3vw, 2.6rem);
  border: 1px solid rgba(243,188,88,.24);
  background: linear-gradient(145deg, rgba(16,17,34,.9), rgba(6,7,16,.94));
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.booking-form label > span {
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  outline: none;
  background: rgba(1,2,8,.6);
  color: var(--text);
  padding: 0.9rem 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form textarea { resize: vertical; }

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(243,188,88,.09);
}

.booking-form .invalid {
  border-color: #ef8b83;
}

.form-submit { margin-top: 0.5rem; }

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--gold-pale);
  font-size: 0.88rem;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding: 3rem 0;
  border-top: 1px solid rgba(243,188,88,.15);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255,255,255,.48);
  font-size: 0.78rem;
}

.footer-brand { width: 125px; }
.site-footer > p:nth-child(2) {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.copyright { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.7,.2,1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(.98); opacity: .75; }
  50% { transform: scale(1.035); opacity: 1; }
}

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

@keyframes scroll-line {
  0% { transform: translateY(-120%); }
  60%, 100% { transform: translateY(240%); }
}

@keyframes orbit-float {
  0%, 100% { translate: 0 0; opacity: .45; }
  50% { translate: 0 -18px; opacity: .8; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    padding: 8rem 2rem 3rem;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.7rem;
    background:
      radial-gradient(circle at 50% 20%, rgba(105,75,183,.22), transparent 23rem),
      rgba(4,5,13,.98);
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(.7,0,.3,1);
  }

  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 1rem; }

  .hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    grid-row: 1;
    padding: 2rem 0 0;
  }

  .hero-portrait {
    grid-row: 2;
    min-height: auto;
    margin-top: 0;
  }

  .hero-portrait img {
    max-height: 690px;
    width: min(82vw, 590px);
  }

  .portrait-ring {
    left: 49%;
    bottom: 26%;
    width: min(38vw, 290px);
  }

  .scroll-cue { display: none; }

  .show-grid { grid-template-columns: 1fr 1fr; }
  .show-card.featured { transform: none; }
  .show-card.featured:hover { transform: translateY(-8px); }
  .show-card:last-child { grid-column: 1 / -1; }

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 610px;
    margin-inline: auto;
  }

  .contact-intro { max-width: 720px; }
}

@media (max-width: 680px) {
  .nav-shell { min-height: 76px; }
  .brand { width: 116px; }

  .hero { padding-top: 6.5rem; }

  .hero-copy { padding-inline: 0.4rem; }
  .hero h1 { font-size: clamp(4.1rem, 23vw, 6.4rem); }
  .hero h2 { font-size: 1.4rem; }

  .hero-actions,
  .hero-actions .button { width: 100%; }

  .hero-portrait img { width: 104vw; max-width: none; }
  .portrait-ring { width: 45vw; bottom: 25%; }

  .section { width: min(calc(100% - 1.3rem), var(--max)); }
  .show-grid { grid-template-columns: 1fr; }
  .show-card:last-child { grid-column: auto; }

  .about-section { gap: 2.3rem; }
  .about-image { padding-inline: 0.2rem; }
  .experience-badge {
    right: -0.2rem;
    width: 122px;
  }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .copyright { text-align: center; }
}

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