/* Global Poppins Override */
html,
body,
button,
input,
textarea,
select,
a,
p,
span,
div,
li,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

/* ── 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: 'Poppins', sans-serif;
  --sans: 'Poppins', sans-serif;

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

  --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
================================================================ */

.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;
  gap: 0;
  min-width: auto;
  height: 100%;
}

.nav-logo {
  height: 58px;
  width: auto;
  display: block;
  margin-left: -6px;
  transform: none;
  transform-origin: left center;
  transition: opacity 0.25s;
}

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

.nav-flower {
  height: 44px;
  width: 44px;
  display: block;
  object-fit: contain;
  margin: 0;
  flex-shrink: 0;
  opacity: 0.88;
  transition: opacity 0.25s, transform 0.35s var(--ease);
}

.nav-flower:hover {
  opacity: 0.7;
  transform: rotate(30deg);
}

.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
================================================================ */

.hero-video {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  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;
}

/* ── Two hero images: swap at 880px ── */
.hero-video__vid--mobile {
  display: none;
}

@media (max-width: 880px) {
  .hero-video__vid--desktop {
    display: none;
  }
  .hero-video__vid--mobile {
    display: block;
  }
}

.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%
    );
}

.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: 1320px;
  margin: 0 auto;
  padding:
    clamp(4rem, 8vw, 6.5rem)
    clamp(1.5rem, 6vw, 7rem)
    clamp(4rem, 7vw, 6.5rem);
}

.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-title {
  max-width: 760px;
  margin-bottom: 1.45rem;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 7.4vw, 6.85rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--dark);
}

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

.hv-note {
  max-width: 560px;
  margin: 0 0 1rem;
  color: var(--dark);
  font-size: clamp(0.98rem, 1.35vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
}

.hv-sub {
  max-width: 520px;
  margin-bottom: 1.8rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(45, 107, 99, 0.25);
  color: var(--mid);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
}

.hv-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 170px;
  padding: 0.9rem 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: 1.8rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  opacity: 0.75;
}

.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 {
  margin-bottom: 0;
  color: var(--coral);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.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: 720px;
  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-radius: 16px;
  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;
}

/* ================================================================
   SECTION KICKER FLOWER — Heritage & Today
================================================================ */

.section-kicker-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.section-flower {
  width: clamp(1rem, 1.4vw, 1.3rem);
  height: clamp(1rem, 1.4vw, 1.3rem);
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
  display: block;
}

/* ================================================================
   HERITAGE / TODAY
   Photo columns hidden for now — single-column text, tightened spacing
================================================================ */

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

/* ── Photo columns hidden ── */
.heritage-photo,
.today-photo {
  display: none;
}

.heritage-photo-inner,
.today-photo-inner {
  position: relative;
  width: 58%;
  aspect-ratio: 3 / 4;
  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;
}

/* ── Real photo fill (heritage-img / today-img) ── */
.heritage-img,
.today-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.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(2rem, 4vw, 3.25rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.heritage-text > *,
.today-text > * {
  width: 100%;
  max-width: 720px;
}

.heritage-text {
  background: var(--warm);
  border-left: none;
}

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

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

/* ================================================================
   DIVIDER
================================================================ */

.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.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
================================================================ */

.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;
}

/* Side arrows */
.cc-arrow-side {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  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-arrow-left  { left: clamp(0.75rem, 2vw, 1.75rem); }
.cc-arrow-right { right: clamp(0.75rem, 2vw, 1.75rem); }

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

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

.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(4rem, 7vw, 7rem);
  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,
.cc-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;
}

/* ================================================================
   CAROUSEL CONTENT
================================================================ */

.cc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.cc-header {
  margin-bottom: 1.65rem;
}

.cc-kicker-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

/* ── Carousel flower — fixed, visible on all screens ── */
.cc-flower {
  width: clamp(0.9rem, 1.3vw, 1.2rem);
  height: clamp(0.9rem, 1.3vw, 1.2rem);
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
  display: block;
}

.cc-kicker {
  margin: 0;
  color: var(--coral);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1;
}

.cc-title {
  max-width: 620px;
  margin: 0;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

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

.cc-body {
  display: none !important;
}

.cc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.85rem 1.6rem;
  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);
}

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

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

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

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

.cc-arrows {
  display: none;
}

.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
================================================================ */

.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-brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2.4rem;
  width: fit-content;
}

.footer-flower {
  height: clamp(28px, 3vw, 40px);
  width: clamp(28px, 3vw, 40px);
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.35s var(--ease);
}

.footer-flower:hover {
  opacity: 0.72;
  transform: rotate(30deg);
}

.footer-logo {
  height: clamp(40px, 4vw, 54px);
  width: auto;
  display: block;
  margin-left: 0;
  margin-bottom: 0;
  transform: none;
}

.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 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  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-flower {
  width: clamp(0.8rem, 1.1vw, 1.2rem);
  height: clamp(0.8rem, 1.1vw, 1.2rem);
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.7;
  display: block;
}

.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);
}

/* ================================================================
   NAVBAR LOCKUP — final override
================================================================ */

.nav .nav-logo-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: auto !important;
  height: 100% !important;
}

