/* ==========================================================================
   Rondelet Media Ventures Pvt Ltd — site stylesheet
   Palette and type are derived from the company logo: navy, gold, bone.
   ========================================================================== */

:root {
  --ink:        #050F1F;
  --navy:       #0A2347;
  --navy-lift:  #14315B;
  --navy-line:  #1E3A66;
  --gold:       #C9A253;
  --gold-lit:   #E6C88C;
  --gold-deep:  #A07F35;
  --bone:       #F6F3EC;
  --bone-warm:  #EFEADF;
  --paper:      #FFFFFF;
  --text:       #16233A;
  --text-soft:  #55617A;
  --text-dim:   #8D9AB2;

  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --shell: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --band: clamp(72px, 9vw, 132px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* --------------------------------------------------------- reset + base */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--text);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

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

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink);
  padding: 12px 20px; font-size: 13px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------ structure */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 880px; }

.band { padding-block: var(--band); }
.band--tight { padding-block: clamp(52px, 6vw, 84px); }

.band--navy  { background: var(--navy); color: var(--bone); }
.band--ink   { background: var(--ink);  color: var(--bone); }
.band--paper { background: var(--paper); }
.band--warm  { background: var(--bone-warm); }

.band--navy h1, .band--navy h2, .band--navy h3,
.band--ink  h1, .band--ink  h2, .band--ink  h3 { color: var(--bone); }

/* -------------------------------------------- signature: the film strip */
/* Lifted from the perforated film ribbon in the Rondelet monogram.        */
.filmstrip {
  width: 15px;
  flex: 0 0 15px;
  align-self: stretch;
  min-height: 46px;
  background-color: var(--navy);
  background-image: repeating-linear-gradient(
    to bottom, var(--bone) 0 7px, transparent 7px 18px);
  background-size: 7px 18px;
  background-position: center top;
  background-repeat: repeat-y;
  border-radius: 2px;
}
.band--navy .filmstrip,
.band--ink .filmstrip,
.page-hero .filmstrip {
  background-color: var(--gold);
  background-image: repeating-linear-gradient(
    to bottom, var(--navy) 0 7px, transparent 7px 18px);
}
.band--warm .filmstrip {
  background-image: repeating-linear-gradient(
    to bottom, var(--bone-warm) 0 7px, transparent 7px 18px);
}
.band--paper .filmstrip {
  background-image: repeating-linear-gradient(
    to bottom, var(--paper) 0 7px, transparent 7px 18px);
}

.filmrule {
  width: 108px;
  height: 14px;
  background-color: var(--gold);
  background-image: repeating-linear-gradient(
    to right, var(--bone) 0 6px, transparent 6px 16px);
  background-size: 16px 6px;
  background-position: left center;
  background-repeat: repeat-x;
  border-radius: 2px;
  margin-bottom: 26px;
}
.band--navy .filmrule, .band--ink .filmrule {
  background-image: repeating-linear-gradient(
    to right, var(--navy) 0 6px, transparent 6px 16px);
}
.band--warm .filmrule {
  background-image: repeating-linear-gradient(
    to right, var(--bone-warm) 0 6px, transparent 6px 16px);
}
.band--paper .filmrule {
  background-image: repeating-linear-gradient(
    to right, var(--paper) 0 6px, transparent 6px 16px);
}

/* ---------------------------------------------------------- type pieces */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
  line-height: 1.5;
}
.band--navy .eyebrow, .band--ink .eyebrow, .page-hero .eyebrow { color: var(--gold-lit); }

.section-head { margin-bottom: clamp(38px, 4.5vw, 60px); max-width: 780px; }
.section-head__mark { display: flex; gap: 18px; align-items: stretch; }
.section-head__mark > div { flex: 1; }

