@font-face {
  font-family: "F37 Wicklow";
  src: url("../assets/fonts/F37_Wicklow/F37Wicklow-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "F37 Wicklow";
  src: url("../assets/fonts/F37_Wicklow/F37Wicklow-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f7f3;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-soft: rgba(255, 255, 255, 0.78);
  --text: #141414;
  --muted: #5f5b56;
  --line: rgba(0, 0, 0, 0.08);
  --brand: #00534e;
  --brand-deep: #033936;
  --accent: #eb7400;
  --gold: #ffbe29;
  --berry: #8d153a;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.05);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1240px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #faf9f6 0%, #f5f2ee 100%);
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.home-shell {
  background: var(--bg);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
  }

.section-intro {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.section-title {
  margin: 0.9rem 0 0.9rem;
  font-family: "F37 Wicklow", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.eyebrow {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--berry);
  font-family: "F37 Wicklow", Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.9;
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
}

.eyebrow::before,
.eyebrow::after {
  font-size: 0.72em;
  line-height: 1;
  opacity: 0.9;
}

.eyebrow::before {
  content: "──── 𖤝";
}

.eyebrow::after {
  content: "𖤝 ────";
}

.eyebrow-card {
  margin-bottom: 0.9rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.eyebrow-card::before {
  content: "── 𖤝";
}

.eyebrow-card::after {
  content: "𖤝 ──";
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  color: var(--berry);
  font-family: "F37 Wicklow", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.1;
}

.card-kicker-light {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.spotlight-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: "F37 Wicklow", Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.1;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.spotlight-kicker::before,
.spotlight-kicker::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.hero h1,
.page-hero h1 {
  margin: 0.9rem 0 1rem;
  font-family: "F37 Wicklow", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.section-title .tone,
.hero h1 .tone,
.page-hero h1 .tone {
  color: var(--accent);
}

.section-copy,
.section-intro p,
.page-hero p,
.hero p {
  color: var(--muted);
  max-width: 720px;
  margin: 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

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

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

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: 1.5rem;
  align-items: start;
}

.stack {
  display: grid;
  gap: 1.5rem;
}

.card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.62));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

.content-card,
.side-panel,
.feature-card,
.testimonial-card,
.fleet-card,
.blog-card,
.faq-item,
.destination-card,
.tour-card,
.gallery-card {
  display: flex;
  flex-direction: column;
}

.content-card,
.side-panel,
.feature-card,
.testimonial-card,
.faq-item {
  padding: 1.5rem;
}

.destination-card,
.tour-card,
.gallery-card {
  overflow: hidden;
}

.destination-card img,
.tour-card img,
.fleet-card img,
.blog-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fleet-card img,
.blog-card img {
  aspect-ratio: 16 / 10;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.35rem;
}

.card h3,
.card h2,
.card p {
  margin: 0;
}

.blog-card p,
.tour-card p,
.destination-card p,
.fleet-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body .btn-row,
.card-body > .btn {
  margin-top: auto;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 83, 78, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.btn-row,
.hero-actions,
.action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 24px rgba(0, 83, 78, 0.16);
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
}

.btn-outline {
    color: var(--text);
    background: transparent;
    border-color: rgba(0, 83, 78, 0.16);
  }

.hero .btn-outline,
.page-hero .btn-outline {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible,
.page-hero .btn-outline:hover,
.page-hero .btn-outline:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.52);
    color: #fff;
  }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

body[data-page="home"] .site-header {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

body[data-page="home"] .site-header.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

body:not([data-page="home"]) .site-header {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

body:not([data-page="home"]) .site-header.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

.nav-wrap {
    padding: 0 0 0.9rem;
  }

.nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
  }

.nav-right {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  font-weight: 700;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--brand));
  color: #fff;
  box-shadow: 0 10px 18px rgba(0, 83, 78, 0.12);
}

.brand-copy span,
.brand-copy small {
  display: block;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-deep);
  background: rgba(255, 190, 41, 0.18);
}

.nav-links .btn {
  min-height: 42px;
  padding: 0.72rem 1rem;
  margin-left: 0.35rem;
}

.attention-cta {
  animation: attention-blink 1.8s ease-in-out infinite;
}

  .nav-links .attention-cta {
    color: #fff;
  }

.nav-contact-rail {
    position: absolute;
  top: calc(100% - 0.05rem + 1.5px);
  right: calc(1rem + 18px);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.52rem 1rem 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-top: 0;
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 32px rgba(8, 26, 24, 0.08);
    z-index: 1;
  }

.site-header.is-scrolled .nav-contact-rail {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(0, 0, 0, 0.06);
  }

.nav-contact-rail a {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

.nav-contact-rail a:hover,
.nav-contact-rail a:focus-visible {
    color: var(--brand-deep);
  }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 190, 41, 0.22);
  color: var(--brand-deep);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0.62) 100%);
  z-index: 1;
}

