/* =========================================================
   Subho Parinay — stylesheet
   Palette: warm paper, deep maroon (heritage), ink black,
   antique brass, and the Unfiltered Frames vermilion (#FB242F)
   Type: Cormorant Garamond (display) + Jost (body/UI)
   ========================================================= */

:root {
  --paper: #F7F2E7;
  --paper-deep: #EFE6D3;
  --ink: #1B1512;
  --ink-soft: #3A322C;
  --maroon: #4B0E1A;
  --maroon-deep: #300910;
  --brass: #A9803D;
  --brass-light: #C9A768;
  --vermilion: #E23B34;
  --line: rgba(27, 21, 18, 0.14);
  --line-on-dark: rgba(247, 242, 231, 0.18);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --container: 1180px;
  --nav-h: 78px;
  --topbar-h: 38px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--vermilion); color: #fff; }

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

/* subtle paper grain for warmth, sits above bg, below content */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Sound toggle ---------- */
.sound-toggle {
  position: fixed;
  z-index: 800;
  right: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(247,242,231,0.35);
  background: rgba(27, 21, 18, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.sound-toggle:hover { border-color: rgba(247,242,231,0.7); transform: scale(1.06); }
.sound-toggle__icon {
  position: relative;
  width: 20px;
  height: 16px;
}
/* speaker body */
.sound-toggle__icon::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 8px; height: 8px;
  background: var(--paper);
  clip-path: polygon(0 25%, 40% 25%, 100% 0, 100% 100%, 40% 75%, 0 75%);
}
/* sound waves */
.sound-toggle__icon::after {
  content: "";
  position: absolute;
  left: 12px; top: 2px;
  width: 8px; height: 12px;
  border: 2px solid var(--paper);
  border-left: none;
  border-radius: 0 10px 10px 0;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.sound-toggle.is-muted .sound-toggle__icon::after { opacity: 0; }
.sound-toggle.is-muted .sound-toggle__icon::before { background: rgba(247,242,231,0.55); }
/* mute slash */
.sound-toggle.is-muted .sound-toggle__icon {
  overflow: visible;
}
.sound-toggle.is-muted .sound-toggle__icon::before {
  clip-path: polygon(0 25%, 40% 25%, 100% 0, 100% 100%, 40% 75%, 0 75%);
}
.sound-toggle.is-muted::before {
  content: "";
  position: absolute;
  left: 14px; top: 14px;
  width: 22px; height: 1px;
  background: var(--paper);
  transform: rotate(45deg);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader__mark {
  width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: preloaderFade 1.4s ease forwards;
}
@keyframes preloaderFade {
  0% { opacity: 0; transform: scale(0.92); }
  60% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ---------- Section scaffolding ---------- */
.section-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--vermilion);
  margin: 0 0 0.9rem;
  font-weight: 500;
}
.section-kicker--center { text-align: center; }
.section-kicker--light { color: var(--brass-light); }

/* ---------- Topbar ---------- */
.topbar {
  height: var(--topbar-h);
  background: var(--ink);
  color: rgba(247, 242, 231, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.topbar__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__link { transition: color 0.2s ease; }
.topbar__link:hover { color: var(--vermilion); }
.topbar__divider { opacity: 0.4; }
.topbar__tag {
  margin-left: auto;
  opacity: 0.65;
  display: none;
}
@media (min-width: 700px) {
  .topbar__tag { display: inline; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, top 0.35s ease, height 0.35s ease;
}
.site-header.is-scrolled {
  top: 0;
  height: 66px;
  background: rgba(247, 242, 231, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand__mark {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,0.25));
  transition: filter 0.35s ease, height 0.35s ease;
}
.site-header.is-scrolled .brand__mark {
  filter: none;
  height: 40px;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.35s ease;
}
.site-header.is-scrolled .main-nav { color: var(--ink-soft); }
@media (min-width: 900px) {
  .main-nav { display: flex; }
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a:not(.main-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.main-nav a:not(.main-nav__cta):hover::after { right: 0; }

.main-nav__cta {
  border: 1px solid currentColor;
  padding: 9px 20px !important;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}
.main-nav__cta:hover { background: var(--vermilion); border-color: var(--vermilion); color: #fff; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: #fff;
  transition: background 0.35s ease, transform 0.3s ease, opacity 0.3s ease;
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--ink);
    color: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(.77,0,.18,1);
    z-index: 600;
    font-family: var(--font-display);
    font-size: 1.5rem;
  }
  .main-nav.is-open { display: flex; transform: translateX(0); }
  .main-nav__cta { align-self: flex-start; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  border: 1px solid transparent;
}
.btn--solid {
  background: var(--vermilion);
  color: #fff;
}
.btn--solid:hover { background: #c62c26; transform: translateY(-1px); }
.btn--line {
  border-color: rgba(27,21,18,0.4);
  color: var(--ink);
}
.btn--line:hover { border-color: var(--ink); background: rgba(27,21,18,0.05); }
.btn--on-dark { border-color: rgba(247,242,231,0.45); color: var(--paper); }
.btn--on-dark:hover { border-color: var(--paper); background: rgba(247,242,231,0.08); }
.btn--full { width: 100%; }

.text-link {
  font-size: 0.92rem;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  color: var(--maroon);
  transition: opacity 0.25s ease;
}
.text-link:hover { opacity: 0.65; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.hero__slider { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.6s ease;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease forwards;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20,14,12,0.86) 0%, rgba(20,14,12,0.32) 46%, rgba(20,14,12,0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--topbar-h) + var(--nav-h) + 24px) 28px 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: var(--paper);
}
.hero__kicker {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--brass-light);
  margin: 0 0 18px;
  opacity: 0;
  animation: riseIn 0.9s ease 0.3s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.98;
  margin: 0 0 22px;
  opacity: 0;
  animation: riseIn 1s ease 0.5s forwards;
}
.hero__sub {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 540px;
  color: rgba(247,242,231,0.86);
  margin: 0 0 34px;
  opacity: 0;
  animation: riseIn 1s ease 0.7s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: riseIn 1s ease 0.9s forwards;
}
.hero__actions .btn--line { border-color: rgba(247,242,231,0.5); color: var(--paper); }
.hero__actions .btn--line:hover { border-color: var(--paper); background: rgba(247,242,231,0.1); }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  bottom: 34px;
  display: flex;
  gap: 10px;
}
.hero__dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(247,242,231,0.4);
  border: none;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero__dots button.is-active { background: var(--vermilion); transform: scale(1.3); }

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 34px;
  display: none;
}
.scroll-cue__line {
  display: block;
  width: 1px;
  height: 54px;
  background: rgba(247,242,231,0.35);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--brass-light);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
@media (min-width: 700px) { .scroll-cue { display: block; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: 120px 28px; }
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .about__inner { grid-template-columns: 0.85fr 1.15fr; gap: 90px; }
}
.about__frame {
  position: relative;
  isolation: isolate;
}
.about__frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 25%;
}
.about__frame::before {
  content: "";
  position: absolute;
  top: 18px; left: 18px;
  right: -18px; bottom: -18px;
  border: 1px solid var(--brass);
  z-index: -1;
}
.about__frame-tag {
  position: absolute;
  bottom: -16px; left: 24px;
  background: var(--maroon);
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  padding: 10px 22px;
}
.about__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.28;
  margin: 0 0 26px;
  color: var(--maroon);
}
.about__title em { font-style: italic; color: var(--vermilion); }
.about__text {
  max-width: 58ch;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--paper-deep);
  padding: 110px 28px 130px;
  text-align: center;
}
.services__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 0 auto 64px;
  max-width: 620px;
  color: var(--ink);
}
.services__list {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 2px;
  background: var(--line);
}
@media (min-width: 860px) {
  .services__list { grid-template-columns: repeat(3, 1fr); }
}
.service {
  position: relative;
  background: var(--paper-deep);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-align: left;
}
.service__media {
  position: absolute;
  inset: 0;
  background-image: var(--service-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 0.9s cubic-bezier(.16,1,.3,1), filter 0.6s ease;
  filter: saturate(0.9);
}
.service:hover .service__media { transform: scale(1.14); filter: saturate(1.05); }
.service::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,14,12,0.92) 10%, rgba(20,14,12,0.15) 70%);
}
.service__body {
  position: relative;
  z-index: 2;
  padding: 34px 32px;
  color: var(--paper);
}
.service__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  margin: 0 0 10px;
}
.service__body p {
  font-size: 0.92rem;
  color: rgba(247,242,231,0.82);
  max-width: 34ch;
  margin: 0;
}

