/* ═══════════════════════════════════════════
   RLH TRAVEL — styles.css
   ═══════════════════════════════════════════ */

:root {
  --navy:       #0f415d;
  --navy-dark:  #0b354d;
  --navy-deep:  #082d42;
  --blue:       #205272;
  --gold:       #d7b33f;
  --gold-light: #f1c95a;
  --white:      #ffffff;
  --soft-white: #f4f7f8;
  --text-body:  #ddeaf0;

  --font-display: "Jost", Arial, sans-serif;
  --font-body:    "Jost", Arial, sans-serif;
  --font-accent:  "Jost", Arial, sans-serif;

  --radius-pill: 999px;
  --radius-card: 6px;
  --transition:  200ms ease;
}

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

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

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


/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 72px);
  height: 80px;
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Nav pill — Jost regular 13px */
.main-nav {
  display: flex;
  align-items: center;
  border: 1px solid rgba(8,45,66,0.4);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(15,65,93,0.5);
}

.main-nav a {
  padding: 13px 24px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
}

.main-nav a.nav-wedding {
  color: var(--gold-light);
  border-left: 1px solid rgba(8,45,66,0.3);
}

.main-nav a.nav-wedding:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}


/* ══════════════════════════════════════════
   STORY SECTION
══════════════════════════════════════════ */
.story-section {
  padding: clamp(52px, 8vw, 100px) clamp(20px, 4vw, 64px);
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  min-height: calc(100vh - 80px);
}

.story-inner {
  display: grid;
  grid-template-columns: minmax(720px, 1.65fr) minmax(390px, 0.85fr);
  gap: clamp(34px, 4vw, 58px);
  max-width: 1480px;
  margin: 0 auto;
  align-items: stretch;
}

/* ── Photo column ── */
.story-photo-col {
  display: flex;
  flex-direction: column;
}

/* Hidden on desktop. Used on mobile to place the photo right under the heading. */
.story-photo-mobile {
  display: none;
}

.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  min-height: 560px;
}

.photo-caption {
  margin-top: 12px;
  flex-shrink: 0;
  text-align: center;
  font-family: "Jost", Arial, sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--soft-white);
  opacity: 0.8;
}

/* ── Text column ── */
.story-text-col {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.story-text-col h1 {
  font-family: "Jost", Arial, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 28px;
  text-align: center;
}

.story-text-col p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 18px;
  text-align: justify;
}

.story-text-col p:last-of-type {
  margin-bottom: 28px;
}

/* ── CTA Button ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  background: var(--gold-light);
  color: #205272;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 52px 24px 36px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(32, 82, 114, 0.98) 0%, rgba(15, 65, 93, 0.92) 34%, rgba(8, 45, 66, 0.98) 72%, #06283b 100%);
  border-top: 1px solid rgba(215,179,63,0.15);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 32, 48, 0.68) 0%, rgba(5, 32, 48, 0) 22%, rgba(5, 32, 48, 0) 78%, rgba(5, 32, 48, 0.68) 100%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 48%);
  opacity: 0.75;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: min(680px, 94vw);
  margin: 0 auto 16px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-email {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
  transition: opacity var(--transition);
}

.footer-email:hover { opacity: 0.75; }

.footer-copy {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  transition: opacity var(--transition);
}

.footer-links a:hover { opacity: 0.7; }
.footer-links span { color: var(--gold); opacity: 0.4; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215,179,63,0.4);
  border-radius: 50%;
  color: var(--gold);
  transition: background var(--transition), border-color var(--transition);
}

.social-icon:hover {
  background: rgba(215,179,63,0.12);
  border-color: var(--gold);
}

.footer-disclaimer {
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1.6;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 960px) {
  .site-header { height: 68px; justify-content: space-between; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    border-radius: 16px;
    background: var(--navy-dark);
    border: 1px solid rgba(215,179,63,0.2);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: left;
  }

  .main-nav a.nav-wedding { border-left: none; border-top: 1px solid rgba(215,179,63,0.2); }
  .main-nav a:last-child  { border-bottom: none; }

  .story-inner { grid-template-columns: 1fr; }

  /* Hide the desktop photo column on mobile so the image can sit under the heading. */
  .story-photo-col { display: none; }

  .story-text-col { order: 1; }

  .story-photo-mobile {
    display: block;
    margin: 0 0 28px;
  }

  .story-photo-mobile .story-photo {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
    object-position: 60% center;
  }

  .story-photo-mobile .photo-caption {
    margin-bottom: 0;
  }

  .btn-gold { align-self: stretch; justify-content: center; }
}

