:root {
  --ink: #121a24;
  --ink-soft: #2a3544;
  --navy: #1a3366;
  --navy-soft: #254585;
  --navy-deep: #122548;
  --brand-blue: #2a4a8c;
  --brand-blue-light: #3d62a8;
  --gold: #c9a24d;
  --gold-bright: #dbb866;
  --gold-deep: #9a7835;
  --linen: #eef1f6;
  --paper: #f5f7fa;
  --stone: #dde3ec;
  --muted: #5a6472;
  --white: #ffffff;
  --line: rgba(26, 51, 102, 0.12);
  --shadow: 0 24px 60px rgba(18, 37, 72, 0.14);

  --font-display: "Montserrat", "Century Gothic", "Trebuchet MS", sans-serif;
  --font-body: "Jost", "Century Gothic", "Trebuchet MS", sans-serif;
  --saffron: var(--gold);
  --saffron-bright: var(--gold-bright);
  --rose: var(--gold-deep);

  --gutter: clamp(1.25rem, 5vw, 1.75rem);
  --container-max: 1120px;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1000px 480px at 100% -10%, rgba(42, 74, 140, 0.08), transparent 55%),
    radial-gradient(800px 400px at 0% 25%, rgba(26, 51, 102, 0.05), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--linen) 55%, #e8edf4 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--rose);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

.container {
  width: min(var(--container-max), 100%);
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px))
    max(var(--gutter), env(safe-area-inset-right, 0px));
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 244, 237, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.home .site-header:not(.is-scrolled):not(.is-open),
.has-premium-hero .site-header:not(.is-scrolled):not(.is-open) {
  color: var(--white);
}

.home .site-header:not(.is-scrolled):not(.is-open) .primary-nav__list a,
.has-premium-hero .site-header:not(.is-scrolled):not(.is-open) .primary-nav__list a {
  color: rgba(255, 255, 255, 0.82);
}