.h-xl { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
.h-lg { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.h-md { font-size: clamp(1.65rem, 2.9vw, 2.3rem); }
.h-sm { font-size: clamp(1.28rem, 2vw, 1.55rem); }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.68;
  color: var(--text-soft);
  max-width: 62ch;
  margin-top: 22px;
}
.band--navy .lede, .band--ink .lede { color: rgba(246, 243, 236, 0.8); }
.hero .lede, .page-hero .lede { color: rgba(246, 243, 236, 0.88); }

.body-copy { color: var(--text-soft); max-width: 66ch; }
.band--navy .body-copy, .band--ink .body-copy { color: rgba(246, 243, 236, 0.74); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(201, 162, 83, 0.22);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: rgba(201, 162, 83, 0.4);
  box-shadow: 0 14px 34px -20px rgba(0, 0, 0, 0.9);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand__mark { height: 42px; width: auto; transition: height 0.35s var(--ease); }
.site-header.is-stuck .brand__mark { height: 37px; }
.brand__type { display: flex; flex-direction: column; gap: 5px; }
.brand__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
}
.brand__sub {
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
@media (max-width: 460px) {
  .brand__mark { height: 34px; }
  .brand__name { font-size: 18px; letter-spacing: 0.16em; }
  .brand__sub { font-size: 7px; letter-spacing: 0.18em; }
}

.nav { display: flex; align-items: center; gap: clamp(14px, 1.9vw, 30px); }

.nav a {
  position: relative;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.78);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.38s var(--ease);
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a.is-current { color: var(--gold-lit); }
.nav a.is-current::after { transform: scaleX(1); }

.nav .btn-nav {
  border: 1px solid var(--gold);
  color: var(--gold-lit);
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav .btn-nav::after { display: none; }
.nav .btn-nav:hover { background: var(--gold); color: var(--ink); }
.nav .btn-nav.is-current { background: var(--gold); color: var(--ink); }

/* mobile menu */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(201, 162, 83, 0.4);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px;
  width: 18px; height: 1.5px;
  background: var(--gold-lit);
  transition: transform 0.32s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 15, 31, 0.985);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 162, 83, 0.3);
    padding: 8px var(--gutter) 30px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.42s var(--ease);
  }
  .nav.is-open { clip-path: inset(0 0 0 0); }
  .nav a {
    font-size: 14px;
    letter-spacing: 0.16em;
    padding: 17px 0;
    border-bottom: 1px solid rgba(201, 162, 83, 0.14);
  }
  .nav a::after { display: none; }
  .nav .btn-nav {
    margin-top: 20px;
    text-align: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--gold);
  }
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 58%;
  transform: scale(1.04);
  animation: heroDrift 22s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }

.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5, 15, 31, 0.97) 4%, rgba(5, 15, 31, 0.62) 46%, rgba(5, 15, 31, 0.34) 100%),
    linear-gradient(to right, rgba(5, 15, 31, 0.86) 0%, rgba(5, 15, 31, 0.15) 68%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(90px, 12vw, 150px);
  width: 100%;
}
.hero__body { display: flex; gap: 22px; align-items: stretch; max-width: 830px; }
.hero h1 { color: var(--bone); }
.hero h1 em {
  font-style: normal;
  color: var(--gold-lit);
}
.hero .lede { max-width: 56ch; }

.page-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding-block: clamp(88px, 11vw, 148px);
}
.page-hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 55%;
  opacity: 0.5;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(5, 15, 31, 0.95) 8%, rgba(5, 15, 31, 0.55) 72%),
    linear-gradient(to top, rgba(5, 15, 31, 0.8), rgba(5, 15, 31, 0.2));
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__body { display: flex; gap: 20px; align-items: stretch; max-width: 800px; }
.page-hero h1 { color: var(--bone); }

/* --------------------------------------------------------------- buttons */
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn .arw { transition: transform 0.3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-lit); }

.btn--ghost { border-color: rgba(246, 243, 236, 0.4); color: var(--bone); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lit); }

.btn--navy { background: var(--navy); color: var(--bone); }
.btn--navy:hover { background: var(--navy-lift); }

.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--bone); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(201, 162, 83, 0.4);
  padding-bottom: 5px;
  transition: color 0.28s var(--ease), border-color 0.28s var(--ease);
}
.textlink .arw { transition: transform 0.28s var(--ease); }
.textlink:hover { color: var(--navy); border-color: var(--navy); }
.textlink:hover .arw { transform: translateX(4px); }
.band--navy .textlink, .band--ink .textlink { color: var(--gold-lit); }
.band--navy .textlink:hover, .band--ink .textlink:hover { color: var(--bone); border-color: var(--bone); }

/* ----------------------------------------------------------------- grids */
.grid { display: grid; gap: clamp(18px, 2.2vw, 30px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------- cards */
.card {
  background: var(--paper);
  border: 1px solid rgba(10, 35, 71, 0.1);
  border-radius: 3px;
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px -22px rgba(5, 15, 31, 0.4);
  border-color: rgba(201, 162, 83, 0.55);
}
.card__idx {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-soft); font-size: 15.2px; }
.card .textlink { margin-top: 22px; align-self: flex-start; }

.card--navy {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(201, 162, 83, 0.22);
}
.card--navy h3 { color: var(--bone); }
.card--navy p { color: rgba(246, 243, 236, 0.72); }
.card--navy:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(201, 162, 83, 0.55);
  box-shadow: none;
}

