/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #2d6b63;
  --teal-deep: #1e5c54;
  --teal-bright: #3d7a70;
  --teal-pale: #c8deda;
  --teal-mid: #9ec2bc;

  --coral: #e06a45;
  --coral-light: #ea8b6b;
  --coral-pale: #f5c4b0;
  --blush: #a85e3a;

  --cream: #e8f0ee;
  --warm: #f5faf9;
  --section-bg: #ddeae7;

  --dark: #1a2e2b;
  --mid: #3a5450;
  --muted: #5a8078;
  --light: #8ab4ae;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;

  --shadow-soft: 0 18px 45px rgba(26, 46, 43, 0.12);
  --shadow-card: 0 28px 70px rgba(26, 46, 43, 0.16);

  /* New: transition timing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ================================================================
   NAV — refined with subtle border, improved logo area
================================================================ */

.nav {
  height: 82px;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  background: rgba(30, 92, 84, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 222, 218, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background 0.35s var(--ease);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  min-width: 120px;
}

.nav-logo {
  height: 44px;
  transform: scale(3.25);
  transform-origin: left center;
  transition: opacity 0.25s;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.8rem);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 240, 238, 0.72);
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--coral-light);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.5rem;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(224, 106, 69, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  background: var(--blush);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(168, 94, 58, 0.32);
}

.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(232, 240, 238, 0.2);
  border-radius: 50%;
  background: rgba(232, 240, 238, 0.08);
  cursor: pointer;
  transition: background 0.25s;
}

.nav-hamburger:hover {
  background: rgba(232, 240, 238, 0.14);
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(232, 240, 238, 0.9);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-drawer {
  display: none;
}

/* ================================================================
   HERO — richer layered bg, refined content spacing
================================================================ */

.hero-video {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--cream);
}

.hero-video__bg,
.hero-video__placeholder,
.hero-video__vid,
.hero-video__overlay {
  position: absolute;
  inset: 0;
}

.hero-video__bg {
  z-index: 0;
}

.hero-video__vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.ph-anim {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 65% at 66% 30%, rgba(45, 107, 99, 0.26), transparent 65%),
    radial-gradient(ellipse 38% 48% at 18% 78%, rgba(224, 106, 69, 0.12), transparent 60%),
    radial-gradient(ellipse 30% 40% at 85% 80%, rgba(158, 194, 188, 0.2), transparent 55%),
    linear-gradient(158deg, #bcd2ce 0%, #cce0dc 40%, #d6e8e5 65%, #ece0d8 100%);
  animation: ambientShift 14s ease-in-out infinite alternate;
}

@keyframes ambientShift {
  from { filter: hue-rotate(0deg) brightness(1); }
  to   { filter: hue-rotate(7deg) brightness(1.04); }
}

.hero-video__overlay {
  z-index: 2;
  background:
    linear-gradient(
      to top,
      rgba(196, 218, 214, 0.92) 0%,
      rgba(196, 218, 214, 0.4)  50%,
      rgba(196, 218, 214, 0.06) 100%
    );
}

/* Decorative ring — extra inner ring added */
.hero-video__deco {
  position: absolute;
  top: 3rem;
  right: 4rem;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(45, 107, 99, 0.2);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  animation: ringRotate 40s linear infinite;
}

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

.hero-video__deco::before {
  content: '';
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(224, 106, 69, 0.16);
  border-radius: 50%;
}

.hero-video__deco::after {
  content: '';
  position: absolute;
  inset: 52px;
  border: 1px dashed rgba(45, 107, 99, 0.12);
  border-radius: 50%;
}

.hero-video__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem) clamp(4rem, 9vw, 7rem);
}

/* Tag with leading line */
.hv-tag {
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush);
}

.hv-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blush);
  opacity: 0.55;
}

.hv-title {
  max-width: 820px;
  margin-bottom: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.hv-title em {
  color: var(--teal);
  font-style: italic;
}

/* Sub with left border accent */
.hv-sub {
  max-width: 470px;
  margin-bottom: 2.4rem;
  font-size: clamp(0.86rem, 1.3vw, 0.96rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  padding-left: 1.1rem;
  border-left: 2px solid rgba(45, 107, 99, 0.28);
}

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

.hv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  border: 1px solid rgba(45, 107, 99, 0.38);
  border-radius: 999px;
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s var(--ease);
}

.hv-btn:hover {
  background: rgba(45, 107, 99, 0.1);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.hv-btn-solid {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(224, 106, 69, 0.26);
}

.hv-btn-solid:hover {
  background: var(--blush);
  border-color: var(--blush);
  box-shadow: 0 14px 30px rgba(168, 94, 58, 0.3);
}

.hero-video__mute {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 10;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 107, 99, 0.28);
  border-radius: 50%;
  background: rgba(232, 240, 238, 0.68);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.hero-video__mute:hover {
  background: rgba(232, 240, 238, 0.92);
  transform: scale(1.05);
}

.hero-video__mute svg {
  width: 15px;
  height: 15px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.5;
}

.hero-video__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.hero-video__scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(26, 46, 43, 0.38);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(45, 107, 99, 0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.12); }
}

