/* ================================================
   MORE-CRUIZ.RU
   Playfair Display + Inter · Warm editorial palette
   ================================================ */

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

:root {
  --ink:       #0E1117;
  --ocean:     #0B2340;
  --sea:       #163A5F;
  --sand:      #F5F0E8;
  --surface:   #FFFDF9;
  --gold:      #A07830;
  --gold-lt:   #C49A48;
  --smoke:     #6B6860;
  --border:    #E0D9CE;
  --white:     #FFFFFF;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --wrap:      1240px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── CONTAINER ─────────────────────────── */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ── TYPOGRAPHY ────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }

.h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ocean);
  margin-bottom: 18px;
}
.h2--center { text-align: center; }

.lead {
  font-size: 17px;
  color: var(--smoke);
  max-width: 560px;
  line-height: 1.75;
}

/* ── BUTTONS ───────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(160,120,48,.45); }
.btn-primary--sm { padding: 11px 22px; font-size: 13px; }
.btn-primary--lg { padding: 17px 40px; font-size: 16px; }

.btn-header {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.7);
  padding: 9px 20px;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.btn-header:hover { border-color: var(--white); background: rgba(255,255,255,.15); }

/* ── HEADER ────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: 66px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s var(--ease), backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(11, 35, 64, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo svg { opacity: .9; }
.logo__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.logo__name em { font-style: italic; color: var(--gold-lt); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 20px;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  transition: color .2s;
  text-shadow: 0 1px 8px rgba(0,0,0,.6), 0 0 20px rgba(0,0,0,.4);
}
.nav__link:hover { color: var(--white); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform .25s, opacity .2s;
}

/* ── HERO ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero__photo {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=1920&q=80')
    center center / cover no-repeat;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,18,35,.92) 0%, rgba(8,18,35,.55) 45%, rgba(8,18,35,.15) 100%);
}
.hero__body {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 66px;
}
.hero__body .btn-primary {
  box-shadow: 0 4px 32px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.3);
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--gold-lt); text-shadow: 0 0 40px rgba(196,154,72,.3); }
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero__nums {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__num b {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}
.hero__num span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
}
.hero__down {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 1;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  animation: bob 2.2s ease-in-out infinite;
  transition: color .2s;
}
.hero__down:hover { color: rgba(255,255,255,.8); }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ── SEARCH SECTION ────────────────────── */
.section-search {
  background: var(--surface);
  padding: 80px 0 100px;
}
.search-label {
  max-width: 560px;
  margin-bottom: 48px;
}
.search-label .lead { margin-top: 4px; }
.search-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 40px rgba(11,35,64,.07), 0 1px 3px rgba(11,35,64,.05);
}
#infoflot-widget-container { min-height: 720px; }

/* ── DIRECTIONS ────────────────────────── */
.section-dir {
  background: var(--sand);
  padding: 100px 0;
}
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-note {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.7;
  text-align: right;
}

