/* ============================================
   RIGGINS DESIGN + BUILD — Brand System
   ============================================ */

:root {
  /* Brand */
  --navy: #1f3a5f;
  --navy-deep: #16294a;
  --navy-soft: #2a4a73;
  --gold: #b89968;
  --gold-soft: #c9ad7e;
  --bone: #f6f2ec;
  --paper: #faf8f4;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: rgba(31, 58, 95, 0.14);

  /* Type */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 56px;
  transition: background 0.35s ease, padding 0.35s ease,
    box-shadow 0.35s ease;
}

.nav.is-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.nav.is-solid {
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 56px;
}

.nav__group {
  display: flex;
  align-items: center;
  gap: 38px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav__group--left {
  justify-content: flex-end;
}

.nav__group--right {
  justify-content: flex-start;
}

.nav__link {
  position: relative;
  color: #fff;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav.is-solid .nav__link {
  color: var(--navy);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__logo {
  cursor: pointer;
  display: block;
  height: 56px;
  padding: 0 24px;
  transition: height 0.3s ease;
}

.nav.is-solid .nav__logo {
  height: 48px;
}

.nav__logo img {
  height: 100%;
  width: auto;
}

.nav__hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 8px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__video--crossfade {
  transition: opacity 1.5s ease-in-out;
}

.hero__placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse at center, #2c3e50 0%, #0c1a2a 90%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 2;
}

.hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14vh;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.4vw, 4.25rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 36px;
  max-width: none;
  white-space: nowrap;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero__divider {
  width: min(720px, 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 28px;
}

.hero__divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}

.hero__divider::before,
.hero__divider::after {
  content: none;
}

.hero__divider-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  transform: rotate(45deg);
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -36px;
  left: 0;
  width: 1px;
  height: 36px;
  background: #fff;
  animation: scrollDot 2.4s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: -36px;
  }
  100% {
    top: 36px;
  }
}

/* ============================================
   SECTION COMMON
   ============================================ */

.section {
  padding: 120px 56px;
}

.section--bone {
  background: var(--bone);
}

.section--paper {
  background: var(--paper);
}

.section--navy {
  background: var(--navy);
  color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.eyebrow--navy {
  color: var(--navy);
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
  color: var(--navy);
}

.section__title--center {
  text-align: center;
}

/* ============================================
   INTRO
   ============================================ */

.intro {
  text-align: center;
  padding: 140px 56px 100px;
}

.intro__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--navy);
  max-width: 920px;
  margin: 28px auto 0;
  text-wrap: balance;
}

.intro__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

/* ============================================
   PROJECT STRIP
   ============================================ */

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 56px 120px;
  max-width: 1480px;
  margin: 0 auto;
}

.strip__card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}

.strip__card .strip__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.strip__card:hover .strip__img {
  transform: scale(1.04);
}

.strip__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(15, 28, 49, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.strip__card-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
}

.strip__card-meta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 6px;
}

/* ============================================
   FEATURE BUBBLES
   ============================================ */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 44px 36px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(31, 58, 95, 0.35);
  border-color: rgba(31, 58, 95, 0.3);
}

.feature__num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0 0 18px;
}

.feature__title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

.feature__body {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta {
  background: var(--navy);
  color: #fff;
  padding: 130px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(184, 153, 104, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 18px;
  position: relative;
}

.cta__subtitle {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 40px;
  position: relative;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 18px 44px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

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

.btn--solid {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn--solid:hover {
  background: var(--navy-deep);
  color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 80px 56px 36px;
  text-align: center;
}

.footer__logo {
  height: 84px;
  margin: 0 auto 36px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 36px;
}

.footer__nav a {
  cursor: pointer;
  position: relative;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  transition: background 0.3s ease, color 0.3s ease;
}

.footer__social a:hover {
  background: var(--navy);
  color: #fff;
}

.footer__copy {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */

.pagehero {
  position: relative;
  height: 60vh;
  min-height: 460px;
  background: var(--navy);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.pagehero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.pagehero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/logo-monogram.png");
  background-repeat: repeat;
  background-size: 70px auto;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

.pagehero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 28, 49, 0.55),
    rgba(15, 28, 49, 0.7)
  );
}

.pagehero__inner {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.pagehero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}

.pagehero__sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto;
}

.pagehero__rule {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto;
}

/* ============================================
   TEAM (About / Builder Reps)
   ============================================ */

.team {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.team__row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.team__row--reverse {
  direction: rtl;
  grid-template-columns: 0.7fr 1.3fr;
}

.team__row--reverse > * {
  direction: ltr;
}

.team__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-soft);
  position: relative;
}

.team__photo--circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  width: 100%;
  max-width: 440px;
  justify-self: center;
}

