/* ============================================================
   Passport Royale Travel Co. — Main Stylesheet
   Colors: Navy #1a2744 | Gold #c9a84c | BG #fafafa | Text #1a1a1a
   ============================================================ */

:root {
  --navy: #1a2744;
  --navy-dark: #101a2e;
  --gold: #c9a84c;
  --gold-dark: #b8943e;
  --white: #ffffff;
  --bg: #fafafa;
  --bg-alt: #f0f2f7;
  --text: #1a1a1a;
  --text-light: #5a6272;
  --border: #dde1ea;
  --shadow: 0 2px 16px rgba(26, 39, 68, 0.1);
  --shadow-hover: 0 8px 32px rgba(26, 39, 68, 0.18);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
p { color: var(--text-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  letter-spacing: .02em;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #243560; transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--white);
  padding: .55rem 1.3rem;
  border-radius: 4px;
  font-weight: 600;
}
.nav-links .nav-cta a::after { display: none; }
.nav-links .nav-cta a:hover { background: var(--gold-dark); color: var(--white); }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: .5rem 1.5rem 1.25rem; }
.mobile-nav li a {
  display: block;
  color: rgba(255,255,255,.8);
  padding: .9rem 0;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-nav li a:hover { color: var(--gold); }
.mobile-nav li:last-child a {
  border: none;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ============================================================
   HERO — Home Page
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,39,68,.88) 0%,
    rgba(26,39,68,.65) 55%,
    rgba(26,39,68,.3) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}
.eyebrow-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 720px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.4);
  animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   PAGE HERO — Inner Pages
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.page-hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5.5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-navy { background: var(--navy); }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; line-height: 1.75; }
.section-navy .section-header h2 { color: var(--white); }
.section-navy .section-header p { color: rgba(255,255,255,.72); }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 560px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.dest-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dest-card-img {
  position: relative;
  height: 225px;
  overflow: hidden;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dest-card:hover .dest-card-img img { transform: scale(1.06); }
.dest-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .7rem;
  border-radius: 2px;
}
.dest-badge-navy {
  background: var(--navy);
}
.dest-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dest-card-body h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.dest-card-body p { font-size: .9rem; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.dest-card-link {
  color: var(--gold);
  font-size: .88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}
.dest-card-link:hover { color: var(--gold-dark); gap: .6rem; }
.dest-card-link::after { content: '→'; }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1.1rem; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  font-size: .95rem;
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial-card blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  top: -1rem;
  left: -0.25rem;
  line-height: 1;
}
.testimonial-meta strong { display: block; color: var(--navy); font-size: .95rem; }
.testimonial-meta span { font-size: .82rem; color: var(--gold); font-weight: 600; }

/* ============================================================
   WHY BOOK WITH US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 560px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.why-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.why-item h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .6rem; }
.why-item p { color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #243560 100%);
  color: var(--white);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============================================================
   HOME — INTRO / SPLIT SECTION
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .split-section { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-section.reverse { }
@media (min-width: 768px) { .split-section.reverse .split-img { order: 2; } }
.split-img { border-radius: 8px; overflow: hidden; }
.split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}
.split-text .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.split-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.split-text p { line-height: 1.8; margin-bottom: 1.25rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { text-align: center; }
.team-photo-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--gold);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--navy);
  font-weight: 700;
}
.team-card h3 { font-size: 1.4rem; margin-bottom: .35rem; }
.team-card .role { color: var(--gold); font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem; display: block; }
.team-card p { font-size: .92rem; line-height: 1.75; max-width: 320px; margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 560px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.value-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.value-card p { font-size: .9rem; line-height: 1.7; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img {
  height: 230px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: .6rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.blog-card-meta .tag {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: .75rem; line-height: 1.35; }
.blog-card p { font-size: .9rem; line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.read-more {
  color: var(--gold);
  font-size: .88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
  margin-top: auto;
}
.read-more:hover { color: var(--gold-dark); gap: .6rem; }
.read-more::after { content: '→'; }

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.blog-post-wrap { max-width: 820px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 2rem;
  transition: color .2s;
}
.back-link::before { content: '←'; }
.back-link:hover { color: var(--gold); }
.post-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  color: var(--text-light);
}
.post-meta .tag {
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .25rem .7rem;
  border-radius: 2px;
}
.post-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 2rem; color: var(--navy); }
.post-content p { line-height: 1.85; margin-bottom: 1.5rem; color: var(--text); }
.post-content h2 { font-size: 1.65rem; margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.25rem; margin: 2rem 0 .75rem; }
.post-content ul, .post-content ol { padding-left: 1.75rem; margin-bottom: 1.5rem; }
.post-content ul li, .post-content ol li { margin-bottom: .6rem; line-height: 1.75; color: var(--text); }
.post-content .callout {
  background: #f0f4ff;
  border-left: 4px solid var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}
.post-content .callout p { margin: 0; color: var(--navy); font-weight: 500; }
.post-footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.post-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info strong { display: block; color: var(--navy); font-size: .9rem; }
.author-info span { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1.75fr; } }
.contact-info h3 { font-size: 1.4rem; margin-bottom: .85rem; }
.contact-info > p { line-height: 1.8; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-detail .ci-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--navy); font-size: .9rem; margin-bottom: .15rem; }
.contact-detail-text span { font-size: .88rem; color: var(--text-light); }
.contact-detail-text a { color: var(--gold); font-weight: 600; }
.contact-detail-text a:hover { color: var(--gold-dark); }

.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.35rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .45rem;
}
label .optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: .8rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,.08);
  background: var(--white);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6272' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; font-size: 1rem; padding: .95rem; border-radius: 6px; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--navy); margin-bottom: .75rem; }
.form-success p { color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 560px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-bottom: .75rem; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: .55rem; }
.footer-col a {
  color: rgba(255,255,255,.62);
  font-size: .88rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .82rem;
}
@media (min-width: 600px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0 !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

@media (max-width: 559px) {
  .section { padding: 4rem 1.25rem; }
  .hero-content { padding: 4rem 1.25rem; }
}