@media (max-width: 560px) {
  .story-section { padding: 40px 18px 56px; }
  .story-text-col h1 { font-size: 3.4rem; }
}

/* ══════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 10vw, 120px) 24px;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(8,45,66,0.36), rgba(8,45,66,0.82)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(32,82,114,0.15) 0%, rgba(8,45,66,0.88) 72%);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.home-hero-logo {
  width: min(560px, 92vw);
  margin: 0 auto 18px;
}

.home-eyebrow,
.home-intro .eyebrow,
.home-services .eyebrow,
.home-story-preview .eyebrow,
.home-cta .eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--gold);
  margin-bottom: 26px;
}

.home-hero-text {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--soft-white);
}

.home-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(241,201,90,0.75);
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: rgba(241,201,90,0.13);
  transform: translateY(-2px);
}

.home-intro,
.home-services,
.home-story-preview,
.home-cta {
  padding: clamp(64px, 8vw, 105px) clamp(20px, 6vw, 80px);
}

.home-intro {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}

.home-intro-inner,
.home-cta-inner {
  max-width: 880px;
  margin: 0 auto;
}

.home-intro h2,
.home-services h2,
.home-story-preview h2,
.home-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--gold);
  margin-bottom: 24px;
}

.home-intro p,
.home-cta p,
.home-story-text p,
.service-card p {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--text-body);
}

.home-services {
  background: var(--navy-deep);
  text-align: center;
}

.home-services-inner {
  max-width: 1260px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
  text-align: left;
}

.service-card {
  min-height: 300px;
  padding: 30px 26px;
  border: 1px solid rgba(215,179,63,0.18);
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, rgba(32,82,114,0.52), rgba(8,45,66,0.75));
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
}

.service-number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 16px;
}

.home-story-preview {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.home-story-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.home-story-photo-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.home-story-photo {
  width: 100%;
  height: clamp(420px, 50vw, 620px);
  object-fit: cover;
  object-position: 58% center;
}

.home-story-text .btn-gold {
  margin-top: 30px;
}

.home-cta {
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(32,82,114,0.88) 0%, rgba(8,45,66,1) 76%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
}

.home-cta .btn-gold {
  margin-top: 30px;
}

@media (max-width: 1060px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .home-story-inner { grid-template-columns: 1fr; }
  .home-story-text { text-align: center; }
}

@media (max-width: 960px) {
  .home-hero { min-height: calc(100vh - 68px); }
  .home-hero-logo { width: min(430px, 92vw); }
}

@media (max-width: 650px) {
  .home-hero { padding: 60px 18px 70px; }
  .home-hero h1 { font-size: 3.55rem; }
  .home-hero-text { font-size: 17px; }
  .home-hero-actions { flex-direction: column; align-items: stretch; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .home-story-photo { height: auto; }
}


/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 90px);
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.legal-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(8, 45, 66, 0.38);
  border: 1px solid rgba(215, 179, 63, 0.18);
  border-radius: var(--radius-card);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.legal-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 14px;
}

.legal-effective {
  font-size: 17px;
  font-weight: 400;
  color: var(--soft-white);
  opacity: 0.85;
  margin-bottom: 36px;
}

.legal-content h2 {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 18px 22px;
}

.legal-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 560px) {
  .legal-section {
    padding: 40px 18px 56px;
  }

  .legal-inner {
    padding: 26px 20px;
  }

  .legal-content p,
  .legal-content li,
  .legal-effective {
    font-size: 16px;
  }
}


/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 6vw, 90px);
  background:
    radial-gradient(circle at 24% 18%, rgba(32,82,114,0.78) 0%, rgba(15,65,93,0.42) 38%, rgba(8,45,66,1) 76%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  min-height: calc(100vh - 80px);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(460px, 1.25fr);
  gap: clamp(36px, 6vw, 78px);
  max-width: 1260px;
  margin: 0 auto;
  align-items: start;
}

.contact-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--gold);
  margin-bottom: 26px;
}

.contact-intro p:not(.eyebrow) {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 520px;
}

.contact-form {
  background: rgba(8, 45, 66, 0.48);
  border: 1px solid rgba(215, 179, 63, 0.24);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(215, 179, 63, 0.38);
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  border-radius: 18px;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(215,179,63,0.16);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-42%);
  color: var(--navy-dark);
  font-size: 22px;
  pointer-events: none;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(8,45,66,0.52);
}

.hidden-field {
  display: none;
}

.consent-line {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  color: var(--text-body) !important;
}

.consent-line input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold-light);
}

.form-submit {
  border: 0;
  cursor: pointer;
  margin-top: 8px;
}

.thank-you-inner {
  display: block;
  max-width: 900px;
  text-align: center;
}

.thank-you-inner .contact-intro p {
  margin: 0 auto 28px;
}

@media (max-width: 960px) {
  .contact-section { min-height: calc(100vh - 68px); }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-intro { text-align: center; }
  .contact-intro p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
}

@media (max-width: 650px) {
  .contact-section { padding: 42px 18px 58px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { border-radius: 14px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; }
  .form-submit { width: 100%; }
}

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-hero {
  padding: clamp(74px, 9vw, 120px) clamp(20px, 6vw, 90px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 16%, rgba(32,82,114,0.92) 0%, rgba(15,65,93,0.58) 42%, rgba(8,45,66,1) 80%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.services-hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.services-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--gold);
  margin-bottom: 26px;
}

.services-hero p:not(.eyebrow) {
  max-width: 830px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--soft-white);
}

.services-main {
  padding: clamp(62px, 8vw, 110px) clamp(20px, 6vw, 90px);
  background: var(--navy-deep);
}

.services-main-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.services-layout-refined {
  display: grid;
  gap: clamp(34px, 5vw, 62px);
}

.service-category {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(215,179,63,0.2);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 12%, rgba(241,201,90,0.1) 0%, rgba(241,201,90,0) 38%),
    linear-gradient(160deg, rgba(32,82,114,0.42), rgba(8,45,66,0.78));
  box-shadow: 0 20px 54px rgba(0,0,0,0.2);
}

.service-category-reverse {
  grid-template-columns: 1fr 1.25fr;
}

.puerto-rico-feature {
  background:
    radial-gradient(circle at 12% 15%, rgba(241,201,90,0.16) 0%, rgba(241,201,90,0) 36%),
    radial-gradient(circle at 92% 84%, rgba(32,82,114,0.68) 0%, rgba(32,82,114,0) 42%),
    linear-gradient(160deg, rgba(32,82,114,0.58), rgba(8,45,66,0.84));
}

.service-category-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-category-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(215,179,63,0.48);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-category-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.4vw, 4.75rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--gold);
  margin-bottom: 22px;
}

.service-category-intro p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.76;
  font-weight: 400;
  color: var(--text-body);
}

.service-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.three-card-list {
  grid-template-columns: repeat(3, 1fr);
}

.service-feature-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(215,179,63,0.18);
  border-radius: var(--radius-card);
  background: rgba(8,45,66,0.42);
}

.service-feature-card.spotlight-card {
  background:
    radial-gradient(circle at 16% 14%, rgba(241,201,90,0.13) 0%, rgba(241,201,90,0) 42%),
    rgba(8,45,66,0.52);
}

.service-feature-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.65rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--gold);
  margin-bottom: 14px;
}

.service-feature-card p {
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--text-body);
}

.services-process {
  padding: clamp(64px, 8vw, 105px) clamp(20px, 6vw, 90px);
  text-align: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.services-process-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.services-process h2 {
  max-width: 840px;
  margin: 0 auto 42px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.process-grid article {
  padding: 30px 28px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(215,179,63,0.18);
  background: rgba(8,45,66,0.34);
}

.process-grid span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.process-grid h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-grid p {
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--text-body);
}

@media (max-width: 1080px) {
  .service-category,
  .service-category-reverse {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 650px) {
  .services-hero {
    padding: 56px 18px 64px;
  }

  .services-hero h1 {
    font-size: 4rem;
  }

  .services-main,
  .services-process {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-category {
    padding: 28px 22px;
  }

  .service-category-intro h2 {
    font-size: 2.75rem;
  }

  .service-feature-card {
    padding: 24px 22px;
  }
}

/* ══════════════════════════════════════════
   SERVICES PAGE — VISUAL DESTINATION VERSION
══════════════════════════════════════════ */
.services-hero-visual {
  background:
    linear-gradient(rgba(8,45,66,0.54), rgba(8,45,66,0.74)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.destination-inspiration {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 6vw, 90px);
  background:
    radial-gradient(circle at 50% 0%, rgba(32,82,114,0.58) 0%, rgba(32,82,114,0) 45%),
    var(--navy-deep);
}

.destination-inspiration-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.destination-inspiration h2 {
  max-width: 860px;
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--gold);
}