.team__photo::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.team__photo--circle::after {
  border-radius: 50%;
}

.team__info .eyebrow {
  margin-bottom: 12px;
}

.team__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 6px;
}

.team__role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}

.team__rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 24px;
}

.team__bio {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: #3a3a3a;
}

.team__contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.team__contact span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-right: 10px;
}

.team__contact a,
.contact-meta__value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.team__contact a:hover,
.contact-meta__value a:hover {
  border-bottom-color: currentColor;
}

/* ============================================
   PROJECTS — masonry
   ============================================ */

.masonry {
  column-count: 3;
  column-gap: 24px;
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--navy);
}

.masonry__img {
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease, filter 0.4s ease;
}

.masonry__item:hover .masonry__img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.masonry__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  pointer-events: none;
}

.masonry__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.masonry__view {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.masonry__item:hover .masonry__view {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 28, 0.94);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 40px;
  animation: lbFade 0.3s ease;
}

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

.lightbox__panel {
  width: min(1100px, 100%);
  max-height: 86vh;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  overflow: hidden;
}

.lightbox__media {
  background: #1a1a1a;
  position: relative;
  height: 86vh;
  overflow: hidden;
}

.lightbox__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.lightbox__nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

.lightbox__info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
}

.lightbox__counter {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.lightbox__title {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  margin: 0 0 8px;
}

.lightbox__loc {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.lightbox__desc {
  font-family: var(--sans);
  color: #444;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}

.lightbox__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 22px;
}

.lightbox__meta dt {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}

.lightbox__meta dd {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  padding: 64px 56px;
  border: 1px solid var(--line);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__field--full {
  grid-column: 1 / -1;
}

.form__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
}

.form__input,
.form__textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
}

.form__textarea {
  min-height: 130px;
  padding-top: 14px;
}

.form__submit {
  margin-top: 28px;
  width: 100%;
}

.form__sent {
  text-align: center;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.5rem;
  padding: 60px 0;
}

.contact-meta {
  margin: 80px auto 0;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1100px;
}

.contact-meta__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.contact-meta__value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   SPLIT SECTION (AR-style image + card)
   ============================================ */

.split--overlap {
  background: var(--bone);
  padding: 100px 56px;
  position: relative;
}

.split--overlap .split__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  min-height: 520px;
}

.split--overlap .split__media {
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 520px;
  width: 110%;
  margin-left: -10%;
  position: relative;
  z-index: 0;
  order: 2;
}

.split--overlap .split__copy {
  background: #fff;
  padding: 64px 56px;
  position: relative;
  z-index: 2;
  margin-right: -8%;
  box-shadow: 0 30px 80px -40px rgba(31, 58, 95, 0.35);
  order: 1;
  align-self: center;
}

.split--overlap.split--right .split__media {
  width: 110%;
  margin-left: 0;
  margin-right: -10%;
  order: 1;
}

.split--overlap.split--right .split__copy {
  margin-right: 0;
  margin-left: -8%;
  order: 2;
}

.split__copy-inner { max-width: 460px; }

.split__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  color: var(--navy);
  margin: 14px 0 22px;
}

