
/* 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: 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%
    );
}

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

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

.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 {
  margin-bottom: 1.5rem;
  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: 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-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;
}

/* ================================================================
   HERITAGE / TODAY
================================================================ */

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

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

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

.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 — absolute on left/right edges */
.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 {
  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;
}

/* Flower icon replaces the number */
/* ================================================================
   CAROUSEL CONTENT
================================================================ */

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

/* Header (flower + title) */
.cc-header{
  margin-bottom:1.5rem;
}

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

.cc-flower{
  width:1.2rem;
  height:1.2rem;
  object-fit:contain;
  flex-shrink:0;
  opacity:.9;
}

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

.cc-title{
  margin:0;
  color:var(--dark);
  font-family:var(--serif);
  font-size:clamp(2.3rem, 3.5vw, 3.4rem);
  font-weight:300;
  line-height:0.98;
  letter-spacing:-0.03em;
}

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

.cc-body{
  max-width:460px;
  margin-bottom:2rem;
  color:var(--mid);
  font-size:0.92rem;
  font-weight:300;
  line-height:1.95;
}

.cc-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  padding:0.85rem 1.6rem;
  border:1px solid rgba(45,107,99,.38);
  border-radius:999px;
  color:var(--dark);
  font-size:.67rem;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  transition:
    background .28s ease,
    border-color .28s ease,
    color .28s ease,
    transform .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:.55rem;
}

.cc-dot{
  width:20px;
  height:2px;
  border-radius:999px;
  background:var(--teal-mid);
  opacity:.6;
  cursor:pointer;
  transition:
    width .35s var(--ease),
    background .35s ease,
    opacity .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 .25s ease,
    border-color .25s ease,
    transform .28s var(--ease),
    box-shadow .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,.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: 0;
  margin-bottom: 2.4rem;
}

.footer-flower {
  height: 40px;
  width: 40px;
  display: block;
  object-fit: contain;
  margin: 0;
  flex-shrink: 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: 54px;
  width: auto;
  display: block;
  margin-left: -6px;
  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 {
  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;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.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: 48px;
    width: auto;
    margin-left: -4px;
    transform: none;
  }

  .nav-flower {
    height: 36px;
    width: 36px;
    margin: 0;
  }

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

  /* On mobile: hide side arrows, show bottom arrows */
  .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;
  }

  .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; }
  .cc-header{
  gap:.9rem;

  .footer-brand-lockup {
    margin-bottom: 1.8rem;
  }

  .footer-flower {
    height: 34px;
    width: 34px;
  }

  .footer-logo {
    height: 46px;
    width: auto;
    margin-left: -4px;
    margin-bottom: 0;
    transform: none;
  }
}

.cc-flower{
  width:2.5rem;
  height:2.5rem;
}

.cc-title{
  font-size:clamp(1.9rem,7vw,2.4rem);
}

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

.cc-link{
  width:100%;
}
}

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

@media (max-width: 480px) {
  .nav-logo {
    height: 42px;
    width: auto;
    margin-left: -3px;
    transform: none;
  }

  .nav-flower {
    height: 30px;
    width: 30px;
    margin: 0;
  }

  .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 {
    height: 42px;
    width: auto;
    margin-bottom: 2rem;
  }

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

  .footer-brand-lockup {
    margin-bottom: 1.5rem;
  }

  .footer-flower {
    height: 28px;
    width: 28px;
  }

  .footer-logo {
    height: 40px;
    width: auto;
    margin-left: -3px;
    margin-bottom: 0;
    transform: none;
  }
}

.cc-flower{
  width:2.1rem;
  height:2.1rem;
}

.cc-kicker{
  font-size:.55rem;
}

.cc-title{
  font-size:1.8rem;
}
}

/* ================================================================
   FOOTER RESPONSIVE OVERRIDES
   Keeps footer flower + logo lockup responsive on all screens
================================================================ */

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 2.2rem;
}

.footer-flower {
  height: clamp(30px, 3vw, 40px);
  width: clamp(30px, 3vw, 40px);
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  margin: 0;
  opacity: 0.9;
}

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

