:root {
  --bg: #08101b;
  --bg-soft: #101827;
  --bg-panel: rgba(255, 255, 255, 0.06);
  --bg-panel-strong: rgba(255, 255, 255, 0.1);
  --paper: #f3eee4;
  --paper-soft: #faf6ef;
  --ink: #151b24;
  --ink-muted: rgba(21, 27, 36, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(217, 186, 122, 0.24);
  --text: #f5efe2;
  --muted: rgba(245, 239, 226, 0.72);
  --gold: #d9ba7a;
  --gold-deep: #b98d49;
  --success: #1c8d55;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-xl: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 18px 46px rgba(0, 0, 0, 0.22);
  --content: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 186, 122, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(96, 130, 181, 0.14), transparent 26%),
    linear-gradient(180deg, #09111d 0%, #060c15 100%);
  font: 400 16px/1.7 "Manrope", sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: var(--content);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 13, 22, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand img {
  width: auto;
  height: 44px;
}

.brand-mark,
.serif-title,
.hero-title,
.section-title,
.card-title,
.banner-title {
  font-family: "Cormorant Garamond", serif;
}

.brand-mark {
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-nav,
.header-actions,
.hero-actions,
.footer-links,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav {
  justify-content: center;
  gap: 22px;
}

.site-nav a,
.footer-links a,
.tiny-link,
.eyebrow,
.kicker,
.meta-line,
.tag,
.button {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a {
  font-size: 12px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.active,
.footer-links a:hover {
  color: var(--text);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #111;
  background: linear-gradient(135deg, #ecd6a6, #c89748);
  box-shadow: 0 14px 32px rgba(201, 151, 71, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.button.success {
  background: linear-gradient(135deg, #30b36c, #1c8d55);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero {
  position: relative;
  min-height: 94vh;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero.hero-short {
  min-height: 62vh;
}

.hero video,
.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 24, 0.86) 0%, rgba(7, 14, 24, 0.54) 48%, rgba(7, 14, 24, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 14, 24, 0.08), rgba(7, 14, 24, 0.8));
  z-index: -1;
}

.hero-grid,
.split-grid,
.section-head,
.cta-banner,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  width: var(--content);
  margin: 0 auto;
  padding: 86px 0 50px;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 420px);
  align-items: end;
}

.page-hero-copy {
  width: var(--content);
  margin: 0 auto;
  padding: 118px 0 56px;
}

.hero-title {
  margin: 16px 0 0;
  max-width: 11ch;
  font-size: clamp(56px, 8vw, 98px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-lede,
.section-text,
.card-text,
.stat-label,
.list-text {
  color: var(--muted);
}

.hero-lede {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 17px;
}

.hero-panel,
.glass-panel,
.card,
.cta-banner,
.gallery-card,
.fleet-card,
.service-card,
.testimonial-card,
.contact-card,
.faq-item,
.planner-item,
.stat-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-xl);
}

.hero-panel,
.glass-panel,
.card,
.cta-banner,
.contact-card {
  border-radius: var(--radius-xl);
}

.hero-panel {
  padding: 26px;
  backdrop-filter: blur(18px);
  background: rgba(7, 14, 24, 0.66);
}

.hero-panel h2 {
  margin: 10px 0 0;
  font: 600 44px/0.95 "Cormorant Garamond", serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

.planner-list,
.info-list,
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.planner-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
}

.planner-index,
.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(217, 186, 122, 0.35);
  font-size: 12px;
}

.planner-item strong,
.info-title,
.feature-title,
.tagline {
  display: block;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.planner-item span,
.info-copy {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 108px 0;
}

.section.compact {
  padding-top: 82px;
  padding-bottom: 82px;
}

.section-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  margin-bottom: 40px;
}

.section-title {
  margin: 12px 0 0;
  max-width: 12ch;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-text {
  margin: 0;
  font-size: 17px;
}

.split-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.card {
  padding: 34px;
}

.card-title {
  margin: 14px 0 10px;
  font-size: 44px;
  line-height: 0.94;
  text-transform: uppercase;
}

.pill-row,
.tag-row,
.stats-grid,
.services-grid,
.fleet-grid,
.gallery-grid,
.testimonial-grid,
.logos-grid,
.feature-grid,
.contact-cards {
  display: grid;
  gap: 18px;
}

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

.pill {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-panel);
}

.pill strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pill span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

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

.service-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.service-card {
  min-height: 360px;
}

.service-card img,
.gallery-card img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover img,
.gallery-card:hover img,
.image-card:hover img {
  transform: scale(1.05);
}

.service-card::after,
.gallery-card::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 24, 0.08), rgba(7, 14, 24, 0.9));
}

.service-copy,
.gallery-copy,
.image-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.service-copy h3,
.gallery-copy h3 {
  margin: 0;
  font: 600 34px/0.94 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.service-copy p,
.gallery-copy p {
  margin: 8px 0 0;
  color: rgba(245, 239, 226, 0.84);
}

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

.fleet-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.fleet-image {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
}

.fleet-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 24, 0.05), rgba(7, 14, 24, 0.58));
}