.destination-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 20px;
}

.destination-tile {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(215,179,63,0.24);
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.destination-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,45,66,0.05) 0%, rgba(8,45,66,0.42) 42%, rgba(8,45,66,0.94) 100%),
    radial-gradient(circle at 20% 18%, rgba(241,201,90,0.18) 0%, rgba(241,201,90,0) 36%);
}

.tile-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 640px;
}

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

.tile-honeymoon {
  grid-column: span 2;
}

.tile-honeymoon .tile-content,
.tile-cruise .tile-content {
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tile-honeymoon .tile-content p,
.tile-cruise .tile-content p {
  margin-top: auto;
}

.tile-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 2.5vw, 32px);
}

.tile-content span {
  display: none;
}

.tile-content h3 {
  max-width: 92%;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.35vw, 3.05rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--gold);
  margin-bottom: 12px;
  text-wrap: balance;
}

.tile-content p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 400;
  color: var(--soft-white);
}

.tile-weddings {
  background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1400&q=80");
}

.tile-honeymoon {
  background-image: url("https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=1000&q=80");
}

.tile-cruise {
  background-image: url("https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=1000&q=80");
}

.tile-resort {
  background-image: url("https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=1000&q=80");
}

.tile-puerto-rico {
  background-image: url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1400&q=80");
}