/* ================================================================
   TYPOGRAPHY HELPERS
================================================================ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--coral);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--coral-pale);
}

.section-h2 {
  margin-bottom: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--dark);
}

.section-h2 em {
  color: var(--teal);
  font-style: italic;
}

.section-p {
  max-width: 430px;
  margin-bottom: 1.1rem;
  color: var(--mid);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  font-weight: 300;
  line-height: 1.95;
}

.pull-quote {
  margin-top: 2.2rem;
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--teal-mid);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(4px);
}

.pull-quote p {
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}

.pull-quote cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.61rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ================================================================
   HERITAGE / TODAY — improved photo frame, badge, hover lift
================================================================ */

.heritage,
.today {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  align-items: stretch;
}

.heritage-photo,
.today-photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
}

.heritage-photo {
  background: linear-gradient(148deg, #b4d0cc 0%, #c8e0dc 55%, #d4e8e4 100%);
}

.today-photo {
  background: linear-gradient(148deg, #bed4d0 0%, #ccdeda 55%, #dde8e4 100%);
}

.heritage-photo-inner,
.today-photo-inner {
  position: relative;
  width: 72%;
  padding-bottom: 88%;
  transition: transform 0.5s var(--ease);
}

.heritage-photo:hover .heritage-photo-inner,
.today-photo:hover .today-photo-inner {
  transform: translateY(-6px);
}

.heritage-frame,
.today-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--teal-mid);
  border-radius: 26px;
  background: linear-gradient(160deg, #c8deda 0%, #b2cec9 40%, #e8ddd0 100%);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.today-frame {
  background: linear-gradient(160deg, #b8d0cc 0%, #c8deda 45%, #e8ddd0 100%);
}

.heritage-frame::before,
.today-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(45, 107, 99, 0.16);
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
}

.heritage-frame::after {
  content: '';
  position: absolute;
  top: 24px; left: 24px;
  width: 28px; height: 28px;
  border-top: 1px solid rgba(224, 106, 69, 0.42);
  border-left: 1px solid rgba(224, 106, 69, 0.42);
  z-index: 2;
}

.today-frame::after {
  content: '';
  position: absolute;
  top: 24px; right: 24px;
  width: 28px; height: 28px;
  border-top: 1px solid rgba(224, 106, 69, 0.42);
  border-right: 1px solid rgba(224, 106, 69, 0.42);
  z-index: 2;
}

.corner-br,
.corner-bl {
  position: absolute;
  bottom: 24px;
  width: 28px; height: 28px;
  z-index: 2;
  pointer-events: none;
}

.corner-br {
  right: 24px;
  border-bottom: 1px solid rgba(224, 106, 69, 0.42);
  border-right: 1px solid rgba(224, 106, 69, 0.42);
}

.corner-bl {
  left: 24px;
  border-bottom: 1px solid rgba(224, 106, 69, 0.42);
  border-left: 1px solid rgba(224, 106, 69, 0.42);
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  padding: 2rem;
  opacity: 0.45;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 1rem;
}

.ph-label {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

.year-badge,
.today-badge {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.year-badge:hover,
.today-badge:hover {
  transform: scale(1.06);
  box-shadow: 0 24px 55px rgba(26, 46, 43, 0.18);
}

.year-badge {
  right: -1rem;
  bottom: -1rem;
  background: var(--coral);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.today-badge {
  left: -1rem;
  top: -1rem;
  background: var(--teal-bright);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.year-badge strong,
.today-badge strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 300;
  line-height: 1;
}

.today-badge strong { font-size: 0.98rem; }

.year-badge span,
.today-badge span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.46rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.heritage-text,
.today-text {
  padding: clamp(3.5rem, 6vw, 6.5rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.heritage-text {
  background: var(--warm);
  border-left: 1px solid var(--teal-pale);
}

.today-text {
  background: var(--section-bg);
}

.today-text .eyebrow {
  color: var(--teal-deep);
}

.today-text .eyebrow::after {
  background: var(--teal-mid);
}

/* ================================================================
   DIVIDER — refined spacing and mark style
================================================================ */

.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.8rem clamp(1.5rem, 5vw, 5.5rem);
  background: var(--cream);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal-mid), transparent);
}

.divider-mark {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.12em;
  white-space: nowrap;
  opacity: 0.8;
}

/* ================================================================
   CAROUSEL SECTION — stronger image card, better control styling
================================================================ */

.csec {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  border-top: 1px solid var(--teal-mid);
  background: var(--section-bg);
}

.csec::before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(45, 107, 99, 0.06);
  pointer-events: none;
}

.csec::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(224, 106, 69, 0.04);
  pointer-events: none;
}

.cc-viewport {
  width: 100%;
  overflow: hidden;
}

.cc-track {
  display: flex;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
}

.cc-slide {
  min-width: 100%;
  max-width: 1440px;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cc-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--teal-mid);
  border-radius: 26px;
  background: var(--teal-pale);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease);
}

