/* ============================================================
   DOLCE VITA CARS — styles
   Mobile-first. The phone is the real product; desktop enhances.
   ============================================================ */

:root {
  --orange: #f47a20;
  --orange-deep: #ea4e1b;
  --gold: #ffc23c;
  --gold-light: #ffe9ae;
  --accent: #fbb034;
  --cream: #fbe7c2;
  --ink: #1a1a1a;
  --red: #e8501f;
  --white: #fff;

  --shadow-sm: 0 2px 8px rgba(26, 16, 6, 0.12);
  --shadow-md: 0 10px 30px rgba(26, 16, 6, 0.18);
  --shadow-lg: 0 24px 60px rgba(26, 16, 6, 0.28);
  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1160px;

  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--gold { --bg: var(--accent); --fg: var(--ink); }
.btn--dark { --bg: var(--ink); --fg: var(--white); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(26, 16, 6, 0.55);
}
.btn--whatsapp { --bg: #25d366; --fg: #04321a; }
.btn--block { width: 100%; }
.btn .ic { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(255, 247, 235, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__word b {
  font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em;
}
.brand__word > span {
  font-size: 0.66rem; letter-spacing: 0.42em; font-weight: 600; color: var(--orange-deep);
}

.nav__links { display: none; margin-left: auto; gap: clamp(14px, 2vw, 30px); }
.nav__links a {
  font-weight: 600; font-size: 0.92rem; padding: 6px 2px;
  border-bottom: 2px solid transparent; transition: border-color 0.15s, color 0.15s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--orange-deep); border-color: var(--orange-deep); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--ink);
  font-weight: 700; font-size: 0.9rem;
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.pill .ic { width: 18px; height: 18px; fill: currentColor; }
.pill--call { margin-left: auto; }
.nav__links + .pill--call { margin-left: 0; }

.nav__toggle {
  margin-left: 6px;
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 10px;
}
.nav__toggle span { height: 3px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: sticky; top: 70px; z-index: 99;
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px clamp(16px, 4vw, 40px) 18px;
  background: rgba(255, 247, 235, 0.98);
  box-shadow: var(--shadow-md);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 6px; font-weight: 600; border-bottom: 1px solid rgba(26,16,6,0.08); }
.mobile-menu .pill--call { margin-top: 8px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(24px, 5vw, 60px) clamp(16px, 4vw, 40px) 0;
  background:
    radial-gradient(120% 80% at 18% 18%, var(--gold-light) 0%, rgba(255,233,174,0) 40%),
    linear-gradient(160deg, var(--gold) 0%, var(--orange) 45%, var(--orange-deep) 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero__sky { position: absolute; inset: 0; z-index: -1; }
.hero__sun {
  position: absolute; top: -12%; left: -6%;
  width: min(38vw, 260px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,246,224,0.5) 0%, rgba(255,224,150,0.15) 40%, rgba(255,194,60,0) 72%);
  filter: blur(6px);
}
.hero__palms { position: absolute; right: 0; bottom: 0; width: min(70vw, 540px); height: auto; }

.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
.hero__copy { padding-bottom: 8px; }
.hero__title {
  font-weight: 900; line-height: 1.0; letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 7vw, 3.2rem); margin: 0 0 14px;
  color: var(--ink);
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
.hero__title-accent { color: var(--white); text-shadow: 0 2px 16px rgba(150,45,12,0.55), 0 1px 2px rgba(110,30,6,0.4); }
.hero__sub {
  font-size: clamp(1rem, 2.4vw, 1.18rem); font-weight: 500;
  color: #3a1a0c; max-width: 30ch; margin: 0 0 22px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,0.55);
  background: #111;
}
.hero__photo img { width: 100%; height: clamp(220px, 52vw, 380px); object-fit: cover; object-position: center 60%; }

/* ---------- Booking bar ---------- */
.booking {
  position: relative;
  max-width: var(--maxw);
  margin: clamp(24px, 4vw, 40px) auto 0;
  transform: translateY(50%);
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: grid;
  gap: 10px;
}
.booking__field { display: flex; flex-direction: column; gap: 4px; background: var(--white); border-radius: 12px; padding: 8px 12px; }
.booking__field label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #7a5a30; }
.booking__field input, .booking__field select {
  border: none; background: transparent; font-family: var(--font);
  font-size: 0.95rem; font-weight: 600; color: var(--ink); padding: 2px 0; width: 100%;
}
.booking__field input:focus, .booking__field select:focus { outline: none; }
.booking__go { padding: 15px; font-size: 1rem; }

/* spacer created by the overlapping booking bar */
.fleet { padding-top: clamp(120px, 22vw, 150px); }

/* ---------- Sections ---------- */
.section-title {
  text-align: center; font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 5vw, 2.6rem); margin: 0 0 8px;
}
.section-sub { text-align: center; margin: 0 auto 28px; max-width: 46ch; color: #5a4124; font-weight: 500; }

.fleet { padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px); padding-bottom: 56px;
  background: linear-gradient(180deg, var(--cream) 0%, #f7d99e 100%); }
.fleet__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}

/* ---------- Car card ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 16 / 10; background: #ddd; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px;
}
.card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__name { font-weight: 800; font-size: 1.2rem; margin: 0; line-height: 1.15; }
.card__year { font-weight: 600; color: #8a6a3c; font-size: 0.85rem; }
.card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 4px; padding: 0; list-style: none; }
.card__specs li {
  font-size: 0.76rem; font-weight: 600; color: #5a4124;
  background: var(--gold-light); padding: 4px 10px; border-radius: 999px;
}
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.card__price b { font-size: 1.5rem; font-weight: 900; }
.card__price span { font-size: 0.8rem; color: #8a6a3c; font-weight: 600; }
.card__price small { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: #b08a4e; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--red); color: var(--white);
  padding: clamp(30px, 5vw, 48px) clamp(16px, 4vw, 40px);
  display: grid; gap: 22px; grid-template-columns: 1fr 1fr;
  text-align: center;
}
.trust__item .ic { width: 34px; height: 34px; fill: var(--gold); margin: 0 auto 8px; }
.trust__item h3 { margin: 0 0 4px; font-size: 1rem; font-weight: 800; }
.trust__item p { margin: 0; font-size: 0.84rem; opacity: 0.92; max-width: 28ch; margin-inline: auto; }

/* ---------- How ---------- */
.how { padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 40px); }
.how__steps {
  max-width: var(--maxw); margin: 0 auto; padding: 0; list-style: none;
  display: grid; gap: 22px; grid-template-columns: 1fr;
}
.how__steps li { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.how__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: var(--ink); font-weight: 900; margin-bottom: 10px;
}
.how__steps h3 { margin: 0 0 4px; font-size: 1.1rem; }
.how__steps p { margin: 0; color: #5a4124; }

/* ---------- Reserve ---------- */
.reserve { padding: clamp(20px, 5vw, 60px) clamp(16px, 4vw, 40px) clamp(60px, 8vw, 90px);
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 100%); }
.reserve__card {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr);
}
.reserve__intro { padding: clamp(24px, 4vw, 40px); }
.reserve__intro .section-title { text-align: left; }
.reserve__intro p { color: #5a4124; }
.reserve__quick { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.reserve__form { padding: clamp(24px, 4vw, 40px); background: var(--cream); display: grid; gap: 14px; align-content: start; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 0.78rem; font-weight: 700; color: #7a5a30; text-transform: uppercase; letter-spacing: 0.05em; }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 0.98rem; font-weight: 500;
  padding: 11px 13px; border: 2px solid #e6cfa0; border-radius: 12px;
  background: var(--white); color: var(--ink);
  width: 100%; min-width: 0; max-width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field--row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
.field--row > div { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.reserve__note { font-size: 0.85rem; font-weight: 600; margin: 2px 0 0; min-height: 1em; }
.reserve__note.is-ok { color: #137a3a; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #e9dcc7; padding: clamp(36px, 5vw, 56px) clamp(16px, 4vw, 40px) 90px; }
.footer__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 28px; grid-template-columns: 1fr 1fr;
}
.footer .brand__word b { color: var(--white); }
.footer .brand__word > span { color: var(--gold); }
.footer__tag { font-family: "Playfair Display", serif; font-style: italic; color: var(--gold); margin: 12px 0 0; }
.footer h4 { margin: 0 0 10px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.footer a, .footer span[data-loc] { display: block; padding: 4px 0; color: #e9dcc7; font-size: 0.92rem; }
.footer a:hover { color: var(--gold); }
.footer__brand { grid-column: 1 / -1; }
.footer__copy { max-width: var(--maxw); margin: 28px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; color: #b9a988; text-align: center; }

/* ---------- Sticky mobile dock ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 1px;
  background: rgba(26,16,6,0.12);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
}
.dock__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px; font-weight: 800; font-size: 1rem;
}
.dock__btn .ic { width: 20px; height: 20px; fill: currentColor; }
.dock__btn--call { background: var(--ink); color: var(--white); }
.dock__btn--book { background: var(--accent); color: var(--ink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .fleet__grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .booking { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .booking__go { grid-column: 1 / -1; }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .how__steps { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .mobile-menu { display: none !important; }
  .dock { display: none; }
  .footer { padding-bottom: 56px; }

  .hero__inner { grid-template-columns: 1.2fr 0.9fr; }
  .hero__photo img { height: clamp(320px, 34vw, 440px); }

  .booking { grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr) auto; }
  .booking__go { grid-column: auto; }

  .fleet__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .reserve__card { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}

@media (min-width: 1100px) {
  .hero { padding-bottom: 0; }
}

/* ============================================================
   MOTION — entrances, ambient loops, scroll reveals, hovers.
   All entrance/loop motion is gated behind no-preference so
   reduced-motion users get the full content with zero movement.
   ============================================================ */

/* nav: subtle solidify on scroll */
.nav { transition: box-shadow .25s ease, background .25s ease; }
.nav.is-scrolled { box-shadow: 0 6px 24px rgba(26,16,6,.18); background: rgba(255,247,235,.97); }

/* car image gentle zoom on hover */
.card__media img { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__media img { transform: scale(1.06); }

/* gold buttons get a soft sheen sweep on hover */
.btn--gold, .btn--whatsapp, .dock__btn--book, .pill { position: relative; overflow: hidden; }
.btn--gold::after, .btn--whatsapp::after, .dock__btn--book::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
}
@media (prefers-reduced-motion: no-preference) {
  .btn--gold:hover::after, .btn--whatsapp:hover::after, .dock__btn--book:hover::after {
    animation: sheen .7s ease forwards;
  }
}
@keyframes sheen { to { left: 140%; } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes sunPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.07); opacity: 1; } }
@keyframes sway { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(-2.5deg); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes badgeSpin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: no-preference) {
  /* hero entrance (staggered) */
  .hero__title, .hero__sub, .hero__cta { opacity: 0; animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero__title { animation-delay: .05s; }
  .hero__sub   { animation-delay: .18s; }
  .hero__cta   { animation-delay: .3s; }
  .hero__photo { opacity: 0; animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) .22s forwards; }
  .booking     { opacity: 0; animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) .45s forwards; }

  /* ambient loops */
  .hero__sun   { animation: sunPulse 7s ease-in-out infinite; will-change: transform; }
  .hero__palms { transform-origin: bottom right; animation: sway 9s ease-in-out infinite; }

  /* scroll reveals (JS adds .is-in when in view) */
  [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  [data-reveal].is-in { opacity: 1; transform: none; }

  /* footer emblem slow rotate */
  .footer__badge.is-spin { animation: badgeSpin 40s linear infinite; }
}

/* footer emblem layout */
.footer__brand { display: flex; align-items: center; gap: 18px; }
.footer__badge { width: 92px; height: 92px; flex: none; filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); }
@media (max-width: 559px){ .footer__badge { width: 76px; height: 76px; } }

/* ---------- Occasions / marketing band ---------- */
.occasions {
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, #f7d99e 0%, var(--cream) 100%);
}
.occasions__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(22px, 4vw, 44px); align-items: center;
  grid-template-columns: 1fr;
}
.occasions__media { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.occasions__media img { width: 100%; height: clamp(240px, 60vw, 460px); object-fit: cover; object-position: center; }
.occasions__tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-weight: 800; font-size: .9rem; padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.occasions__copy .section-title { text-align: left; }
.occasions__copy > p { color: #5a4124; font-weight: 500; max-width: 44ch; margin: 0 0 18px; }
.occasions__list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.occasions__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.occasions__list li span { font-size: 1.3rem; line-height: 1; }

@media (min-width: 760px) {
  .occasions__inner { grid-template-columns: 1.1fr 1fr; }
  .occasions__list { grid-template-columns: 1fr 1fr; }
}

/* ---------- Cut-out hero (Jeep floats on the sunset) ---------- */
.hero__photo--cutout {
  background: none; border: none; box-shadow: none;
  border-radius: 0; overflow: visible;
}
.hero__photo--cutout img {
  width: 100%; height: auto; object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(26,16,6,.45));
}
@media (prefers-reduced-motion: no-preference) {
  .hero__photo--cutout img { animation: floatY 6s ease-in-out infinite; }
}

/* ---------- Video media (hero + feature) ---------- */
.media-video { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero__photo .media-video { height: clamp(220px, 52vw, 380px); }
@media (min-width: 900px) { .hero__photo .media-video { height: clamp(320px, 34vw, 440px); } }

/* ---------- Generic feature / use-case band ---------- */
.feature {
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, var(--cream) 0%, #f7d99e 100%);
}
.feature__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(22px, 4vw, 44px); align-items: center;
  grid-template-columns: 1fr;
}
.feature__media {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 16 / 9; background: #111;
}
.feature__kicker {
  display: inline-block; font-weight: 800; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange-deep); margin-bottom: 6px;
}
.feature__copy .section-title { text-align: left; }
.feature__copy > p { color: #5a4124; font-weight: 500; max-width: 46ch; margin: 0 0 20px; }

@media (min-width: 760px) {
  .feature__inner { grid-template-columns: 1fr 1fr; }
  .feature--reverse .feature__media { order: 2; }
}

/* occasions media as video */
.occasions__media .media-video { height: clamp(240px, 60vw, 460px); }

/* ---------- Moments grid (3 occasion cards) ---------- */
.moments {
  padding: clamp(36px, 5vw, 64px) clamp(16px, 4vw, 40px) clamp(44px, 6vw, 72px);
  background: linear-gradient(180deg, #f7d99e 0%, var(--cream) 100%);
}
.moments__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 20px; grid-template-columns: 1fr;
}
.moment {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.moment:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.moment__media { aspect-ratio: 3 / 2; overflow: hidden; background: #ddd; }
.moment__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.moment:hover .moment__media img { transform: scale(1.06); }
.moment__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.moment__kicker { font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: var(--orange-deep); text-transform: uppercase; }
.moment__body h3 { margin: 0; font-size: 1.3rem; font-weight: 800; }
.moment__body p { margin: 0; color: #5a4124; font-size: .92rem; }
.moment__link { margin-top: auto; padding-top: 8px; font-weight: 800; color: var(--ink); }
.moment__link:hover { color: var(--orange-deep); }

@media (min-width: 760px) { .moments__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* ============================================================
   HERO WITH PHOTO BACKGROUND (drone Naples beach)
   ============================================================ */
.hero--photo { background: #0e0805; }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%; z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(10,6,3,.80) 0%, rgba(10,6,3,.46) 42%, rgba(10,6,3,.08) 70%, rgba(10,6,3,0) 100%),
    linear-gradient(to bottom, rgba(10,6,3,.12), rgba(10,6,3,.40));
}
.hero--photo .hero__inner,
.hero--photo .booking { position: relative; z-index: 2; }

/* light text over the photo */
.hero--photo .hero__title { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.6), 0 1px 2px rgba(0,0,0,.45); }
.hero--photo .hero__title-accent { color: #FFD56B; text-shadow: 0 2px 18px rgba(0,0,0,.6), 0 1px 2px rgba(0,0,0,.45); }
.hero--photo .hero__sub { color: rgba(255,255,255,.94); text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero--photo .btn--ghost { box-shadow: inset 0 0 0 2px rgba(255,255,255,.85); --fg: #fff; }

/* mobile: text is full-width, so darken more evenly top-to-bottom */
@media (max-width: 899px) {
  .hero__scrim {
    background: linear-gradient(to bottom, rgba(10,6,3,.66) 0%, rgba(10,6,3,.40) 48%, rgba(10,6,3,.28) 100%);
  }
}

/* ---------- Phone pill: keep the number on ONE line (esp. mobile) ---------- */
.pill { white-space: nowrap; }
@media (max-width: 899px) {
  .nav { gap: 8px; padding-left: 14px; padding-right: 14px; }
  .brand__word b { font-size: 1.02rem; }
  .nav .pill--call { font-size: 0.78rem; padding: 8px 11px; gap: 5px; }
  .nav .pill--call .ic { width: 14px; height: 14px; }
}
@media (max-width: 380px) {           /* very small phones: drop the icon to guarantee one line */
  .nav .pill--call .ic { display: none; }
}