.site-header__inner {
  width: min(var(--container-max), 100%);
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px))
    max(var(--gutter), env(safe-area-inset-right, 0px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.site-brand__logo-wrap {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 0;
}

.site-brand__logo {
  display: block;
  max-width: 2.6rem;
  max-height: 2.6rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-brand__name {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}

.home .site-header:not(.is-scrolled):not(.is-open) .site-brand__name,
.has-premium-hero .site-header:not(.is-scrolled):not(.is-open) .site-brand__name {
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-nav__list {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.primary-nav__list a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a {
  color: var(--rose);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn--small {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 10px 28px rgba(42, 74, 140, 0.22);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #e8c878, var(--gold-bright));
  color: var(--navy-deep);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn--outline {
  border-color: rgba(28, 20, 16, 0.2);
  background: transparent;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
}

.section-more {
  margin: 2rem 0 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-zoom 14s var(--ease) forwards;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 28, 46, 0.4) 0%, rgba(15, 28, 46, 0.22) 40%, rgba(15, 28, 46, 0.86) 100%),
    linear-gradient(90deg, rgba(15, 28, 46, 0.55) 0%, rgba(15, 28, 46, 0.12) 60%, rgba(15, 28, 46, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) max(var(--gutter), env(safe-area-inset-right, 0px)) 4.5rem
    max(var(--gutter), env(safe-area-inset-left, 0px));
  max-width: calc(var(--container-max) + 2 * var(--gutter));
  margin-inline: auto;
  width: 100%;
}

.hero__content > * {
  max-width: 40rem;
}

.hero__brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.hero__lead {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Sections */
.section {
  padding: clamp(3.75rem, 8vw, 6.25rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 650;
}

.page-hero {
  padding: calc(var(--header-h) + 3.25rem) 0 1.75rem;
}

.page-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 650;
}

.page-hero__lead {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* About */
.section--profile {
  background: var(--white);
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about__copy .section-lead,
.about__copy .about__extra {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about__copy .about__extra {
  margin: 1rem 0 0;
}

.about__points,
.intro__points {
  list-style: none;
  margin: 0;
  padding: 0.35rem 1.25rem;
  display: grid;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.about__points li,
.intro__points li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.about__points li:first-child,
.intro__points li:first-child {
  border-top: 0;
}

.about__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 650;
}

/* Services preview */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card--offset {
  transform: translateY(1.75rem);
}

.service-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  background: var(--stone);
}

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

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-grid article {
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.55);
  border-top: 2px solid var(--saffron);
}

.feature-grid h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

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

.quotes blockquote {
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.quotes p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
}

.quotes footer {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Services page list */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.services-list__item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.services-list__item h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
}

.services-list__item p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.menu-item__text h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.menu-item__text p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.menu-item__rule {
  width: 2.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), transparent);
  margin-bottom: 0.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.why-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.75rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  grid-column: span 4;
  overflow: hidden;
  background: var(--stone);
}

.gallery-item--2 { grid-column: span 5; }
.gallery-item--3 { grid-column: span 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  padding: 0.7rem 0.1rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA */
.section--cta {
  padding-top: 0;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: clamp(2.25rem, 5vw, 3.25rem);
  background:
    linear-gradient(135deg, rgba(184, 146, 74, 0.18), transparent 45%),
    linear-gradient(160deg, #0f1c2e 0%, #1a2d45 100%);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.cta-band .section-title {
  color: var(--white);
  max-width: 16ch;
}

.cta-band--center {
  flex-direction: column;
  text-align: center;
}

.cta-band--center .section-title {
  max-width: none;
}

.cta-band p {
  margin: 0;
  max-width: 34rem;
  font-weight: 300;
}

.cta-band__actions {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.cta-band--center .cta-band__actions {
  justify-items: center;
}

.cta-band .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.cta-band__phone {
  margin: 0.2rem 0 0 !important;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.cta-band__phone a {
  color: var(--saffron-bright);
  text-decoration: none;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  min-width: 0;
}

.contact-details,
.contact-form-wrap {
  min-width: 0;
  max-width: 100%;
}

.contact-dl {
  margin: 1.5rem 0 1.75rem;
  display: grid;
  gap: 1.1rem;
}

.contact-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.contact-dl dd {
  margin: 0;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.contact-form-wrap {
  padding: clamp(1.1rem, 4vw, 1.75rem);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .btn,
.contact-details .btn {
  width: 100%;
}

.form-row {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

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

.form-row--split > div {
  min-width: 0;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--ink-soft);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.8rem 0.9rem;
  border-radius: 2px;
  color: var(--ink);
  font-size: 16px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(184, 146, 74, 0.45);
  outline-offset: 1px;
}

.form-error {
  color: #7a2e2e;
  background: #f7ecec;
  padding: 0.75rem 1rem;
}

.form-success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 2rem;
  padding: 4rem 0 1.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.site-footer__glow {
  position: absolute;
  inset: auto -10% -40% 35%;
  height: 280px;
  background: radial-gradient(circle, rgba(184, 146, 74, 0.22), transparent 65%);
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.site-footer__logo-wrap {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 0;
}

.site-footer__logo-mark {
  display: block;
  max-width: 2.75rem;
  max-height: 2.75rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-footer__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.site-footer__tag {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron-bright);
}

.site-footer__col p {
  margin: 0 0 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--saffron-bright);
}

.site-footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__credit a {
  color: var(--saffron-bright);
}



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

.product--offset {
  transform: translateY(1.75rem);
}

.product__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  background: var(--stone);
}

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

.product:hover .product__media img {
  transform: scale(1.04);
}

.product h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
}

.product p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.intro__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 650;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.why__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.75rem;
}

.cta-band__email {
  margin: 0 !important;
  font-size: 0.95rem;
}

.cta-band__email a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

@media (max-width: 980px) {
  .product-grid,
  .intro,
  .why {
    grid-template-columns: 1fr;
  }

  .product--offset {
    transform: none;
  }
}

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

[data-reveal].is-visible [data-reveal-child],
.hero.is-visible [data-reveal-child] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible [data-reveal-child]:nth-child(2),
.hero.is-visible [data-reveal-child]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(3),
.hero.is-visible [data-reveal-child]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(4),
.hero.is-visible [data-reveal-child]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(5) { transition-delay: 0.32s; }
[data-reveal].is-visible [data-reveal-child]:nth-child(6) { transition-delay: 0.4s; }

.hero [data-reveal-child] {
  opacity: 0;
  transform: translateY(22px);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal-child],
  .hero [data-reveal-child] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__image {
    animation: none;
  }
}

/* If JS fails, still show content after a moment */
html:not(.js-ready) [data-reveal-child] {
  animation: reveal-fallback 0.01s linear 1.5s forwards;
}

@keyframes reveal-fallback {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Responsive */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem max(var(--gutter), env(safe-area-inset-right, 0px)) 1.5rem
      max(var(--gutter), env(safe-area-inset-left, 0px));
    background: rgba(247, 244, 237, 0.98);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .site-header.is-open .primary-nav {
    display: flex;
  }

  .primary-nav__list {
    flex-direction: column;
  }

  .primary-nav__cta {
    width: 100%;
  }

  .about,
  .service-cards,
  .quotes,
  .feature-grid,
  .services-list,
  .why-grid,
  .contact-layout,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .service-card--offset {
    transform: none;
  }

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

  .gallery-item,
  .gallery-item--2,
  .gallery-item--3 {
    grid-column: span 6;
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band .section-title {
    max-width: none;
  }

  .cta-band__actions .btn,
  .contact-details .btn,
  .contact-form .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1.35rem;
  }

  .hero__brand {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 2.1rem);
  }

  .page-hero__title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .section {
    padding: 2.5rem 0;
  }

  .gallery-item,
  .gallery-item--2,
  .gallery-item--3 {
    grid-column: span 12;
  }

  .menu-list li {
    grid-template-columns: 1fr;
  }

  .menu-item__rule {
    display: none;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .cta-band {
    padding: 1.5rem;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 1.15rem;
  }

  .nav-toggle__label {
    display: none;
  }
}

/* ── Brochure upgrade (v5) ── */

.hero--premium {
  min-height: min(88vh, 880px);
  min-height: min(88dvh, 880px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 clamp(2rem, 4vw, 3rem);
}

.hero__veil--premium {
  background:
    linear-gradient(
      105deg,
      rgba(18, 37, 72, 0.94) 0%,
      rgba(18, 37, 72, 0.86) 36%,
      rgba(18, 37, 72, 0.42) 62%,
      rgba(18, 37, 72, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(18, 37, 72, 0.38) 0%, transparent 38%, rgba(18, 37, 72, 0.72) 100%);
}

.hero__premium {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero__premium-accent {
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, var(--gold-bright), rgba(219, 184, 102, 0.15));
}

.hero__premium-title {
  margin: 0;
  max-width: 16em;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero__premium-lead {
  margin: 1rem 0 1.5rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.55;
}

.hero__premium-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-left: auto;
  width: 280px;
  max-width: 100%;
}

.hero__card {
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: hero-card-in 0.85s var(--ease) backwards;
}

.hero__card:nth-child(2) {
  animation-delay: 0.14s;
}

.hero__card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
}

.hero__card figcaption {
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
}

.hero__card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translateY(14px) translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.page-hero--premium {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: min(52vh, 520px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 2.75rem;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

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

.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(18, 37, 72, 0.94) 0%,
      rgba(18, 37, 72, 0.86) 36%,
      rgba(18, 37, 72, 0.42) 62%,
      rgba(18, 37, 72, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(18, 37, 72, 0.38) 0%, transparent 38%, rgba(18, 37, 72, 0.72) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__accent {
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, var(--gold-bright), rgba(219, 184, 102, 0.15));
}

.page-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.page-hero--premium .page-hero__title {
  color: var(--white);
  max-width: 16em;
}

.page-hero--premium .page-hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.section-more--center {
  text-align: center;
}

.cap-rows {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.cap-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(26, 51, 102, 0.06);
}

.cap-row--flip .cap-row__copy { order: 2; }
.cap-row--flip .cap-row__media { order: 1; }

.cap-row__label {
  margin: 0 0 0.85rem;
  padding: 0.55rem 1rem;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
}

.cap-row__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
}

.cap-row__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}

.cap-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cap-rows--compact .cap-row {
  padding: 1rem;
}

.section--capabilities {
  background: var(--linen);
}

.section--vision,
.section--quality {
  background: var(--white);
}

.vision,
.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.vision__quote {
  margin: 1.25rem 0 0;
  padding: 1rem 0 0;
  border-top: 2px solid var(--brand-blue);
}

.vision__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-soft);
}

.vision__media,
.quality__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}

.vision__media img,
.quality__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality__list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.55rem;
}

.product__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.site-footer__desc {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(201, 162, 77, 0.14), transparent 45%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--brand-blue) 100%);
}

.site-footer {
  background: var(--navy-deep);
}

.site-footer__glow {
  background: radial-gradient(circle, rgba(61, 98, 168, 0.28), transparent 65%);
}

.home .site-header:not(.is-scrolled):not(.is-open) {
  color: var(--white);
}

@media (max-width: 980px) {
  .cap-row,
  .cap-row--flip .cap-row__copy,
  .cap-row--flip .cap-row__media,
  .vision,
  .quality,
  .range-item,
  .range-item--flip .range-item__copy,
  .range-item--flip .range-item__media {
    grid-template-columns: 1fr;
  }

  .cap-row--flip .cap-row__copy,
  .cap-row--flip .cap-row__media,
  .range-item--flip .range-item__copy,
  .range-item--flip .range-item__media {
    order: unset;
  }

  .hero--premium .hero__premium {
    grid-template-columns: 1fr;
  }

  .hero__premium-cards {
    flex-direction: row;
    max-width: none;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hero__card {
    width: 280px;
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

.range-list {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.range-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: center;
}

.range-item--flip .range-item__copy { order: 2; }
.range-item--flip .range-item__media { order: 1; }

.range-item__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}

.range-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-item__copy h2 {
  margin: 0 0 0.65rem;
  padding: 0.45rem 0.85rem;
  display: inline-block;
  font-size: 1.15rem;
  color: var(--white);
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
}

.range-item__copy p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.spec-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.spec-grid li {
  padding: 1.25rem;
  background: var(--white);
  border-top: 3px solid var(--brand-blue);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand-blue);
}

.spec-grid h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.spec-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

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