.hero-media,
.page-hero-media,
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video,
.page-hero-media img,
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-content,
  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 8.5rem 0 4rem;
  }

body[data-page="home"] .hero-content {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: 1.5rem;
  align-items: end;
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
  margin-bottom: 1.6rem;
}

.hero-panel {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hero-panel h3,
.hero-panel p {
  margin: 0;
}

.hero-panel p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

.scroll-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.8rem;
    width: 100%;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
  }

.scroll-cue:hover,
.scroll-cue:focus-visible {
    color: #fff;
  }

.scroll-cue-icon {
    position: relative;
    width: 1.15rem;
    height: 1.9rem;
    border: 1.6px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
  }

.scroll-cue-icon::before {
    content: "";
    position: absolute;
    top: 0.32rem;
    left: 50%;
    width: 0.22rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #fff;
    transform: translateX(-50%);
    animation: scroll-nudge 1.5s ease-in-out infinite;
  }

.stat-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
}

.feature-card h3,
.experience-card h3,
.destination-card h3,
.tour-card h3,
.fleet-card h3,
.blog-card h3,
.testimonial-card h3 {
  font-size: 1.35rem;
}

.feature-card {
  justify-content: flex-start;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.experience-card {
  min-height: 330px;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 24%, rgba(0, 0, 0, 0.72) 100%);
}

.experience-card > div {
  position: relative;
  z-index: 1;
}

.destination-spotlight {
    min-height: 260px;
  }

