:root {
  --sand: #f4ede0;        /* warm paper */
  --sand-deep: #ebe0cd;   /* alt sections / cards */
  --foam: #e6efe9;        /* pale water tint */
  --ink: #212e28;         /* deep forest charcoal (text) */
  --muted: #6b7a70;       /* muted sage */
  --line: #ded4c1;        /* hairlines */
  --ocean: #1c6f69;       /* teal */
  --ocean-deep: #113f3c;  /* deep teal section */
  --forest: #3e5a44;      /* forest green */
  --accent: #e8836b;      /* CALI coral */
  --accent-dark: #d76a52;
  --max: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: "Poppins", "DM Sans", sans-serif; font-weight: 700; letter-spacing: -0.02em; }

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}
header.solid {
  background: rgba(244, 237, 224, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; color: #fff; transition: color 0.35s ease; }
.logo-wm { font-weight: 700; letter-spacing: 0.2em; font-size: 0.92rem; text-transform: uppercase; white-space: nowrap; }
.logo-wm span { color: var(--accent); }
header.solid .logo { color: var(--ink); }
.logo-mark { height: 34px; width: auto; display: block; }
.logo-mark-dark { display: none; }
header.solid .logo-mark-light { display: none; }
header.solid .logo-mark-dark { display: block; }
nav { display: flex; align-items: center; gap: 24px; }
nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
nav ul a { font-size: 0.85rem; color: rgba(255,255,255,0.9); transition: color 0.2s; }
header.solid nav ul a { color: var(--muted); }
nav ul a:hover { color: #fff; }
header.solid nav ul a:hover { color: var(--ink); }
nav ul a.active { color: #fff; font-weight: 600; }
header.solid nav ul a.active { color: var(--accent-dark); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: none; cursor: pointer;
  margin: 0 -10px 0 0;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.35s ease;
}
header.solid .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden; z-index: 0; isolation: isolate;
  display: inline-block;
  background: transparent; color: #fff;
  padding: 13px 32px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  text-align: center; text-indent: 0.04em;
  transition: color 0.3s ease;
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.btn:hover { color: #fff; }
.btn:hover::after { transform: scaleX(1); }
.btn-lg { padding: 17px 44px; font-size: 0.95rem; }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,0.6); }
.btn-ghost::before { background: rgba(255,255,255,0.12); }
.btn-ghost::after { background: #fff; }
.btn-ghost:hover { color: var(--ink); border-color: transparent; }
/* coral-filled CTA — signature colour up front */
.btn-coral { color: #fff; }
.btn-coral::before { background: var(--accent); }
.btn-coral::after { background: var(--accent-dark); }
.btn-coral:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) { .btn::after { transition: none; } }

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  #primary-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sand); border-bottom: 1px solid var(--line);
    padding: 10px 28px 26px;
    box-shadow: 0 16px 30px rgba(33, 46, 40, 0.12);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
    pointer-events: none;
  }
  #primary-menu.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  #primary-menu li { width: 100%; }
  #primary-menu li a:not(.btn) {
    display: block; padding: 16px 2px; font-size: 1.05rem;
    color: var(--ink); border-bottom: 1px solid var(--line);
    font-family: "Poppins", "DM Sans", sans-serif; font-weight: 600;
  }
  #primary-menu li:has(.btn) { margin-top: 18px; }
  #primary-menu .btn { display: block; width: 100%; padding: 16px; font-size: 0.95rem; }
}

/* ---------- Hero (full-screen, bottom-left) ---------- */
.hero {
  position: relative; isolation: isolate; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(17,63,60,0.45) 0%, rgba(17,63,60,0.05) 30%, rgba(17,63,60,0.75) 100%);
}
.hero-inner { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px 84px; color: #fff; }
.hero .kicker {
  font-size: 0.76rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: #ffd9cd; font-weight: 600; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6.5rem); line-height: 0.98; letter-spacing: -0.015em;
  max-width: 14ch; margin-bottom: 26px; color: #fff;
  text-shadow: 0 2px 40px rgba(17,63,60,0.4);
}
.hero h1 em { font-style: normal; color: #ffb59f; }
.hero-sub { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 46ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; writing-mode: vertical-rl; z-index: 1;
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--ocean-deep); color: var(--foam);
  padding: 20px 0; overflow: hidden; white-space: nowrap;
}
.strip-track { display: inline-flex; gap: 48px; animation: marquee 28s linear infinite; }
.strip span { font-family: "Poppins", "DM Sans", sans-serif; font-weight: 600; font-size: 1.1rem; opacity: 0.95; }
.strip span::after { content: "✦"; margin-left: 48px; color: var(--accent); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 8px; }
.section-label {
  font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 600; margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 22px; }
h2 em { font-style: normal; color: var(--accent); }
.lead { color: var(--muted); max-width: 56ch; font-size: 1.08rem; }

/* ---------- Feature rows (asymmetric editorial) ---------- */
.feature-row {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 68px; align-items: center;
}
.feature-row.reverse .fr-media { order: 2; }
@media (max-width: 860px) { .feature-row { grid-template-columns: 1fr; gap: 34px; } .feature-row.reverse .fr-media { order: 0; } }
.fr-media { position: relative; }
.fr-media img { width: 100%; border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 30px 60px rgba(33,46,40,0.16); }
.fr-badge {
  position: absolute; bottom: -22px; right: -14px;
  background: var(--accent); color: #fff; border-radius: 16px;
  padding: 18px 22px; font-family: "Poppins", "DM Sans", sans-serif; line-height: 1.1;
  box-shadow: 0 16px 30px rgba(215,106,82,0.35);
}
.fr-badge b { display: block; font-size: 1.6rem; }
.fr-badge span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.stats { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.stat { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.stat b { font-weight: 600; }
.stat span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Bento gallery ---------- */
.bento-sec { background: var(--sand-deep); }
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px;
  margin-top: 52px;
}
.bento figure { position: relative; overflow: hidden; border-radius: 16px; }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bento figure:hover img { transform: scale(1.05); }
.bento figcaption {
  position: absolute; left: 16px; bottom: 14px; color: #fff;
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.bento .b1 { grid-column: span 2; grid-row: span 2; }
.bento .b5 { grid-column: span 2; }
@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .bento .b1 { grid-column: span 2; grid-row: span 2; }
  .bento .b5 { grid-column: span 2; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento .b1, .bento .b5 { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Amenities (dark, sticky title + list) ---------- */
.amenities { background: var(--ocean-deep); color: var(--foam); }
.amen-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
@media (max-width: 860px) { .amen-grid { grid-template-columns: 1fr; gap: 40px; } }
.amen-head .section-label { color: #ffb59f; }
.amen-head .section-label::before { background: var(--accent); }
.amen-head h2 { color: #fff; }
.amen-head p { color: rgba(230,239,233,0.78); margin-top: 16px; max-width: 34ch; }
.amen-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; overflow: hidden; }
@media (max-width: 540px) { .amen-list { grid-template-columns: 1fr; } }
.amen-item { background: var(--ocean-deep); padding: 30px 26px; transition: background 0.3s ease; }
.amen-item:hover { background: #16544f; }
.amen-item .icon { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.amen-item h3 { font-family: "DM Sans", sans-serif; font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 5px; }
.amen-item p { font-size: 0.87rem; color: rgba(230,239,233,0.72); }

/* ---------- Explore (horizontal snap scroll) ---------- */
.explore { background: var(--foam); }
.explore-scroll {
  display: flex; gap: 22px; margin-top: 48px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 16px; scrollbar-width: thin;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  padding-left: max(28px, calc(50% - 50vw + 28px));
  padding-right: max(28px, calc(50% - 50vw + 28px));
}
.ex-card {
  flex: 0 0 340px; scroll-snap-align: start;
  background: var(--sand); border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 14px 30px rgba(33,46,40,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; color: inherit; display: block;
}
.ex-card:hover { transform: translateY(-5px); box-shadow: 0 24px 42px rgba(33,46,40,0.15); }
.ex-card .ex-body h3::after {
  content: "↗"; display: inline-block; margin-left: 8px;
  color: var(--accent); font-size: 0.82em; opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ex-card:hover .ex-body h3::after { opacity: 1; transform: translate(2px, -2px); }
.ex-card svg { display: block; width: 100%; height: auto; }
.ex-card img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.ex-body { padding: 26px 28px 32px; }
.ex-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.ex-body p { font-size: 0.9rem; color: var(--muted); }
.ex-body small { display: block; margin-top: 16px; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; }
@media (max-width: 520px) { .ex-card { flex-basis: 82vw; } }

/* ---------- Location ---------- */
.location { background: var(--sand); }
.loc-card {
  position: relative; isolation: isolate; border-radius: 22px; overflow: hidden;
  min-height: 460px; display: flex; align-items: flex-end;
  box-shadow: 0 30px 60px rgba(33,46,40,0.18);
}
.loc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.loc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(17,63,60,0.92) 0%, rgba(17,63,60,0.7) 55%, rgba(17,63,60,0.45) 100%); }
.loc-inner { padding: 48px; color: #fff; max-width: 560px; }
.loc-inner .section-label { color: #ffd9cd; }
.loc-inner .section-label::before { background: #fff; }
.loc-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.loc-inner p { color: rgba(255,255,255,0.9); margin-bottom: 26px; }
.loc-links { display: flex; gap: 26px; flex-wrap: wrap; }
.loc-links a { font-size: 0.9rem; font-weight: 600; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: 3px; transition: border-color 0.2s; }
.loc-links a:hover { border-color: #fff; }
@media (max-width: 640px) {
  .loc-inner { padding: 32px 26px; }
  .loc-card::after { background: linear-gradient(180deg, rgba(17,63,60,0.6) 0%, rgba(17,63,60,0.85) 100%); }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden; text-align: center;
  padding: 130px 0;
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(17,63,60,0.66); }
.cta-band .section-label { justify-content: center; color: #ffd9cd; }
.cta-band .section-label::before { display: none; }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 auto 18px; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 46ch; margin: 0 auto 38px; }

/* ---------- Rooms page ---------- */
.page-hero { padding: 150px 0 60px; background: var(--ocean-deep); color: #fff; text-align: center; }
.page-hero .kicker { font-size: 0.76rem; letter-spacing: 0.3em; text-transform: uppercase; color: #ffd9cd; font-weight: 600; margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 4.6rem); color: #fff; margin-bottom: 22px; }
.page-hero .lead { color: rgba(255,255,255,0.85); margin: 0 auto; }
.banner { margin-top: -60px; position: relative; z-index: 1; }
.banner img { width: 100%; aspect-ratio: 16/6; object-fit: cover; border-radius: 18px; box-shadow: 0 30px 60px rgba(33,46,40,0.2); }
.rooms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px; }
@media (max-width: 720px) { .rooms { grid-template-columns: 1fr; } }
.room { border: 1px solid var(--line); border-radius: 18px; padding: 34px; background: #fffdf9; display: flex; flex-direction: column; gap: 14px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.room:hover { transform: translateY(-4px); box-shadow: 0 22px 40px rgba(33,46,40,0.1); }
.room-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.room h3 { font-size: 1.35rem; }
.sleeps { font-size: 0.74rem; color: var(--muted); white-space: nowrap; letter-spacing: 0.08em; text-transform: uppercase; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: 0.74rem; font-weight: 600; color: var(--accent-dark); background: #fbe7e0; border-radius: 999px; padding: 4px 12px; }
.tag.neutral { color: var(--muted); background: var(--sand-deep); }
.room p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.room .book { font-size: 0.88rem; font-weight: 600; align-self: flex-start; border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.room .book:hover { color: var(--accent-dark); border-color: var(--accent-dark); }
.room.feature { grid-column: 1 / -1; background: var(--ocean-deep); color: var(--foam); border-color: var(--ocean-deep); justify-content: center; text-align: center; gap: 18px; }
.room.feature h3 { color: #fff; }
.room.feature p { color: rgba(230,239,233,0.75); flex: 0; }
.room.feature .btn { align-self: center; }
.room.feature .btn::before { background: var(--accent); }
.room.feature .btn::after { background: var(--accent-dark); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr; } }
.gallery figure img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: 16px; box-shadow: 0 14px 30px rgba(33,46,40,0.1); }
.gallery figcaption { margin-top: 12px; font-size: 0.76rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #d8e0da; padding: 72px 0 40px; }
.foot { display: flex; justify-content: space-between; align-items: flex-start; gap: 36px; flex-wrap: wrap; }
.foot .logo { color: #fff; }
.foot-logo { display: inline-block; }
.foot-logo img { height: 92px; width: auto; display: block; }
.foot small { color: rgba(216,224,218,0.6); font-size: 0.8rem; display: block; margin-top: 14px; }
.foot small.credits { font-size: 0.72rem; color: rgba(216,224,218,0.4); max-width: 46ch; }
.foot ul { list-style: none; display: flex; gap: 16px 26px; flex-wrap: wrap; }
.foot ul a { font-size: 0.85rem; color: rgba(216,224,218,0.75); transition: color 0.2s; }
.foot ul a:hover { color: #fff; }

/* ---------- Long-stay (weekly & monthly) ---------- */
.longstay { background: var(--sand); }
.longstay-band { max-width: 640px; margin: 0 auto; text-align: center; }
.longstay-band .section-label { justify-content: center; }
.longstay-band h2 { margin: 0 auto 18px; }
.longstay-band .lead { margin: 0 auto 32px; }
.ls-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 50px; }
@media (max-width: 720px) { .ls-grid { grid-template-columns: 1fr; } }
.ls-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 20px; padding: 40px 34px;
  background: #fffdf9; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ls-card:hover { transform: translateY(-4px); box-shadow: 0 22px 42px rgba(33,46,40,0.12); }
.ls-card.hot { background: linear-gradient(158deg, #fdefe9 0%, #f8dcd1 100%); border-color: #f0c6b8; }
.ls-icon { font-size: 1.7rem; line-height: 1; display: block; margin-bottom: 10px; }
.ls-tier { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--accent-dark); }
.ls-card h3 { font-size: 1.7rem; margin-top: 2px; }
.ls-price { font-family: "Poppins","DM Sans",sans-serif; font-weight: 700; font-size: 2.15rem; letter-spacing: -0.02em; color: var(--ink); line-height: 1; margin-top: 4px; }
.ls-price .ls-per { font-size: 1rem; font-weight: 600; color: var(--muted); margin-left: 3px; }
.ls-save { font-size: 0.82rem; font-weight: 700; color: var(--accent-dark); margin-top: 8px; letter-spacing: 0.02em; }
.ls-fine { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-top: 2px; }
.ls-card p { color: var(--muted); font-size: 0.96rem; }
.ls-card.hot p { color: #7a5a50; }
.ls-perks { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 8px; }
.ls-perks li { font-size: 0.9rem; color: var(--ink); padding-left: 26px; position: relative; }
.ls-perks li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 700; }
.ls-badge {
  position: absolute; top: 22px; right: 22px; background: var(--accent); color: #fff;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.ls-foot { margin-top: 52px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ls-foot p { color: var(--muted); font-size: 0.95rem; max-width: 48ch; }

/* ---------- Social carousel ---------- */
.social { background: var(--ocean-deep); color: var(--foam); overflow: hidden; }
.social .wrap { text-align: center; }
.social .section-label { justify-content: center; color: #ffb59f; }
.social .section-label::before, .social .section-label::after { content: ""; width: 28px; height: 2px; background: var(--accent); }
.social h2 { color: #fff; }
.social .lead { color: rgba(230,239,233,0.82); margin: 0 auto; }
.social-strip { margin-top: 52px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.social-track { display: flex; gap: 16px; width: max-content; animation: marquee 60s linear infinite; }
.social:hover .social-track { animation-play-state: paused; }
.social-track img { width: 260px; height: 260px; object-fit: cover; border-radius: 16px; flex: 0 0 auto; }
@media (max-width: 600px) { .social-track img { width: 200px; height: 200px; } }
@media (prefers-reduced-motion: reduce) { .social-track { animation: none; } }
.social-follow { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 46px; }
.social-handle { display: block; margin-top: 40px; font-family: "Poppins","DM Sans",sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; }
.social-handle span { color: #ffb59f; }