.cc-img-wrap:hover {
  box-shadow: 0 38px 90px rgba(26, 46, 43, 0.2);
  transform: translateY(-4px);
}

.cc-img-fill,
.story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(148deg, #b4ccc8 0%, #c4d8d4 45%, #e4d8d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.cc-img-placeholder svg { opacity: 0.24; }

.cc-img-placeholder p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
}

.cc-img-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: var(--coral);
}

.cc-img-badge span {
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cc-text { padding: 1rem 0; }

.cc-num {
  margin-bottom: 0.65rem;
  color: var(--teal-mid);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.7;
}

.cc-eyebrow {
  margin-bottom: 0.9rem;
  color: var(--blush);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cc-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--coral-pale);
}

.cc-title {
  margin-bottom: 1.25rem;
  color: var(--dark);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.022em;
}

.cc-title em {
  color: var(--teal);
  font-style: italic;
}

.cc-body {
  max-width: 410px;
  margin-bottom: 1.85rem;
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
}

.cc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(45, 107, 99, 0.38);
  border-radius: 999px;
  color: var(--dark);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s var(--ease);
}

.cc-link:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: translateY(-2px);
}

.cc-controls {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.8rem clamp(1.5rem, 5vw, 5.5rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cc-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.cc-dot {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-mid);
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.35s ease, opacity 0.35s;
  opacity: 0.6;
}

.cc-dot.on {
  width: 44px;
  background: var(--coral);
  opacity: 1;
}

.cc-arrows {
  display: flex;
  gap: 0.75rem;
}

.cc-prev,
.cc-next {
  width: 48px;
  height: 48px;
  border: 1px solid var(--teal-mid);
  border-radius: 50%;
  background: var(--warm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.28s var(--ease), box-shadow 0.25s ease;
}

.cc-prev:hover,
.cc-next:hover {
  background: var(--teal-pale);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(45, 107, 99, 0.14);
}

.cc-prev svg,
.cc-next svg {
  width: 15px;
  height: 15px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.5;
}

/* ================================================================
   FOOTER — richer bg, improved row rhythm
================================================================ */

.footer {
  background: var(--teal-deep);
  color: rgba(212, 232, 229, 0.85);
  border-top: 1px solid rgba(212, 232, 229, 0.12);
}

.footer-main {
  padding: 4.5rem clamp(1.5rem, 5vw, 5.5rem) 3rem;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.25fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(212, 232, 229, 0.12);
}

.footer-logo {
  height: 46px;
  transform: scale(3.5);
  transform-origin: left center;
  display: block;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  max-width: 280px;
  margin-bottom: 1.6rem;
  color: rgba(212, 232, 229, 0.62);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.88;
}

.footer-socials {
  display: flex;
  gap: 0.55rem;
}

.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212, 232, 229, 0.28);
  border-radius: 50%;
  background: transparent;
  color: rgba(212, 232, 229, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.28s var(--ease);
}

.footer-social:hover {
  border-color: var(--coral-light);
  background: rgba(224, 106, 69, 0.14);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social i,
.footer-social svg {
  width: 13px;
  height: 13px;
  font-size: 13px;
  color: currentColor;
  stroke: currentColor;
}

.footer-col-title {
  margin-bottom: 1.4rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 232, 229, 0.18);
  color: rgba(212, 232, 229, 0.65);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: rgba(212, 232, 229, 0.7);
  font-size: 0.8rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-col ul li a:hover {
  color: var(--warm);
  transform: translateX(4px);
}

.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.footer-info-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 0.25rem;
}

.footer-info-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--coral-light);
  fill: none;
  stroke-width: 1.7;
}

.footer-info-text {
  color: rgba(212, 232, 229, 0.72);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.68;
}

.footer-info-text strong {
  display: block;
  margin-bottom: 2px;
  color: var(--warm);
  font-weight: 500;
}

