:root {
  --ink: #102322;
  --muted: #5c6f6c;
  --paper: #f6fbf8;
  --panel: #ffffff;
  --mint: #e8f4ef;
  --mist: #f0f7f4;
  --forest: #0c3b3a;
  --river: #177883;
  --sky: #16a9bd;
  --flame: #e46b3a;
  --flame-soft: #fff0e8;
  --gold: #f4c867;
  --line: rgba(16, 35, 34, 0.12);
  --shadow: 0 22px 60px rgba(12, 59, 58, 0.14);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f6fbf8 0%, #ffffff 34%, #f4faf7 72%, #fff8ef 100%);
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(246, 191, 69, 0.9);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 260ms var(--ease), box-shadow 260ms var(--ease), color 260ms var(--ease), padding 260ms var(--ease);
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(246, 251, 248, 0.92);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(12, 59, 58, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 188px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  transition: transform 220ms var(--ease), filter 220ms var(--ease);
}

.brand:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.brand-logo {
  display: block;
  width: clamp(178px, 15vw, 230px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.site-header.is-scrolled .brand {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(12, 59, 58, 0.1);
}

.site-header.is-scrolled .brand-logo {
  filter: drop-shadow(0 8px 18px rgba(12, 59, 58, 0.1));
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 7px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a,
.header-cta,
.text-link {
  text-decoration: none;
}

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #241600;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(244, 200, 103, 0.22);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #ffd879;
  box-shadow: 0 18px 42px rgba(244, 200, 103, 0.34);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 110px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 58% 50%;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 25, 25, 0.88) 0%, rgba(9, 49, 48, 0.62) 44%, rgba(9, 49, 48, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 25, 25, 0.58), rgba(5, 25, 25, 0.04) 42%);
}

.hero-content {
  position: relative;
  max-width: 780px;
  z-index: 1;
  animation: fadeUp 800ms var(--ease) both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--river);
}

.hero-tagline {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.btn.primary {
  background: var(--flame);
  color: #fff;
  box-shadow: 0 16px 34px rgba(228, 107, 58, 0.26);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary:hover {
  background: #f07845;
  box-shadow: 0 20px 48px rgba(228, 107, 58, 0.34);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.54);
}

.btn.call-btn {
  background: #fff;
  color: var(--forest);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.tag,
.rating {
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 850;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.deal-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 38px;
  z-index: 2;
  width: min(320px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background: rgba(9, 49, 48, 0.46);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  animation: fadeUp 900ms 160ms var(--ease) both, floatSoft 5.5s 1s ease-in-out infinite;
}

.deal-label {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.deal-card strong {
  display: block;
  margin: 4px 0;
  font-size: 42px;
  line-height: 1;
}

.deal-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

section[id] {
  scroll-margin-top: 96px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
  background: rgba(255, 255, 255, 0.82);
}

.intro p:last-child,
.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(205, 226, 220, 0.75);
}

.proof-strip div {
  min-height: 142px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.proof-strip div:hover {
  background: #fff;
  transform: translateY(-3px);
}

.proof-strip strong,
.pick-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.proof-strip span,
.pick-grid p {
  color: var(--muted);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.compare-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.operator-card,
.guide-panel,
.location-card,
details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.operator-card {
  overflow: hidden;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(12, 59, 58, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.operator-card:hover {
  transform: translateY(-7px);
  border-color: rgba(23, 120, 131, 0.28);
  box-shadow: 0 28px 70px rgba(12, 59, 58, 0.15);
}

.operator-card.featured {
  border-color: rgba(228, 107, 58, 0.36);
  box-shadow: var(--shadow);
}

.operator-photo {
  width: calc(100% + 44px);
  height: 210px;
  margin: -22px -22px 20px;
  object-fit: cover;
  display: block;
  background: #dce9e6;
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.operator-card:hover .operator-photo {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  background: rgba(23, 120, 131, 0.1);
  color: var(--river);
}

.rating {
  background: rgba(244, 200, 103, 0.22);
  color: #684910;
}

.price {
  margin-bottom: 10px;
  color: var(--muted);
}

.price strong {
  color: var(--ink);
  font-size: 28px;
}

.saving-card {
  display: grid;
  gap: 2px;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 240, 232, 0.96), rgba(255, 248, 229, 0.96));
  border: 1px solid rgba(228, 107, 58, 0.18);
}

.saving-card span,
.saving-card small,
.pick-grid span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--river);
}

.saving-card strong {
  font-size: 32px;
  line-height: 1.05;
  color: var(--flame);
}

.saving-card small {
  color: #6d4800;
  text-transform: none;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
}

dt {
  font-size: 12px;
  font-weight: 900;
  color: var(--river);
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  color: var(--flame);
  font-weight: 900;
}

.fine-print {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.discount-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #0c3b3a 0%, #166b70 100%);
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #211600;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.65fr);
  gap: 42px;
  align-items: start;
}

.split p,
.seo-copy p {
  color: var(--muted);
  font-size: 18px;
}

.guide-panel {
  padding: 26px;
  background: var(--mint);
}

.guide-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.best-picks {
  background: rgba(255, 255, 255, 0.82);
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pick-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--mist);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.pick-grid article:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 46px rgba(12, 59, 58, 0.09);
}

.pick-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--flame);
}

.pick-grid p {
  margin-bottom: 0;
}

.seo-copy {
  background: rgba(255, 255, 255, 0.88);
}

.seo-copy h2,
.seo-copy p {
  max-width: 960px;
}

.seo-hub {
  background: linear-gradient(180deg, rgba(232, 244, 239, 0.72), rgba(255, 255, 255, 0.92));
}

.guide-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.guide-link-card {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(23, 120, 131, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(12, 59, 58, 0.07);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.guide-link-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 107, 58, 0.28);
  background: #fff;
  box-shadow: 0 24px 58px rgba(12, 59, 58, 0.13);
}

.guide-link-card span {
  color: var(--flame);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-link-card strong {
  font-size: 22px;
  line-height: 1.08;
}

.guide-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.subpage-hero {
  position: relative;
  min-height: 64vh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
  color: #fff;
}

.subpage-hero-image,
.subpage-shade {
  position: absolute;
  inset: 0;
}

.subpage-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.subpage-shade {
  background:
    linear-gradient(90deg, rgba(5, 25, 25, 0.9) 0%, rgba(9, 49, 48, 0.66) 48%, rgba(9, 49, 48, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 25, 25, 0.64), rgba(5, 25, 25, 0.08) 45%);
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  animation: fadeUp 760ms var(--ease) both;
}

.subpage-hero-content h1 {
  max-width: 820px;
  margin-bottom: 18px;
}

.subpage-hero-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--river);
  text-decoration: none;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(16, 35, 34, 0.32);
}

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: start;
}