.tile-disney {
  background-image: url("https://images.unsplash.com/photo-1526495124232-a04e1849168c?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
}

.tile-group {
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
}

.featured-experience {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 90px);
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.featured-experience-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.featured-experience-image {
  min-height: 520px;
  border-radius: 12px;
  border: 1px solid rgba(215,179,63,0.24);
  background:
    linear-gradient(rgba(8,45,66,0.08), rgba(8,45,66,0.26)),
    url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  box-shadow: 0 26px 70px rgba(0,0,0,0.32);
}

.featured-experience-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--gold);
  margin-bottom: 22px;
}

.featured-experience-text p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.78;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 22px;
}

.text-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(241,201,90,0.58);
  padding-bottom: 6px;
}

@media (max-width: 1080px) {
  .destination-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .featured-experience-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .services-hero-visual {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .destination-inspiration {
    padding-left: 18px;
    padding-right: 18px;
  }

  .destination-inspiration h2 {
    font-size: 3rem;
  }

  .destination-mosaic {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .destination-tile,
  .tile-large,
  .tile-wide,
  .tile-honeymoon {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 410px;
  }

  .tile-content h3 {
    font-size: 2.15rem;
    max-width: 100%;
  }

  .featured-experience {
    padding-left: 18px;
    padding-right: 18px;
  }

  .featured-experience-image {
    min-height: 390px;
  }
}
