:root {
  --sun: #f7b21c;
  --sun-dark: #de9400;
  --sky: #21a6e0;
  --ocean: #082b49;
  --reef: #273634;
  --sand: #fff6de;
  --white: #ffffff;
  --text: #102133;
  --muted: #4d6170;
  --line: rgba(8, 43, 73, 0.12);
  --shadow: 0 22px 60px rgba(8, 43, 73, 0.12);
  --radius: 26px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(247, 178, 28, 0.22), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #fff8ea 55%, #fff4dc 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 43, 73, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1rem;
}

.brand img {
  width: clamp(120px, 18vw, 180px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ocean);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--sun-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--ocean);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero,
.page-hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.promo-grid,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--sun-dark);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.84);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  color: var(--ocean);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--ocean);
}

h3 {
  font-size: 1.2rem;
  color: var(--ocean);
}

.lead,
.feature-card p,
.content-card p,
.service-card p,
.contact-panel p,
.hero-card p,
.promo-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 60ch;
  margin: 1.2rem 0 0;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: -0.4rem;
  width: 110px;
  height: 110px;
  background: rgba(33, 166, 224, 0.16);
  border-radius: 50%;
  filter: blur(6px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ocean);
  background: linear-gradient(135deg, var(--sun), #ffd25c);
  box-shadow: 0 16px 36px rgba(247, 178, 28, 0.3);
}

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

.hero-card,
.feature-card,
.content-card,
.service-card,
.contact-panel,
.contact-form,
.promo-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(8, 43, 73, 0.94), rgba(39, 54, 52, 0.96));
}

.hero-card h2 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.hero-card p,
.hero-card span {
  color: rgba(255, 255, 255, 0.8);
}

.card-kicker {
  margin-bottom: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffd25c;
}

.hero-stats {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--sun);
}

.section {
  padding: 2rem 0 4rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.feature-grid,
.content-grid,
.service-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid,
.content-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.content-card,
.service-card,
.contact-panel,
.contact-form,
.promo-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.section-accent {
  padding: 3.2rem 0;
  background: linear-gradient(120deg, var(--ocean), var(--sky));
}

.section-accent h2 {
  color: var(--white);
}

.promo-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.promo-panel {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
}

.promo-panel p {
  color: rgba(255, 255, 255, 0.88);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--white);
}

.page-main {
  min-height: calc(100vh - 160px);
}

.narrow {
  max-width: 760px;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ocean);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(8, 43, 73, 0.12);
  border-radius: 16px;
  background: var(--white);
  color: var(--text);
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--sun-dark);
  font-weight: 700;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  background: var(--reef);
}

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

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .promo-grid,
  .feature-grid,
  .content-grid,
  .service-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 84px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(8, 43, 73, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding-top: 3rem;
  }
}