/* =========================================================
   PREMIUM REVEAL
   ========================================================= */
.premium {
  background: radial-gradient(120% 140% at 50% 0%, var(--maroon) 0%, var(--maroon-deep) 55%, var(--ink) 100%);
  padding: 150px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(247,242,231,0.025) 0 2px, transparent 2px 90px);
  pointer-events: none;
}
.premium__inner { position: relative; max-width: 720px; margin: 0 auto; }
.premium__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--brass-light);
  margin: 0 0 34px;
}
.premium__mark {
  width: min(84vw, 480px);
  margin: 0 auto 40px;
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  transform: scale(0.94);
}
.premium__mark.is-revealed {
  animation: frameThrow 1.3s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes frameThrow {
  0% { opacity: 0; clip-path: inset(0 50% 0 50%); transform: scale(0.94); }
  55% { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0 0% 0 0%); transform: scale(1); }
}
.premium__text {
  color: rgba(247,242,231,0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto 40px;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { padding: 120px 28px; max-width: var(--container); margin: 0 auto; }
.gallery__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.9rem);
  text-align: center;
  margin: 0 0 60px;
  color: var(--maroon);
}
.gallery__grid {
  columns: 1;
  column-gap: 14px;
}
@media (min-width: 640px) { .gallery__grid { columns: 2; } }
@media (min-width: 1000px) { .gallery__grid { columns: 3; } }