.fleet-body {
  padding: 22px;
}

.meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
}

.fleet-name {
  margin: 14px 0 8px;
  font: 600 34px/0.92 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.fleet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fleet-link::after {
  content: "\203A";
  color: var(--gold);
  font-size: 18px;
}

.gallery-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

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

.feature-card,
.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow-lg);
}

.feature-title {
  margin: 18px 0 10px;
}

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

.testimonial-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.review-stars {
  color: #f3d48b;
  letter-spacing: 0.22em;
  font-size: 12px;
}

.logos-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 34px;
  gap: 14px;
}

.logo-cell {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-panel);
}

.logo-cell img {
  max-height: 30px;
  width: auto;
  opacity: 0.92;
}

.cta-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 34px;
}

.banner-title {
  margin: 10px 0 0;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 0.94;
  text-transform: uppercase;
}

.banner-text {
  margin: 14px 0 0;
  max-width: 56ch;
  color: var(--muted);
}

.image-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}

.image-card-copy p {
  margin: 8px 0 0;
  color: rgba(245, 239, 226, 0.84);
}

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

.tag {
  display: inline-flex;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
}

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

.stat-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.stat-value {
  display: block;
  font: 600 34px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

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

.contact-card h3 {
  margin: 16px 0 8px;
  font: 600 30px/0.94 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.faq-item {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer {
  padding: 34px 0 48px;
  color: var(--muted);
}

.footer-row {
  width: var(--content);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-fab {
  display: none;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .section-head,
  .cta-banner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .fleet-grid,
  .gallery-grid,
  .testimonial-grid,
  .feature-grid,
  .logos-grid,
  .stats-grid,
  .tag-row,
  .pill-row,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card.large,
  .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .site-nav,
  .header-actions .secondary {
    display: none;
  }

  .header-row {
    min-height: 72px;
  }

  .hero,
  .hero.hero-short {
    min-height: auto;
  }

  .hero-grid,
  .page-hero-copy {
    padding-top: 70px;
    padding-bottom: 32px;
  }

  .hero-title {
    max-width: none;
  }

  .services-grid,
  .fleet-grid,
  .gallery-grid,
  .testimonial-grid,
  .feature-grid,
  .logos-grid,
  .stats-grid,
  .tag-row,
  .pill-row,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 82px 0;
  }

  .card,
  .hero-panel,
  .cta-banner,
  .contact-card {
    padding: 24px;
  }

  .mobile-fab {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-fab .button {
    min-height: 54px;
    font-size: 11px;
  }

  .footer {
    padding-bottom: 96px;
  }
}

.home-seara-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  background: linear-gradient(180deg, rgba(6, 12, 20, 0.84), rgba(6, 12, 20, 0.18));
  backdrop-filter: blur(12px);
}

.home-seara-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  gap: 18px;
}

.home-seara-side {
  display: flex;
  align-items: center;
}

.home-seara-side.right {
  justify-content: flex-end;
}

.home-seara-link,
.home-seara-nav a,
.home-seara-outline,
.deal-link {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-seara-link,
.home-seara-nav a {
  color: rgba(245, 239, 226, 0.86);
}

.home-seara-link:hover,
.home-seara-nav a:hover {
  color: var(--text);
}

.home-seara-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.home-seara-logo img {
  width: auto;
  height: 58px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}

.home-seara-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 44px;
  padding-bottom: 18px;
}

.home-seara-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}

.home-seara-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.home-seara-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 12, 20, 0.42) 0%, rgba(6, 12, 20, 0.24) 32%, rgba(6, 12, 20, 0.86) 100%);
}

.home-seara-hero-inner {
  width: var(--content);
  margin: 0 auto;
  padding: 180px 0 90px;
  text-align: center;
}