.content-card,
.quick-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(12, 59, 58, 0.08);
}

.content-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
}

.content-card h2 {
  font-size: clamp(26px, 3.2vw, 42px);
}

.content-card h3 {
  margin-bottom: 6px;
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card ul,
.content-card ol {
  margin: 0;
  padding-left: 22px;
}

.content-card li + li {
  margin-top: 8px;
}

.quick-card {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.quick-card h2,
.quick-card h3 {
  font-size: 24px;
}

.quick-card .btn {
  width: 100%;
  margin-top: 14px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mini-cta {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--flame-soft), #fff8e8);
  border: 1px solid rgba(228, 107, 58, 0.16);
}

.inline-link {
  color: var(--flame);
  font-weight: 900;
  text-decoration: none;
}

.gallery-section {
  background: var(--mint);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}

.photo-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--forest);
  box-shadow: 0 16px 44px rgba(12, 59, 58, 0.1);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.photo-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(12, 59, 58, 0.16);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.photo-tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(5, 23, 24, 0.78), rgba(5, 23, 24, 0));
}

.photo-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.location-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.location-card:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: rgba(23, 120, 131, 0.34);
  box-shadow: 0 18px 46px rgba(12, 59, 58, 0.1);
}

.location-card strong {
  font-size: 22px;
}

.location-card span {
  color: var(--muted);
}

.location-card em {
  align-self: end;
  color: var(--flame);
  font-style: normal;
  font-weight: 900;
}

.faq {
  background: rgba(255, 255, 255, 0.88);
}

details {
  max-width: 900px;
  margin-bottom: 12px;
  padding: 18px 20px;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

details[open],
details:hover {
  border-color: rgba(23, 120, 131, 0.24);
  box-shadow: 0 12px 34px rgba(12, 59, 58, 0.08);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #166b70 0%, #0c3b3a 100%);
  color: #fff;
}

.final-cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: start;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #091b1b;
  color: rgba(255, 255, 255, 0.78);
}

.footer strong {
  color: #fff;
}

.footer-logo {
  display: block;
  width: min(260px, 78vw);
  height: auto;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.footer p {
  margin-bottom: 6px;
}

.footer a {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  text-decoration: none;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  min-width: 172px;
  gap: 1px;
  padding: 12px 15px;
  border-radius: 22px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(12, 59, 58, 0.22);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.floating-actions a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(12, 59, 58, 0.28);
}

.floating-actions span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-actions strong {
  font-size: 15px;
}

.floating-call {
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest);
  border: 1px solid rgba(12, 59, 58, 0.1);
}