.gallery__item {
  display: block;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 14px;
  break-inside: avoid;
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(.16,1,.3,1), filter 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(15, 10, 9, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(90vw, 1100px);
  max-height: 84vh;
  width: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: none;
  color: var(--paper);
  font-size: 2.2rem;
  line-height: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: var(--paper);
  font-size: 3rem;
  padding: 10px 16px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 8px; }
.lightbox__nav--next { right: 8px; }
.lightbox__count {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: rgba(247,242,231,0.6);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 28px;
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 56px;
}
@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 90px; }
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 22px;
  line-height: 1.25;
}
.contact__text {
  color: rgba(247,242,231,0.72);
  max-width: 46ch;
  margin: 0 0 34px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.contact__details a { transition: color 0.2s ease; }
.contact__details a:hover { color: var(--vermilion); }

.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(247,242,231,0.6);
}
.form-row input,
.form-row textarea {
  background: rgba(247,242,231,0.06);
  border: 1px solid var(--line-on-dark);
  color: var(--paper);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  border-radius: 2px;
  resize: vertical;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--vermilion);
  background: rgba(247,242,231,0.1);
  outline: none;
}
.contact__note {
  font-size: 0.85rem;
  color: var(--brass-light);
  min-height: 1.2em;
  margin: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--maroon-deep);
  color: rgba(247,242,231,0.75);
  padding: 60px 28px 26px;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 34px;
  align-items: center;
  text-align: center;
}
@media (min-width: 820px) {
  .site-footer__inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
  }
}
.site-footer__mark {
  height: 50px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
@media (min-width: 820px) { .site-footer__mark { margin: 0; } }

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  font-size: 0.9rem;
}
@media (min-width: 820px) { .site-footer__nav { justify-content: center; } }
.site-footer__nav a:hover { color: var(--vermilion); }

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  align-items: center;
}
@media (min-width: 820px) { .site-footer__contact { align-items: flex-end; } }
.site-footer__contact a:hover { color: var(--vermilion); }

.site-footer__bottom {
  max-width: var(--container);
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.78rem;
  text-align: center;
  color: rgba(247,242,231,0.5);
}

/* ---------- Reveal-on-scroll (single, restrained use) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