.split__body {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4a4a4a;
  margin: 0 0 32px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.arrow-link::before {
  content: '→';
  display: inline-block;
  width: 56px;
  border-top: 1px solid var(--navy);
  text-align: right;
  line-height: 0;
  padding-right: 2px;
  transition: width 0.3s ease;
}

.arrow-link:hover::before { width: 72px; }

/* ============================================
   THE RIGGINS DIFFERENCE — single continuous navy canvas.
   Rows are stacked vertically; each row absolutely-positions a varying
   number of photos + a card. Cards always render LAST and sit on top
   (higher z-index) so text is never hidden.
   ============================================ */

.diff-flow {
  position: relative;
  background: #14283f;
  overflow: hidden;
  padding: 60px 0;
}

/* Logo pattern fades down through the entire canvas, no per-panel breaks */
.diff-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("assets/logo-tile.png");
  background-repeat: repeat;
  background-size: 90px 90px;
  opacity: 0.13;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 100%);
  z-index: 0;
}

/* Subtle gradient sweep that varies the navy down the canvas — no hard seams */
.diff-flow::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 80% 8%, rgba(44, 79, 124, 0.55), transparent 45%),
    radial-gradient(ellipse at 10% 35%, rgba(20, 40, 63, 0.7), transparent 45%),
    radial-gradient(ellipse at 90% 60%, rgba(37, 69, 110, 0.55), transparent 45%),
    radial-gradient(ellipse at 15% 88%, rgba(20, 40, 63, 0.7), transparent 45%);
}

.diff-row {
  position: relative;
  width: 100vw;
  margin: 0;
}

/* ---------- Image base ---------- */
.diff-img {
  position: absolute;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.6);
}
.diff-img__inner {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.18);
}

/* ---------- Card base — ALWAYS on top (z-index 5) ---------- */
.diff-card {
  position: absolute;
  z-index: 5;
  background: #fff;
  padding: 48px 44px;
  width: clamp(360px, 30vw, 460px);
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.55);
}
.diff-card__num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin: 0 0 22px;
}
.diff-card__num i {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.diff-card__count { color: rgba(31, 58, 95, 0.4); }
.diff-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 1.14;
  color: var(--navy);
  margin: 0 0 22px;
  text-wrap: balance;
}
.diff-card__rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 20px;
}
.diff-card__body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}
.diff-card .eyebrow { color: var(--gold); }

/* ============================================
   ROW 1 — TWO photos (big right + small bottom-left), card top-left
   ============================================ */
.diff-row--1 { height: 130vh; }
.diff-img--r1-a { top: 58vh;   left: 6vw;   width: 46vw; height: 38vh; }
.diff-img--r1-b { top: 6vh;    right: -2%;  width: 64vw; height: 64vh; }
.diff-card--r1  { top: 6vh;    left: 6vw; }

/* ============================================
   ROW 2 — THREE photos clustered right, card left side
   ============================================ */
.diff-row--2 { height: 110vh; }
.diff-img--r2-a { top: -8vh;  right: 4vw;   width: 42vw; height: 50vh; }
.diff-img--r2-b { top: 38vh;  left: 28vw;   width: 50vw; height: 44vh; }
.diff-img--r2-c { top: 60vh;  right: -2%;   width: 22vw; height: 28vh; }
.diff-card--r2  { top: -6vh; left: 6vw; width: clamp(520px, 40vw, 620px); padding: 72px 60px; }

/* ============================================
   ROW 3 — ONE big photo, card overlapping top-right corner
   ============================================ */
.diff-row--3 { height: 80vh; }
.diff-img--r3-a { top: 6vh; left: 4vw; width: 70vw; height: 64vh; }
.diff-card--r3  { top: -4vh; right: 4vw; }

/* ============================================
   ROW 4 — TWO photos asymmetric, card center
   ============================================ */