.footer-brand-desc {
  max-width: 320px;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .footer-brand-desc {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .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-flower {
    height: 34px;
    width: 34px;
  }

  .footer-logo {
    height: 46px;
    max-width: 220px;
    margin-left: -4px;
  }

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

@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-info-row {
    gap: 0.65rem;
  }

  .footer-legal {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .footer-brand-lockup {
    margin-bottom: 1.45rem;
  }

  .footer-flower {
    height: 28px;
    width: 28px;
  }

  .footer-logo {
    height: 40px;
    max-width: 190px;
    margin-left: -3px;
  }

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

@media (max-width: 360px) {
  .footer-flower {
    height: 25px;
    width: 25px;
  }

  .footer-logo {
    height: 36px;
    max-width: 165px;
    margin-left: -2px;
  }
}

/* ================================================================
   FINAL LOGO LOCKUP SPACING FIX
   This is intentionally placed at the end so it overrides older rules.
================================================================ */

/* Navbar flower + logo spacing */
.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;
}

/* Footer flower + logo spacing */
.footer .footer-brand-lockup {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: fit-content !important;
  max-width: 100% !important;
}

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

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

/* Responsive sizes only */
@media (max-width: 768px) {
  .nav .nav-logo-link {
    gap: 8px !important;
  }

  .footer .footer-brand-lockup {
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  .nav .nav-logo-link {
    gap: 6px !important;
  }

  .footer .footer-brand-lockup {
    gap: 6px !important;
  }
}

/* ================================================================
   SECTION KICKER FLOWER ICONS
   Heritage + Beryt Today use the same icon treatment as carousel
================================================================ */

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

.section-kicker-row .eyebrow {
  margin-bottom: 0;
}

.section-flower {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

/* Keep carousel flower small; this fixes older mobile overrides */
.cc-flower {
  width: 1.2rem;
  height: 1.2rem;
}

@media (max-width: 768px) {
  .section-kicker-row {
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .section-flower {
    width: 1.05rem;
    height: 1.05rem;
  }

  .cc-flower {
    width: 1.05rem;
    height: 1.05rem;
  }
}

@media (max-width: 480px) {
  .section-kicker-row {
    gap: 0.55rem;
  }

  .section-flower {
    width: 0.95rem;
    height: 0.95rem;
  }

  .cc-flower {
    width: 0.95rem;
    height: 0.95rem;
  }
}


/* ================================================================
   SAFE RESPONSIVE CLEANUP
================================================================ */

@media (max-width: 768px) {
  .cc-header {
    margin-bottom: 1.35rem;
  }

  .cc-kicker-row {
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .cc-header {
    margin-bottom: 1.2rem;
  }

  .cc-kicker-row {
    gap: 0.55rem;
  }
}

/* ================================================================
   FINAL HERO RESPONSIVE REFINEMENT
   Balanced desktop/tablet/mobile layout
================================================================ */

.hero-video {
  min-height: calc(100vh - 82px);
  align-items: center;
}

.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-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;
  margin-top: 0;
}

.hv-btn {
  min-width: 170px;
  padding: 0.9rem 1.65rem;
}

.hero-video__scroll {
  bottom: 1.8rem;
  opacity: 0.75;
}

/* Medium desktop */
@media (max-width: 1180px) {
  .hero-video__content {
    padding-left: clamp(1.5rem, 5vw, 4.5rem);
    padding-right: clamp(1.5rem, 5vw, 4.5rem);
  }

  .hv-title {
    max-width: 700px;
    font-size: clamp(3.8rem, 7.8vw, 6.2rem);
  }
}

/* Tablet */
@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);
  }

  .hv-note {
    max-width: 560px;
  }

  .hv-sub {
    max-width: 560px;
  }

  .hero-video__scroll {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-video {
    min-height: 86vh;
    align-items: center;
  }

  .hero-video__content {
    padding:
      2.4rem
      1.25rem
      3.75rem;
  }

  .hv-title {
    max-width: 100%;
    margin-bottom: 1.25rem;
    font-size: clamp(3rem, 14vw, 4.75rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .hv-note {
    max-width: 100%;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hv-sub {
    max-width: 100%;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.75;
  }

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

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

/* Small mobile */
@media (max-width: 480px) {
  .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;
  }
}

/* Very small phones */
@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;
  }
}

/* ================================================================
   FINAL CAROUSEL TITLE-ONLY RESTYLE
   Paragraphs removed; titles are the main content
================================================================ */

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

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

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

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

.cc-flower {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

.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-link {
  align-self: flex-start;
  margin-top: 0;
}

.cc-slide {
  align-items: center;
}

/* Tablet */
@media (max-width: 900px) {
  .cc-title {
    max-width: 100%;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cc-text {
    padding: 0.25rem 0 0;
  }

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

  .cc-kicker-row {
    gap: 0.55rem;
    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;
  }

  .cc-link {
    width: 100%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .cc-title {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .cc-kicker {
    font-size: 0.52rem;
  }

  .cc-link {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }
}
.footer-col-flower {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  opacity: 0.7;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 1px;
}
@media (max-width: 768px) {
  .footer-col-flower {
    width: 1rem;
    height: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-col-flower {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.footer-col-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-col-flower {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  opacity: 0.7;
  flex-shrink: 0;
}