.footer-bottom {
  padding: 1.35rem clamp(1.5rem, 5vw, 5.5rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-legal a,
.footer-made {
  font-size: 0.62rem;
  color: rgba(212, 232, 229, 0.52);
}

.footer-legal {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
}

.footer-legal a:hover {
  color: var(--warm);
}

.footer-made {
  margin-left: auto;
  font-style: italic;
  color: rgba(212, 232, 229, 0.44);
}

/* ================================================================
   TABLET
================================================================ */

@media (max-width: 1024px) {
  .nav { padding: 0 2.5rem; }

  .hero-video { min-height: 88vh; }

  .hero-video__deco { width: 140px; height: 140px; }

  .heritage,
  .today { min-height: auto; }

  .heritage-photo-inner,
  .today-photo-inner { width: 78%; }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
  }
}

/* ================================================================
   MOBILE
================================================================ */

@media (max-width: 768px) {
  .nav { height: 72px; padding: 0 1.15rem; }

  .nav-logo { height: 38px; transform: scale(2.7); }

  .nav-links,
  .nav > .nav-cta { display: none; }

  .nav-hamburger { display: flex; }

  .nav-drawer {
    position: fixed;
    top: 82px;
    left: 1rem; right: 1rem;
    z-index: 500;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem;
    border: 1px solid rgba(232, 240, 238, 0.12);
    border-radius: 22px;
    background: rgba(26, 84, 76, 0.98);
    box-shadow: 0 24px 60px rgba(26, 46, 43, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav-drawer.open {
    display: flex;
    animation: drawerIn 0.28s ease forwards;
  }

  .nav-drawer a {
    padding: 0.95rem 1rem;
    border: 1px solid transparent;
    border-radius: 14px;
    color: rgba(232, 240, 238, 0.82);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.2s ease;
  }

  .nav-drawer a:hover {
    color: #fff;
    background: rgba(232, 240, 238, 0.08);
    border-color: rgba(232, 240, 238, 0.1);
  }

  .nav-drawer .nav-cta {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    background: var(--coral);
    color: #fff;
  }

  @keyframes drawerIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .hero-video {
    min-height: 82vh;
    align-items: center;
  }

  .hero-video__content { padding: 5rem 1.25rem 3.5rem; }

  .hero-video__deco,
  .hero-video__scroll { display: none; }

  .hero-video__mute { right: 1.25rem; bottom: 1.25rem; }

  .hv-tag::before { display: none; }

  .hv-title { font-size: clamp(2.8rem, 13vw, 4.4rem); }

  .hv-sub {
    display: block;
    max-width: 95%;
    font-size: 0.86rem;
    line-height: 1.78;
  }

  .hv-btns { width: 100%; flex-direction: column; }

  .hv-btn { width: 100%; padding: 0.95rem 1rem; }

  .heritage,
  .today { grid-template-columns: 1fr; }

  .heritage-photo,
  .today-photo { height: 340px; min-height: unset; }

  .heritage-photo-inner,
  .today-photo-inner {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    padding-bottom: 0;
  }

  .today-text  { order: 1; }
  .today-photo { order: 2; }

  .heritage-text,
  .today-text { padding: 3.2rem 1.25rem; }

  .section-p { max-width: 100%; font-size: 0.9rem; line-height: 1.88; }

  .divider { padding: 2rem 1.25rem; }

  .divider-mark { text-align: center; font-size: 0.72rem; }

  .cc-slide { grid-template-columns: 1fr; gap: 1.5rem; }

  .cc-img-wrap { aspect-ratio: 16 / 10; border-radius: 20px; }

  .cc-body { max-width: 100%; }

  .cc-link { width: 100%; }

  .cc-controls { padding-top: 1.75rem; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-top: 3rem;
    padding-bottom: 2.25rem;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-brand-desc { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .footer-legal,
  .footer-made { margin-left: 0; }

  .footer-made { display: none; }
}

/* ================================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 480px) {
  .nav-logo { transform: scale(2.35); }

  .hero-video { min-height: 86vh; }

  .hero-video__content { padding-top: 4.5rem; }

  .hv-sub { font-size: 0.82rem; }

  .heritage-photo,
  .today-photo { height: 260px; }

  .year-badge,
  .today-badge { width: 68px; height: 68px; }

  .year-badge strong { font-size: 0.98rem; }

  .today-badge strong { font-size: 0.78rem; }

  .pull-quote { padding: 1.1rem; }

  .pull-quote p { font-size: 1.1rem; }

  .cc-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }

  .cc-dots,
  .cc-arrows { justify-content: center; }

  .cc-prev,
  .cc-next { width: 48px; height: 48px; }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-logo { margin-bottom: 3rem; }

  .footer-legal { gap: 1rem; flex-wrap: wrap; }
}