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

:root {
  --sand: #f7f2e9;
  --sand-dark: #e6dccd;
  --navy: #0f2a33;
  --teal: #1c5d63;
  --terracotta: #d16945;
  --sun: #f3b36b;
  --clay: #be5437;
  --white: #ffffff;
  --ink: #192022;
  --shadow: 0 18px 40px rgba(16, 32, 36, 0.12);
}

body {
  font-family: "Work Sans", sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.is-ready {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-background {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(243, 179, 107, 0.4), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(209, 105, 69, 0.25), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(28, 93, 99, 0.18), transparent 50%),
    linear-gradient(120deg, #f7f2e9, #efe1cf);
  z-index: -2;
}

.container {
  width: min(1150px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 242, 233, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 93, 99, 0.12);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo-mark {
  background: var(--teal);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
}

.logo-text {
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  flex-wrap: wrap;
  font-weight: 500;
}

.nav-links a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(28, 93, 99, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.button.primary:hover {
  transform: translateY(-2px);
  background: #174a4f;
}

.button.secondary {
  background: var(--terracotta);
  color: var(--white);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: var(--clay);
}

.button.ghost {
  background: transparent;
  border-color: rgba(28, 93, 99, 0.4);
  color: var(--teal);
}

.button.ghost:hover {
  background: rgba(28, 93, 99, 0.08);
}

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 50% auto -10%;
  height: 65%;
  background: linear-gradient(130deg, rgba(28, 93, 99, 0.2), transparent);
  border-radius: 40%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--navy);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--teal);
  margin-bottom: 0.7rem;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  font-weight: 500;
}

.highlight-number {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}

.hero-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 93, 99, 0.12);
}

.card-header h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.card-body p {
  margin-bottom: 1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 1.6rem;
}

.icon-list li {
  position: relative;
  padding-left: 1.4rem;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sun);
}

.section {
  padding: 4.5rem 0;
}

.section-light {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 242, 233, 0.8));
  border-top: 1px solid rgba(28, 93, 99, 0.08);
  border-bottom: 1px solid rgba(28, 93, 99, 0.08);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
}

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

.fleet-card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(28, 93, 99, 0.12);
  box-shadow: 0 12px 25px rgba(12, 23, 26, 0.08);
  display: grid;
  gap: 0.7rem;
}

.fleet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.tag {
  background: rgba(209, 105, 69, 0.15);
  color: var(--clay);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.fleet-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(25, 32, 34, 0.7);
}

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

.pricing-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(28, 93, 99, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.pricing-card h3 {
  font-family: "Cinzel", serif;
  color: var(--navy);
}

.note-card {
  margin-top: 2rem;
  background: rgba(28, 93, 99, 0.08);
  padding: 1.5rem 1.8rem;
  border-radius: 16px;
}

.steps-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.step-card,
.info-card,
.contact-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(28, 93, 99, 0.12);
  box-shadow: 0 10px 24px rgba(12, 23, 26, 0.08);
}

.step-number {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
  display: inline-block;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-details {
  margin-top: 1.4rem;
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(28, 93, 99, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(25, 32, 34, 0.2);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(247, 242, 233, 0.5);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-top: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
    margin-left: 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 4rem 0 3.5rem;
  }

  .nav {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-header {
    align-items: stretch;
  }
}
