:root {
  --navy: #0d2b46;
  --navy-dark: #082036;
  --brass: #c99a3e;
  --brass-dark: #8f6a24;
  --parchment: #efe1c3;
  --parchment-light: #f8f1de;
  --ink: #1c3a4b;
  --white: #fdfaf3;
  --max-width: 1120px;
  --radius: 3px;
  --shadow: 0 12px 28px rgba(13, 43, 70, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--parchment-light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

a { color: inherit; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 700;
  color: var(--brass-dark);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 3px solid var(--navy);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  max-width: none;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.site-header .logo img {
  height: 150px;
  width: auto;
}

@media (max-width: 720px) {
  .site-header .logo img { height: 100px; }
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--brass);
  color: var(--brass-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero (home): sunburst + stepped deco frame ---------- */
.hero {
  position: relative;
  background: var(--parchment);
  color: var(--navy);
  padding: 80px 24px 0;
  text-align: center;
  overflow: hidden;
}

.hero .rays {
  position: absolute;
  top: 20%; left: 50%;
  width: 1400px; height: 1400px;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg, rgba(201, 154, 62, 0.16) 0deg 4deg, transparent 4deg 12deg);
  border-radius: 50%;
  pointer-events: none;
}

.hero .frame-deco {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 56px;
  border: 2px solid var(--navy);
  background: rgba(248, 241, 222, 0.9);
}

.hero .frame-deco::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--brass-dark);
  pointer-events: none;
}

.corner { position: absolute; width: 20px; height: 20px; border: 2px solid var(--brass); }
.corner.c-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.corner.c-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.corner.c-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.corner.c-br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.hero .mark { width: 78px; height: auto; margin: 0 auto 18px; }

.hero .deco-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(28px, 5vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero .deco-title .rule { flex: 1; max-width: 50px; height: 2px; background: var(--brass); }

.hero .tagline {
  font-family: -apple-system, sans-serif;
  font-size: 14px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass-dark);
  margin: 0 0 20px;
}

.hero .eyebrow { margin-bottom: 14px; display: block; }

.hero p.lede {
  max-width: 46ch;
  margin: 0 auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

.hero .btn { margin-top: 26px; }

.hero .routes-band {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  background: var(--navy);
  color: var(--parchment);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero .routes-band span.anchor { color: var(--brass); }

/* ---------- Sub-hero (About / Contact / 404): quieter navy band ---------- */
.hero-page {
  background: var(--navy);
  color: var(--white);
  padding: 60px 24px 54px;
  text-align: center;
}

.hero-page .eyebrow { color: var(--brass); }

.hero-page h1 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(26px, 4vw, 38px);
  margin: 10px 0 12px;
}

.hero-page .rule-flank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 12px;
}

.hero-page .rule-flank .rule { flex: 0 0 44px; height: 2px; background: var(--brass); }

.hero-page p { color: rgba(253, 250, 243, 0.85); margin: 0; max-width: 52ch; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--brass);
  color: var(--navy-dark);
  border-color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--brass);
}

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

.seal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  position: relative;
  background: var(--parchment);
}

.seal-btn::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--brass);
  border-radius: 50%;
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }

.section-alt { background: var(--parchment); }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-head .eyebrow { display: block; margin-bottom: 10px; }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(13, 43, 70, 0.15);
  padding: 34px 26px 30px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.card .icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brass);
  color: var(--brass-dark);
  font-size: 20px;
}

.card h3 { font-size: 18px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.02em; }
.card p { font-size: 15px; color: #3d5061; margin: 0; }

/* ---------- Specialty grid (cruises featured, all-inclusive secondary) ---------- */
.specialty-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 780px) {
  .specialty-grid { grid-template-columns: 1fr; }
}

.specialty-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(13, 43, 70, 0.15);
  padding: 38px 34px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.specialty-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.specialty-main {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.specialty-main h3 { color: var(--white); font-size: 24px; text-transform: uppercase; letter-spacing: 0.03em; }
.specialty-main p { color: rgba(253, 250, 243, 0.88); }

.specialty-card:not(.specialty-main) h3 { font-size: 19px; text-transform: uppercase; letter-spacing: 0.02em; }
.specialty-card:not(.specialty-main) p { color: #3d5061; margin: 0; }

.specialty-card .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  font-size: 20px;
}

.specialty-main .icon { color: var(--brass); border-color: var(--brass); }

.specialty-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 20px;
}

.specialty-list li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}

.specialty-list li::before {
  content: "\2693";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 12px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(13, 43, 70, 0.15);
  padding: 34px 28px;
}

.testimonial .quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
}

.testimonial .attribution {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.testimonial .trip {
  font-size: 12px;
  color: var(--brass-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}

.cta-band h2 { color: var(--white); text-transform: uppercase; letter-spacing: 0.03em; }
.cta-band p { color: rgba(253, 250, 243, 0.85); max-width: 520px; margin: 0 auto 28px; }

/* ---------- About page specifics ---------- */
.about-block {
  max-width: 760px;
  margin: 0 auto 56px;
}

.about-block:last-child { margin-bottom: 0; }

.about-block .eyebrow { display: block; margin-bottom: 10px; }

/* ---------- Contact page ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 780px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info h2 { text-transform: uppercase; letter-spacing: 0.03em; font-size: 22px; }

.contact-info .email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 20px;
  border: 1.5px solid var(--brass);
  margin-top: 12px;
}

.contact-info .email-link:hover { background: var(--parchment); }

form.contact-form {
  position: relative;
  background: var(--parchment);
  border: 1px solid rgba(13, 43, 70, 0.2);
  padding: 40px 36px;
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(13, 43, 70, 0.25);
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
}

.form-row textarea { resize: vertical; min-height: 110px; }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-group input { width: 16px; height: 16px; }

.form-note {
  font-size: 13px;
  color: #5b6b7c;
  margin-top: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(253, 250, 243, 0.75);
  padding: 48px 24px 28px;
  text-align: center;
  border-top: 3px solid var(--brass);
}

.site-footer img { height: 80px; width: auto; margin: 0 auto 18px; }

@media (max-width: 400px) {
  .site-footer img { height: 60px; }
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 16px 0;
  list-style: none;
  padding: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer .footer-links a { text-decoration: none; color: rgba(253, 250, 243, 0.85); }
.site-footer .footer-links a:hover { color: var(--brass); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 22px 0 6px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover { background: var(--brass); color: var(--navy-dark); }
.social-links svg { width: 17px; height: 17px; }

.site-footer .copyright { font-size: 12px; color: rgba(253, 250, 243, 0.5); margin-top: 20px; letter-spacing: 0.04em; }

/* ---------- Mobile nav ---------- */
@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--parchment);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 3px solid var(--navy);
    display: none;
  }

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

  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(13,43,70,0.1); }

  .contact-wrap { gap: 36px; }

  .hero .frame-deco { padding: 36px 24px; }
}