.home-seara-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.home-seara-outline {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.home-seara-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-seara-title {
  margin: 0 0 18px 0.24em;
  font: 500 clamp(44px, 7vw, 78px)/1.05 "Manrope", sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-seara-lede {
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(245, 239, 226, 0.84);
  font-size: 18px;
}

.home-seara-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 14px;
}

.home-seara-image {
  min-height: 420px;
  overflow: hidden;
}

.home-seara-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-seara-copy {
  padding: 56px 54px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.home-seara-copy h2 {
  margin: 0 0 0 0.2em;
  font: 500 clamp(30px, 4.2vw, 44px)/1.04 "Manrope", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-seara-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  max-width: 48ch;
}

.home-seara-text-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.home-seara-destinations {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.home-seara-destinations li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-seara-destinations li a::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.home-seara-exclusive {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}

.home-seara-exclusive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-seara-exclusive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 12, 20, 0.08), rgba(6, 12, 20, 0.74));
}

.home-seara-exclusive-copy {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  text-align: center;
}

.home-seara-exclusive-copy h2 {
  margin: 10px 0 0 0.24em;
  font: 500 clamp(42px, 7vw, 80px)/0.95 "Manrope", sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-seara-motto {
  display: flex;
  justify-content: center;
}

.home-seara-motto-box {
  width: min(980px, 100%);
  padding: 28px 34px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-lg);
}

.home-seara-motto-box h3 {
  margin: 0;
  font: 500 clamp(24px, 4vw, 34px)/1.2 "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
}

.home-seara-deals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.deal-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-lg);
}

.deal-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.deal-card:hover .deal-media img {
  transform: scale(1.05);
}

.deal-body {
  padding: 18px 18px 20px;
}

.deal-title {
  margin: 0 0 14px;
  font: 500 26px/0.98 "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.deal-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--gold);
}

.deal-link::after {
  content: "\203A";
  font-size: 18px;
}

.home-seara-trusted {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.home-seara-call {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  min-height: 300px;
  box-shadow: var(--shadow-xl);
}

.home-seara-call img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-seara-call::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 12, 20, 0.26), rgba(6, 12, 20, 0.82));
}

.home-seara-call-copy {
  position: absolute;
  inset: auto 34px 34px;
  z-index: 1;
}

.home-seara-call-copy h3 {
  margin: 0 0 10px 0.18em;
  font: 500 clamp(24px, 4vw, 40px)/1.02 "Manrope", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-seara-call-copy p {
  margin: 0 0 18px;
  color: rgba(245, 239, 226, 0.84);
}

.home-paper {
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 186, 122, 0.16), transparent 24%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
}

.home-paper .kicker,
.home-paper .home-seara-text-link {
  color: #9b7841;
}

.home-paper .section-title,
.home-paper .home-seara-copy h2,
.home-paper .home-seara-destinations li a {
  color: var(--ink);
}

.home-paper .section-text,
.home-paper .home-seara-copy p {
  color: var(--ink-muted);
}

.home-paper .home-seara-copy {
  border-color: rgba(21, 27, 36, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(20, 27, 36, 0.1);
}

.home-paper .home-seara-destinations li a {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(21, 27, 36, 0.12);
}

.home-paper + .home-paper {
  border-top: 1px solid rgba(21, 27, 36, 0.08);
}

@media (max-width: 1120px) {
  .home-seara-split,
  .home-seara-top {
    grid-template-columns: 1fr;
  }

  .home-seara-top {
    justify-items: center;
    padding-top: 18px;
  }

  .home-seara-side,
  .home-seara-side.right {
    justify-content: center;
  }

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

@media (max-width: 780px) {
  .home-seara-nav {
    display: none;
  }

  .home-seara-hero-inner {
    padding-top: 180px;
    padding-bottom: 60px;
  }

  .home-seara-title,
  .home-seara-exclusive-copy h2,
  .home-seara-call-copy h3,
  .home-seara-copy h2 {
    margin-left: 0.18em;
  }

  .home-seara-copy {
    padding: 34px 24px;
  }

  .home-seara-logo img {
    height: 48px;
  }

  .home-seara-destinations {
    grid-template-columns: 1fr;
  }

  .home-seara-deals,
  .home-seara-trusted {
    grid-template-columns: 1fr;
  }

  .home-seara-exclusive {
    min-height: 420px;
  }
}