.card--photo { padding: 0; overflow: hidden; }
.card--photo figure { margin: 0; aspect-ratio: 10 / 7; overflow: hidden; background: var(--navy); }
.card--photo figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card--photo:hover figure img { transform: scale(1.06); }
.card--photo .card__text { padding: clamp(24px, 2.6vw, 32px); }

/* --------------------------------------------------------- feature rows */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.feature--flip .feature__media { order: -1; }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 34px; }
  .feature--flip .feature__media { order: 0; }
}
.feature__media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4 / 3;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__media::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(201, 162, 83, 0.3);
  border-radius: 3px;
  pointer-events: none;
}

/* separated service blocks */
.svc {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(30px, 5vw, 64px);
  padding-block: clamp(48px, 6vw, 76px);
  border-top: 1px solid rgba(10, 35, 71, 0.13);
}
.svc:first-of-type { border-top: 0; padding-top: 0; }
.band--navy .svc, .band--ink .svc { border-top-color: rgba(201, 162, 83, 0.22); }
@media (max-width: 900px) { .svc { grid-template-columns: 1fr; gap: 20px; } }

.svc__title {
  display: flex; gap: 18px; align-items: stretch; align-self: start;
  position: sticky; top: calc(var(--header-h) + 44px);
}
@media (max-width: 900px) { .svc__title { position: static; } }
.svc__title h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }

/* --------------------------------------------------------------- lists */
.ticks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 13px; }
.ticks--2 { grid-template-columns: repeat(2, 1fr); gap: 13px 30px; }
@media (max-width: 620px) { .ticks--2 { grid-template-columns: 1fr; } }
.ticks li {
  position: relative;
  padding-left: 26px;
  font-size: 15.2px;
  color: var(--text-soft);
  line-height: 1.55;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 11px; height: 2px;
  background: var(--gold);
}
.band--navy .ticks li, .band--ink .ticks li { color: rgba(246, 243, 236, 0.78); }

/* ----------------------------------------------------------------- stats */
.stat { padding: 4px 0; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(3.1rem, 6vw, 4.6rem);
  line-height: 0.95;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
}
.stat__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  display: block;
  margin-bottom: 10px;
}
.stat p { font-size: 14.4px; color: rgba(246, 243, 236, 0.62); line-height: 1.6; }

/* -------------------------------------------------------------- leader */
.leader { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
@media (max-width: 900px) { .leader { grid-template-columns: 1fr; } }
.leader__portrait {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(201, 162, 83, 0.35);
}
.leader__portrait img { width: 100%; }
.leader__plate {
  padding: 22px 26px 26px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(201, 162, 83, 0.3);
}
.leader__plate strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--bone);
  line-height: 1.2;
}
.leader__plate span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lit);
}

.quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.34;
  color: var(--bone);
  font-weight: 400;
  margin: 0;
  max-width: 22ch;
}
.quote--wide { max-width: 30ch; }
.quote cite {
  display: block;
  margin-top: 26px;
  font-family: var(--body);
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lit);
}

/* ------------------------------------------------------------------ form */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lit);
}
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--bone);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 83, 0.28);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 0.28s var(--ease), background 0.28s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 138px; line-height: 1.6; }
.field select option { background: var(--navy); color: var(--bone); }
.field input::placeholder, .field textarea::placeholder { color: rgba(246, 243, 236, 0.36); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(201, 162, 83, 0.5); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}
.form-note { font-size: 13.4px; color: rgba(246, 243, 236, 0.55); margin-top: 18px; }

.contact-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.contact-lines dt {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-lit); margin-bottom: 8px;
}
.contact-lines dd { margin: 0; font-size: 16.5px; color: var(--bone); }
.contact-lines a { border-bottom: 1px solid rgba(201, 162, 83, 0.45); padding-bottom: 2px; transition: border-color 0.25s var(--ease), color 0.25s var(--ease); }
.contact-lines a:hover { color: var(--gold-lit); border-color: var(--gold-lit); }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: var(--bone); padding-block: clamp(58px, 6vw, 84px) 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 52px;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { height: 96px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14.6px; color: rgba(246, 243, 236, 0.6); max-width: 40ch; }

.footer-col h4 {
  font-family: var(--body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-lit); margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 14.6px; color: rgba(246, 243, 236, 0.68); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--gold-lit); }

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 83, 0.2);
  padding-block: 26px 32px;
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12.8px; color: rgba(246, 243, 236, 0.46); margin: 0; }

/* -------------------------------------------------------------- reveals */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.d1.is-in { transition-delay: 0.08s; }
.reveal.d2.is-in { transition-delay: 0.16s; }
.reveal.d3.is-in { transition-delay: 0.24s; }
.reveal.d4.is-in { transition-delay: 0.32s; }
.reveal.d5.is-in { transition-delay: 0.40s; }

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