/* Direction grid – editorial layout */
.dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 340px 260px;
  gap: 14px;
}
.dir--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.dir {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ocean);
  cursor: pointer;
}
.dir__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease), opacity .4s;
  opacity: .75;
}
.dir:hover .dir__photo { transform: scale(1.04); opacity: .9; }
.dir__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,18,35,.85) 0%, rgba(8,18,35,.2) 60%, transparent 100%);
  transition: opacity .3s;
}
.dir:hover .dir__overlay { opacity: .9; }
.dir__body {
  position: relative;
  z-index: 1;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dir__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.dir__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 5px;
}
.dir--featured .dir__title { font-size: 32px; }
.dir__geo {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
  letter-spacing: .3px;
}
.dir__foot {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.dir__price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.dir--featured .dir__price { font-size: 22px; }
.dir__days {
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* ── WHY ───────────────────────────────── */
.section-why {
  background: var(--ocean);
  padding: 110px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.why-text .eyebrow { color: var(--gold-lt); }
.why-text .h2 { color: var(--white); }
.why-text p {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-top: 4px;
}
.why-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: flex-start;
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
}
.why-item h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.why-item p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ── COMPANIES ─────────────────────────── */
.section-companies {
  background: var(--surface);
  padding: 100px 0;
}
.section-companies .h2--center { margin-bottom: 48px; }
.co-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.co-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s;
}
.co-card:hover { background: var(--sand); }
.co-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 8px;
  flex-shrink: 0;
}
.co-logo--msc      { background: #003087; }
.co-logo--celebrity{ background: #1a1a2e; }
.co-logo--costa    { background: #c41e3a; }
.co-logo--ncl      { background: #003087; }
.co-logo--explora  { background: #1a3a5c; }
.co-logo--astoria  { background: #006633; }
.co-card h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ocean);
}
.co-card p { font-size: 13px; color: var(--smoke); }
.co-tags {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .3px;
  margin-top: 4px;
}

/* ── OFFERS ────────────────────────────── */
.section-offers {
  background: var(--sand);
  padding: 100px 0;
}
.offers-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.offer {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer--accent { background: var(--ocean); }
.offer--accent .offer__label { color: var(--gold-lt); }
.offer--accent h3 { color: var(--white); }
.offer--accent p { color: rgba(255,255,255,.6); }
.offer--accent .offer__pricing s { color: rgba(255,255,255,.35); }
.offer--accent .offer__pricing strong { color: var(--white); }
.offer--accent .offer__pricing span { color: rgba(255,255,255,.4); }
.offer__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.offer h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ocean);
  line-height: 1.25;
}
.offer p { font-size: 14px; color: var(--smoke); line-height: 1.7; }
.offer__pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}
.offer__pricing s { font-size: 14px; color: var(--border); }
.offer__pricing strong { font-family: var(--serif); font-size: 26px; color: var(--ocean); }
.offer__pricing span { font-size: 13px; color: var(--smoke); }
.offer .btn-primary--sm { margin-top: auto; align-self: flex-start; }
.offers-note { font-size: 12px; color: var(--smoke); text-align: center; opacity: .7; }

/* ── FAQ ───────────────────────────────── */
.section-faq {
  background: var(--surface);
  padding: 110px 0;
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}
.faq-left .eyebrow { color: var(--gold); }
.faq-left .h2 { margin-bottom: 16px; }
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--ocean); }
.faq-q svg { flex-shrink: 0; color: var(--gold); transition: transform .25s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; color: var(--smoke); line-height: 1.8; }
.faq-a strong { color: var(--ocean); font-weight: 600; }

/* ── CTA SECTION ───────────────────────── */
.section-cta {
  position: relative;
  padding: 130px 0;
  text-align: center;
}
.section-cta__photo {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=1920&q=80')
    center / cover no-repeat;
}
.section-cta__vignette {
  position: absolute;
  inset: 0;
  background: rgba(8,18,35,.75);
}
.section-cta__body {
  position: relative;
  z-index: 1;
}
.section-cta__body h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-cta__body p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}

/* ── FOOTER ────────────────────────────── */
.footer {
  background: #080F1C;
  padding: 72px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__brand .logo--light { margin-bottom: 18px; }
.footer__brand p { font-size: 13px; line-height: 1.8; max-width: 280px; }
.footer__col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer__col a:hover { color: rgba(255,255,255,.9); }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.2);
}
.footer__bottom-inner a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer__bottom-inner a:hover { color: rgba(255,255,255,.7); }

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 1100px) {
  .dir-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dir--featured { grid-column: span 2; min-height: 380px; }
  .co-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .offers-grid { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-left .btn-primary { display: none; }
  .section-top { flex-direction: column; align-items: flex-start; }
  .section-note { text-align: left; }
}

@media (max-width: 768px) {
  .nav, .btn-header { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 66px 0 0;
    background: var(--ocean);
    padding: 32px 28px;
    z-index: 800;
    gap: 4px;
  }
  .nav.open .nav__link {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
  }
  .burger { display: flex; }
  .dir-grid { grid-template-columns: 1fr; }
  .dir--featured { grid-column: span 1; min-height: 300px; }
  .co-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; }
}

@media (max-width: 520px) {
  .hero__nums { flex-wrap: wrap; gap: 20px; }
}