.media-banner {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.media-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-banner .overlay {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  backdrop-filter: blur(10px);
}

.feature-list,
.check-list,
.simple-list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.simple-list li {
  position: relative;
  padding-left: 1.2rem;
}

.check-list li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.testimonial-quote {
  font-size: 1.05rem;
}

.testimonial-marquee {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: testimonial-scroll 34s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-marquee .testimonial-card {
  width: min(360px, calc(100vw - 2rem));
  flex: 0 0 auto;
}

.gallery-marquee {
  display: grid;
  gap: 1rem;
}

.gallery-row {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: gallery-left 34s linear infinite;
}

.gallery-row.reverse .gallery-track {
  animation-name: gallery-right;
}

.gallery-row:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  width: clamp(220px, 24vw, 340px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 190, 41, 0.22);
  color: var(--brand-deep);
  font-weight: 800;
}

.cta-banner {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, var(--brand-deep), var(--brand));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.84);
  }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.filter-chip {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-chip:hover,
.filter-chip.is-active {
  background: rgba(255, 190, 41, 0.18);
  border-color: rgba(255, 190, 41, 0.26);
  color: var(--brand-deep);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--muted);
  margin-top: 0.8rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  background: #10211f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1fr;
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.map-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-xl);
  background: #fff;
  color: var(--muted);
  padding: 1.5rem;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #16ad54);
    color: #fff;
    box-shadow: 0 16px 28px rgba(37, 211, 102, 0.24);
    animation: attention-blink 1.8s ease-in-out infinite;
  }

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.go-top {
  position: fixed;
  right: 1.2rem;
  bottom: 6rem;
  z-index: 998;
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(141, 21, 58, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--berry);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.go-top:hover,
.go-top:focus-visible,
.go-top.is-visible {
  transform: translateY(0);
}

.go-top:hover,
.go-top:focus-visible {
  background: var(--berry);
  color: #fff;
}

.go-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.go-top svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-hub {
  display: grid;
  gap: 1.5rem;
}

.welcome-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(6, 13, 18, 0.56);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

.welcome-popup.hidden {
  display: none !important;
}

.welcome-card {
    position: relative;
    width: min(940px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: calc(var(--radius-xl) + 2px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  }

.welcome-card h3,
.welcome-card p {
    margin: 0 0 0.7rem;
  }

.welcome-copy {
    padding: 2.35rem;
    background: linear-gradient(150deg, rgba(141, 21, 58, 0.94), rgba(235, 116, 0, 0.9));
    color: #fff;
  }

.welcome-copy .eyebrow {
    color: rgba(255, 255, 255, 0.96);
  }

.welcome-copy h3 {
    margin-bottom: 1rem;
    font-family: "F37 Wicklow", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

.welcome-copy p {
    max-width: 31rem;
    margin-bottom: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
  }

.welcome-contact-list {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.45rem;
  }

.welcome-contact-list a {
    color: #fff;
    font-weight: 700;
  }

.welcome-copy .btn-outline {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
  }

.welcome-copy .btn-outline:hover,
.welcome-copy .btn-outline:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
  }

.welcome-media {
    min-height: 100%;
    background: rgba(255, 255, 255, 0.82);
  }

.welcome-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.welcome-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.8rem;
    height: 2.8rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

.welcome-close:hover,
.welcome-close:focus-visible {
    background: rgba(255, 255, 255, 0.24);
  }

.form-section-title {
  margin-bottom: 1rem;
}

.form-section-title h2 {
  margin: 0 0 0.35rem;
  font-family: "F37 Wicklow", Georgia, serif;
}

.page-handoff {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.redirect-card {
  max-width: 720px;
  text-align: center;
}

.hidden {
  display: none !important;
}

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

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

.reveal[data-reveal="left"] {
  transform: translateX(-28px);
}

.reveal[data-reveal="right"] {
  transform: translateX(28px);
}

.reveal[data-reveal="zoom"] {
  transform: scale(0.97);
}

.reveal.is-visible[data-reveal="left"],
.reveal.is-visible[data-reveal="right"] {
  transform: translateX(0);
}

.reveal.is-visible[data-reveal="zoom"] {
  transform: scale(1);
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes gallery-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes gallery-right {
  from {
    transform: translateX(calc(-50% - 0.5rem));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes attention-blink {
    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(141, 21, 58, 0), 0 14px 24px rgba(0, 83, 78, 0.18);
      transform: translateY(0);
    }

    50% {
      box-shadow: 0 0 0 9px rgba(141, 21, 58, 0.16), 0 0 0 18px rgba(141, 21, 58, 0.08), 0 14px 28px rgba(141, 21, 58, 0.28);
      transform: translateY(-1px);
    }
  }

@keyframes scroll-nudge {
    0% {
      transform: translateX(-50%) translateY(0);
      opacity: 0.35;
    }

    40% {
      opacity: 1;
    }

    100% {
      transform: translateX(-50%) translateY(0.62rem);
      opacity: 0;
    }
  }

@media (max-width: 1100px) {
  .grid-4,
  .grid-3,
  .experience-strip,
  .footer-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 3.8rem 0;
  }

  .section-tight {
    padding: 2.6rem 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-right {
    position: static;
  }

  .nav-links {
      position: absolute;
      top: calc(100% + 0.75rem);
      left: 0;
      right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-shell {
    position: relative;
  }

  .desktop-only {
    display: none;
  }

  .nav-contact-rail {
    display: none;
  }

  body[data-page="home"] .site-header {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
  }

  body[data-page="home"] .site-header.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-content,
  .page-hero-content {
    padding: 7.5rem 0 3rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .experience-strip,
  .compact-grid,
  .footer-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

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

  .testimonial-track {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding-right: 0;
    animation: none;
  }

  .testimonial-track .testimonial-card:nth-child(n + 4) {
    display: none;
  }

  .testimonial-marquee {
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .testimonial-marquee .testimonial-card {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.6rem);
  }

  .content-card,
  .side-panel,
  .feature-card,
  .testimonial-card,
  .faq-item,
  .cta-banner {
    padding: 1.2rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .brand-copy small {
    font-size: 0.7rem;
  }

  .eyebrow {
    gap: 0.35rem;
    font-size: clamp(0.98rem, 4.4vw, 1.18rem);
    letter-spacing: 0;
  }

  .eyebrow::before,
  .eyebrow::after {
    font-size: 0.6em;
  }

  .eyebrow-card {
    font-size: 0.92rem;
  }

  .spotlight-kicker {
    font-size: 0.82rem;
  }

  .spotlight-kicker::before,
  .spotlight-kicker::after {
    width: 1.4rem;
  }

  .welcome-card {
    grid-template-columns: 1fr;
  }

  .welcome-copy {
    padding: 1.35rem 1.2rem 1.25rem;
  }

  .welcome-copy h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .welcome-media {
    order: -1;
    min-height: 220px;
  }

  .welcome-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