.diff-row--4 { height: 100vh; }
.diff-img--r4-a { top: 8vh;   left: -2%;   width: 50vw; height: 64vh; }
.diff-img--r4-b { top: 4vh; right: 4vw; width: 36vw; height: 42vh; }
.diff-card--r4  { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ============================================
   ROW 5 — split: skinny card left, big photo right
   ============================================ */
.diff-row--5 { height: 60vh; }
.diff-img--r5-a { top: 4vh; bottom: 4vh; left: calc(6vw + clamp(320px, 26vw, 380px)); right: 0; width: auto; height: auto; }
.diff-card--r5  { top: 10vh; bottom: 10vh; left: 6vw; width: clamp(320px, 26vw, 380px); padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }

/* ============================================
   ROW 6 — ONE big photo, card centered on top
   ============================================ */
.diff-row--6 { height: 110vh; }
.diff-img--r6-a { top: 4vh; left: 2vw; width: 96vw; height: 88vh; }
.diff-card--r6  { bottom: 10vh; left: 6vw; transform: none; width: clamp(440px, 38vw, 560px); padding: 56px 48px; }

/* ============================================
   MOBILE — stack everything: photos first, then card per row
   ============================================ */
@media (max-width: 980px) {
  .diff-flow { padding: 40px 0; }
  .diff-row,
  .diff-row--1, .diff-row--2, .diff-row--3,
  .diff-row--4, .diff-row--5, .diff-row--6 {
    height: auto;
    padding: 30px 22px;
  }
  .diff-img,
  [class*="diff-img--"] {
    position: relative;
    inset: auto !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    width: auto !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    margin: 0 0 16px;
  }
  .diff-card,
  [class*="diff-card--"] {
    position: relative;
    inset: auto !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    transform: none !important;
    width: auto;
    margin: -50px 12px 0;
    padding: 36px 26px;
  }
}

/* ============================================
   AVAILABLE NOW carousel (navy w/ R pattern)
   ============================================ */

.available {
  position: relative;
  background: #0e2236;
  color: #fff;
  padding: 120px 56px;
  overflow: hidden;
}

.available__pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/logo-pattern.svg");
  background-repeat: repeat;
  background-size: 280px auto;
  opacity: 0.05;
  pointer-events: none;
}

.available__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  position: relative;
  z-index: 1;
  align-items: stretch;
  min-height: 560px;
}

.available__panel {
  background: var(--bone);
  color: var(--ink);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.available__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.available__title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 22px;
}

.available__body {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 24px;
}

.available__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.available__nav button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
}

.available__nav button:hover { background: var(--navy); color: #fff; }

.available__counter {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.available__counter b { font-weight: 500; color: var(--navy); }
.available__counter span { color: var(--muted); }

.available__media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #000;
}

@media (max-width: 980px) {
  .available { padding: 70px 22px; }
  .available__inner { grid-template-columns: 1fr; min-height: 0; }
  .available__media { aspect-ratio: 4/3; }
  .available__panel { padding: 36px 28px; }
}

/* ============================================
   TESTIMONIAL band
   ============================================ */

.quote {
  background: var(--paper);
  padding: 110px 56px;
}

.quote__panel {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: #14283f;
  color: #fff;
  padding: 70px 56px;
}

.quote__mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  margin: 0 0 18px;
}

.quote__text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 26px;
  text-wrap: balance;
}

.quote__attr {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 980px) {
  .quote { padding: 70px 22px; }
  .quote__panel { padding: 48px 24px; }
}

@media (max-width: 980px) {
  .nav { padding: 14px 22px; grid-template-columns: auto 1fr; }
  .nav.is-solid { padding: 10px 22px; }
  .nav__group--left { display: none; }
  .nav__group--right { display: flex; justify-content: flex-end; gap: 0; }
  .nav__group--right .nav__link { display: none; }
  .nav__hamburger { display: grid; place-items: center; color: #fff; }
  .nav.is-solid .nav__hamburger { color: var(--navy); }
  .nav__logo { height: 44px; padding: 0; justify-self: start; }

  .section { padding: 80px 22px; }
  .strip { grid-template-columns: 1fr; padding: 0 22px 80px; }
  .features { grid-template-columns: 1fr; }
  .footer { padding: 60px 22px 28px; }
  .footer__nav { gap: 22px; }
  .form { padding: 36px 22px; }
  .form__row { grid-template-columns: 1fr; gap: 18px; }
  .team__row, .team__row--reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .team { gap: 80px; }
  .masonry { column-count: 1; }
  .lightbox__panel { grid-template-columns: 1fr; max-height: 92vh; overflow: auto; }
  .lightbox__media { height: 60vh; }
  .lightbox__info { padding: 28px; }
  .contact-meta { grid-template-columns: 1fr; gap: 28px; }
  .pagehero { height: 50vh; min-height: 360px; }
  .hero__content { bottom: 12vh; }
}

/* Mobile nav drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 80px 32px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.drawer__nav a {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
}