.floating-whatsapp {
  background: #24b86f;
  color: #fff;
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.4%, -0.8%, 0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(36, 184, 111, 0.24);
  }

  50% {
    box-shadow: 0 18px 54px rgba(36, 184, 111, 0.42);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .deal-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .compare-grid,
  .location-grid,
  .guide-link-grid,
  .proof-strip,
  .pick-grid,
  .steps,
  .intro,
  .discount-band,
  .split,
  .subpage-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .quick-card {
    position: static;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-actions {
    left: 16px;
    right: 16px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .floating-actions a {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 126px;
    padding: 5px 8px;
  }

  .brand-logo {
    width: 126px;
    max-height: 42px;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 88px 14px 22px;
  }

  .subpage-hero {
    min-height: auto;
    padding: 92px 14px 36px;
  }

  h1 {
    max-width: 340px;
    margin-bottom: 14px;
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.02;
  }

  h2 {
    margin-bottom: 12px;
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.08;
  }

  h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero-tagline {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero-copy {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.45;
  }

  .subpage-hero-content p:not(.eyebrow) {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .btn {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .trust-row {
    gap: 6px;
    margin-top: 14px;
  }

  .trust-row span,
  .tag,
  .rating {
    padding: 6px 8px;
    font-size: 10.5px;
  }

  .deal-card {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
  }

  .deal-card strong {
    font-size: 30px;
  }

  .deal-card p {
    font-size: 13px;
  }

  .section {
    padding: 38px 14px;
  }

  section[id] {
    scroll-margin-top: 72px;
  }

  .intro {
    gap: 12px;
  }

  .intro p:last-child,
  .section-head p,
  .split p,
  .seo-copy p {
    font-size: 15px;
  }

  .proof-strip {
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    background: transparent;
  }

  .proof-strip div {
    min-height: auto;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .proof-strip strong,
  .pick-grid strong {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .compare-grid,
  .pick-grid,
  .guide-link-grid,
  .location-grid {
    gap: 12px;
  }

  .guide-link-card {
    min-height: auto;
    padding: 16px;
    border-radius: 20px;
  }

  .guide-link-card strong {
    font-size: 18px;
  }

  .guide-link-card p {
    font-size: 14px;
  }

  .operator-card {
    padding: 14px;
    border-radius: 20px;
  }

  .operator-photo {
    width: calc(100% + 28px);
    height: 138px;
    margin: -14px -14px 14px;
    border-bottom: 1px solid var(--line);
  }

  .card-top {
    gap: 6px;
    margin-bottom: 12px;
  }

  .price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .price strong {
    font-size: 24px;
  }

  .saving-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 14px;
    padding: 10px 11px;
    border-radius: 16px;
  }

  .saving-card span {
    grid-column: 1 / -1;
    font-size: 10px;
  }

  .saving-card strong {
    font-size: 27px;
  }

  .saving-card small {
    max-width: 120px;
    font-size: 10px;
    text-align: right;
  }

  dl {
    gap: 9px;
    margin-bottom: 14px;
  }

  dt {
    font-size: 10px;
  }

  dd {
    font-size: 13px;
    line-height: 1.38;
  }

  .text-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--flame);
    color: #fff;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(228, 107, 58, 0.22);
  }

  .fine-print {
    margin-top: 12px;
    font-size: 12px;
  }

  .discount-band,
  .split {
    gap: 18px;
  }

  .steps {
    gap: 10px;
  }

  .steps li {
    min-height: auto;
    padding: 14px;
  }

  .steps span {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .steps strong {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .steps p {
    font-size: 13px;
  }

  .guide-panel,
  .content-card,
  .quick-card,
  .pick-grid article,
  .location-card,
  details {
    padding: 16px;
  }

  .content-card,
  .quick-card,
  .mini-cta {
    border-radius: 20px;
  }

  .guide-panel ul {
    gap: 8px;
    padding-left: 18px;
    font-size: 14px;
  }

  .pick-grid article {
    min-height: auto;
  }

  .pick-grid span,
  .saving-card span,
  .saving-card small {
    font-size: 10px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 184px;
    gap: 10px;
  }

  .photo-tile,
  .photo-tile.tall,
  .photo-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-tile figcaption {
    left: 11px;
    right: 11px;
    bottom: 10px;
    font-size: 13px;
  }

  .location-card {
    min-height: auto;
    gap: 7px;
  }

  .location-card strong {
    font-size: 18px;
  }

  .location-card span,
  .location-card em {
    font-size: 14px;
  }

  summary {
    font-size: 15px;
  }

  details p {
    font-size: 14px;
  }

  .final-cta h2 {
    max-width: 330px;
  }

  .final-actions {
    gap: 8px;
  }

  .footer {
    gap: 16px;
    padding-bottom: 92px;
    font-size: 14px;
  }

  .footer-logo {
    width: min(220px, 86vw);
  }

  .floating-actions {
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    background: rgba(9, 27, 27, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  }

  .floating-actions a {
    place-items: center;
    min-height: 50px;
    padding: 9px 10px;
    border-radius: 11px;
    text-align: center;
    box-shadow: none;
  }

  .floating-actions span {
    font-size: 10px;
  }

  .floating-actions strong {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-logo {
    width: 112px;
  }

  .brand {
    min-width: 112px;
  }

  .header-cta {
    font-size: 12px;
  }

  h1 {
    max-width: 310px;
    font-size: 31px;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .operator-photo {
    height: 128px;
  }

  .saving-card strong {
    font-size: 24px;
  }

  .saving-card small {
    max-width: 108px;
  }

  .floating-actions strong {
    font-size: 12px;
  }
}

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