/* Luxury Cruises Guide */
:root {
  --ink: #242021;
  --paper: #ffffff;
  --panel: #f9f9f9;
  --accent: #f26223;
  --accent-dark: #d54f15;
  --muted: #6b6668;
  --radius: 14px;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

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

.container.narrow { max-width: 760px; }
.center { text-align: center; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

p + p { margin-top: 1rem; }

.lead { font-size: 1.25rem; font-weight: 500; }

/* ---------- header ---------- */
.site-header {
  background: var(--panel);
  border-bottom: 1px solid rgba(36, 32, 33, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header-logo img { width: 500px; max-width: 52vw; height: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.header-nav a { color: var(--ink); }
.header-nav a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-dark); }

/* ---------- hero (full-bleed, text left) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(320px, 44vw, 560px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 14, 16, 0.62) 0%, rgba(15, 14, 16, 0.38) 55%, rgba(15, 14, 16, 0.12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-inner h1 {
  color: #fff;
  max-width: 14em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 34em;
  margin-top: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ---------- sections ---------- */
.section { padding: 3.5rem 0; }

.section-panel {
  background: var(--panel);
  margin-top: 3.5rem;
  padding: 2.75rem 0;
}
.section-panel + .section { padding-top: 3.5rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.button {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
}
.button:hover { background: var(--accent-dark); color: #fff; }

/* ---------- contact offices ---------- */
.offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.office-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.office-card p { margin-top: 0.35rem; }
.office-card a { font-weight: 500; white-space: nowrap; }
.office-card a[href^="mailto"] { white-space: normal; word-break: break-word; }

/* ---------- legal ---------- */
.legal h2 { margin-top: 2.5rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin-top: 1.75rem; }
.legal ul { margin: 0.75rem 0 0.75rem 1.4rem; }
.legal li { margin-top: 0.35rem; }
.legal a { word-break: break-word; }

/* ---------- easy quote ---------- */
.eq {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 2rem;
}

.eq-head { margin-bottom: 1.5rem; }

.eq-progress {
  height: 6px;
  background: rgba(36, 32, 33, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.eq-progress-bar {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.eq-step-label {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eq-title { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin-bottom: 0.35rem; }
.eq-hint { color: var(--muted); margin-bottom: 1.5rem; }

.eq-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.eq-choice {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  background: #fff;
  border: 2px solid rgba(36, 32, 33, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.eq-choice:hover { border-color: var(--accent); }

.eq-choice.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 98, 35, 0.15);
}

.eq-choice-title { font-weight: 700; font-size: 1.05rem; }
.eq-choice-desc { color: var(--muted); font-size: 0.92rem; }

.eq-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 1.1rem 0 0.4rem;
}

.eq-label:first-of-type { margin-top: 0; }

.eq-input {
  width: 100%;
  font: inherit;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(36, 32, 33, 0.2);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}

.eq-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 98, 35, 0.15);
}

.eq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.eq-grid .eq-label { margin-top: 0; }

.eq-note {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.eq-error {
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: #fdecea;
  color: #a32316;
  font-size: 0.92rem;
}

.eq-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.75rem;
}

.eq-btn {
  font: inherit;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.eq-btn-next {
  background: var(--accent);
  color: #fff;
  margin-left: auto;
}

.eq-btn-next:hover { background: var(--accent-dark); }
.eq-btn-next:disabled { opacity: 0.6; cursor: default; }

.eq-btn-back {
  background: transparent;
  color: var(--ink);
  border-color: rgba(36, 32, 33, 0.25);
}

.eq-btn-back:hover { border-color: var(--ink); }

.eq-success { text-align: center; padding: 1rem 0 0.5rem; }
.eq-success h2 { margin-bottom: 0.6rem; }
.eq-success p { max-width: 40em; margin-inline: auto; }

.eq-assist {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 560px) {
  .eq { padding: 1.25rem; }
  .eq-grid { grid-template-columns: 1fr; }
  .eq-grid .eq-label:not(:first-child) { margin-top: 1.1rem; }
  .eq-nav { flex-direction: column-reverse; align-items: stretch; }
  .eq-btn-next { margin-left: 0; }
}

/* ---------- footer (dark, multi-column) ---------- */
.site-footer {
  background: var(--ink);
  color: #d8d5d6;
  margin-top: 3.5rem;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.25rem;
}

.footer-brand { margin-bottom: 1rem; }

.footer-brand img {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.footer-about p {
  font-size: 0.92rem;
  margin-top: 0.8em;
}

.footer-nav {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-nav h3 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.footer-nav a,
.footer-about a {
  color: #d8d5d6;
  font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-about a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 0.92rem;
  margin: 0;
}

.footer-contact a { font-weight: 600; white-space: nowrap; }
.footer-contact a[href^="mailto"] { white-space: normal; word-break: break-word; }

.footer-copy {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: #a8a4a5;
}

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 1.75rem; }
  .split img { order: -1; }
  .offices { grid-template-columns: 1fr; }
  .section { padding: 2.5rem 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .header-nav { gap: 0.9rem; font-size: 0.95rem; }
  .header-inner { flex-direction: column; gap: 0.75rem; }
  .header-logo img { width: 320px; max-width: 86vw; }
  .footer-grid { grid-template-columns: 1fr; }
}