.nav .nav-flower {
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.nav .nav-logo {
  margin-left: 0 !important;
  transform: none !important;
}

/* ================================================================
   TABLET (≤ 1024px)
================================================================ */

@media (max-width: 1024px) {
  .nav { padding: 0 2.5rem; }
  .hero-video { min-height: 88vh; }
  .hero-video__deco { width: 140px; height: 140px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }

  .cc-title { font-size: clamp(1.85rem, 4vw, 2.55rem); }
  .section-flower { width: 1.1rem; height: 1.1rem; }
}

/* ================================================================
   TABLET (≤ 900px)
================================================================ */

@media (max-width: 900px) {
  .hero-video { min-height: calc(100vh - 72px); }
  .hero-video__content {
    padding: clamp(3.5rem, 9vw, 5rem) 1.5rem clamp(4rem, 9vw, 5.5rem);
  }
  .hv-title { max-width: 680px; font-size: clamp(3.4rem, 11vw, 5.8rem); }
  .hero-video__scroll { display: none; }

  .cc-title { max-width: 100%; font-size: clamp(1.85rem, 4vw, 2.55rem); }
  .cc-flower { width: 1rem; height: 1rem; }
  .section-flower { width: 1rem; height: 1rem; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand-desc { max-width: 560px; }
}

/* ================================================================
   MOBILE (≤ 768px)
================================================================ */

@media (max-width: 768px) {
  .nav { height: 72px; padding: 0 1.15rem; }
  .nav-logo { height: 48px; margin-left: -4px; }
  .nav-flower { height: 36px; width: 36px; }
  .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: 86vh; align-items: center; }
  .hero-video__content { padding: 2.4rem 1.25rem 3.75rem; }
  .hero-video__deco, .hero-video__scroll { display: none; }
  .hero-video__mute { right: 1.25rem; bottom: 1.25rem; }

  .hv-title { max-width: 100%; font-size: clamp(3rem, 14vw, 4.75rem); line-height: 0.95; letter-spacing: -0.05em; }
  .hv-note { max-width: 100%; font-size: 0.98rem; }
  .hv-sub { max-width: 100%; font-size: 0.88rem; line-height: 1.75; }


  .heritage-text, .today-text { padding: 2.4rem 1.25rem; }
  .section-p { max-width: 100%; font-size: 0.9rem; line-height: 1.88; }

  .section-kicker-row { gap: 0.6rem; margin-bottom: 1.25rem; }
  .section-flower { width: 0.95rem; height: 0.95rem; }

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

  .cc-arrow-side { display: none; }
  .cc-arrows { display: flex; gap: 0.75rem; }
  .cc-controls { justify-content: space-between; }

  .cc-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.25rem;
  }
  /* ── Carousel photo — taller on smaller screens ── */
  .cc-img-wrap { aspect-ratio: 4 / 3; border-radius: 20px; }
  .cc-controls { padding-top: 1.75rem; }
  .cc-link { width: 100%; }

  .cc-header { margin-bottom: 1.35rem; }
  .cc-kicker-row { gap: 0.6rem; margin-bottom: 0.8rem; }
  .cc-flower { width: 0.9rem; height: 0.9rem; }
  .cc-kicker { font-size: 0.56rem; letter-spacing: 0.2em; }
  .cc-title { font-size: clamp(1.55rem, 7vw, 2.2rem); line-height: 1.18; letter-spacing: -0.025em; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.25rem 2.25rem;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand-lockup { margin-bottom: 1.7rem; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { padding: 1.25rem; flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .footer-legal, .footer-made { margin-left: 0; }
}

/* ================================================================
   SMALL MOBILE (≤ 560px)
================================================================ */

@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; padding: 2.6rem 1.15rem 2rem; gap: 2rem; }
  .footer-col-title { margin-bottom: 1rem; }
  .footer-col ul { gap: 0.65rem; }
  .footer-legal { width: 100%; flex-wrap: wrap; gap: 0.8rem 1rem; }
}

/* ================================================================
   SMALL MOBILE (≤ 480px)
================================================================ */

@media (max-width: 480px) {
  .nav-logo { height: 42px; margin-left: -3px; }
  .nav-flower { height: 30px; width: 30px; }
  .hero-video { min-height: 88vh; }
  .hero-video__content { padding: 2rem 1rem 3.4rem; }
  .hv-title { font-size: clamp(2.65rem, 14.5vw, 3.85rem); line-height: 0.98; }
  .hv-note { font-size: 0.9rem; }
  .hv-sub { padding-left: 0.85rem; font-size: 0.82rem; }

  .section-kicker-row { gap: 0.55rem; }
  .section-flower { width: 0.85rem; height: 0.85rem; }

  .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; }
  .cc-header { margin-bottom: 1.2rem; }
  .cc-kicker-row { gap: 0.55rem; }
  .cc-flower { width: 0.85rem; height: 0.85rem; }
  .cc-kicker { font-size: 0.52rem; }
  .cc-title { font-size: clamp(1.45rem, 8vw, 2rem); }
  .cc-link { font-size: 0.6rem; letter-spacing: 0.14em; }

  /* ── Carousel photo — even taller on very small screens ── */
  .cc-img-wrap { aspect-ratio: 1 / 1; }

  .footer-brand-lockup { margin-bottom: 1.45rem; }
  .footer-brand-desc { font-size: 0.8rem; line-height: 1.8; }
  .footer-copy, .footer-legal a, .footer-made { font-size: 0.6rem; line-height: 1.6; }
  .footer-legal { gap: 1rem; flex-wrap: wrap; }
}

/* ================================================================
   VERY SMALL (≤ 360px)
================================================================ */

@media (max-width: 360px) {
  .hv-title { font-size: clamp(2.35rem, 14vw, 3.3rem); }
  .hv-note { font-size: 0.84rem; }
  .hv-sub { font-size: 0.78rem; }
  .section-flower { width: 0.8rem; height: 0.8rem; }
  .cc-flower { width: 0.8rem; height: 0.8rem; }
}