:root {
  --color-navy: #00305b;
  --color-orange: #f18423;
  --color-gray: #54595f;
  --color-text: #161616;
  --color-white: #ffffff;
  --color-bg: #f7f8fa;
  --color-border: #d9dee5;

  --font-main: "Myriad Pro Condensed", "Arial Narrow", Arial, sans-serif;

  --container-width: 1140px;
  --container-narrow: 780px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 12px 30px rgba(0, 48, 91, 0.08);
  --shadow-card: 0 10px 24px rgba(0, 48, 91, 0.06);

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.55;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container-width));
  margin: 0 auto;
}

.narrow {
  width: min(100%, var(--container-narrow));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 48, 91, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-logo img {
  height: 60px;
  width: auto;
}

.hero {
  background: linear-gradient(135deg, rgba(0, 48, 91, 0.98), rgba(0, 48, 91, 0.88));
  color: var(--color-white);
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow,
.section-tag {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.section-tag-light {
  color: #ffd5b1;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 42rem;
  margin: 0 0 1.5rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  max-width: 36rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--color-orange);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: rgba(255, 255, 255, 0.94);
}

.hero-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: var(--color-navy);
}

.hero-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
}

.hero-card li + li {
  margin-top: 0.75rem;
}

.hero-card-meta {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 48, 91, 0.08);
  color: var(--color-gray);
  font-size: 1rem;
}

.section {
  padding: var(--space-2xl) 0;
}

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

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--color-navy);
}

.section p {
  margin: 0 0 1rem;
  font-size: 1.16rem;
}

.section-intro {
  max-width: 52rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.info-card {
  padding: 1.4rem;
  background: var(--color-white);
  border: 1px solid rgba(0, 48, 91, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  color: var(--color-navy);
}

.info-card p,
.info-card li {
  font-size: 1.05rem;
}

.info-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.check-list {
  margin: 1.5rem 0 0;
  padding-left: 1.15rem;
}

.check-list li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid rgba(0, 48, 91, 0.08);
  box-shadow: var(--shadow-card);
}

.timeline-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 1.35rem;
  font-weight: 700;
}

.timeline-content h3 {
  margin: 0 0 0.45rem;
  font-size: 1.4rem;
  color: var(--color-navy);
}

.timeline-content p {
  margin: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.feature-box,
.price-box,
.reservation-form {
  background: var(--color-white);
  border: 1px solid rgba(0, 48, 91, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.feature-box {
  padding: 1.5rem;
}

.feature-box h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--color-navy);
  font-size: 1.4rem;
}

.feature-box ul {
  margin: 0;
  padding-left: 1.15rem;
}

.feature-box li + li {
  margin-top: 0.65rem;
}

.price-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 1.5rem 0;
  background: rgba(0, 48, 91, 0.08);
}

.price-main {
  padding: 1.5rem;
  background: var(--color-white);
}

.price-label {
  margin-bottom: 0.6rem;
  color: var(--color-gray);
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-value {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
  color: var(--color-navy);
}

.price-value.accent {
  color: var(--color-orange);
}

.small-note {
  color: var(--color-gray);
  font-size: 1rem;
}

.cta-section {
  background: var(--color-navy);
  color: var(--color-white);
}

.cta-box.left {
  text-align: left;
}

.cta-box h2 {
  color: var(--color-white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.92);
}

.reservation-form {
  margin-top: 1.5rem;
  padding: 1.5rem;
  color: var(--color-text);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0, 48, 91, 0.18);
  border-radius: 12px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(241, 132, 35, 0.12);
}

.site-footer {
  background: #082742;
  color: rgba(255, 255, 255, 0.86);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: rgba(0, 48, 91, 0.16);
}

.btn-large {
  padding: 1rem 1.5rem;
  min-height: 54px;
  font-size: 1.06rem;
  margin-top: 0.25rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .card-grid.three,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .price-box {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo img {
    height: 50px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--container-width));
  }

  .hero-text,
  .section p,
  .info-card p,
  .info-card li,
  .check-list li {
    font-size: 1.04rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .brand-logo img {
    height: 42px;
  }
}