@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/Inter-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/SpaceGrotesk-Variable.woff2') format('woff2');
}

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

:root {
  --teal-950: #06352A;
  --teal-900: #085041;
  --teal-800: #0F6E56;
  --teal-600: #17967A;
  --teal-400: #5DCAA5;
  --teal-200: #9FE1CB;
  --teal-100: #D3F0E6;
  --teal-50:  #E1F5EE;

  --warm-bg: #FAFAF8;
  --ink: #16221D;
  --ink-muted: #5E6E68;

  --shadow-sm: 0 1px 2px rgba(8,80,65,.07), 0 1px 1px rgba(8,80,65,.04);
  --shadow-md: 0 6px 16px rgba(8,80,65,.09), 0 2px 6px rgba(8,80,65,.05);
  --shadow-lg: 0 16px 40px rgba(8,80,65,.14), 0 6px 14px rgba(8,80,65,.06);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.22,.9,.32,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--warm-bg);
  line-height: 1.5;
}

h1, h2, h3 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.01em; }

a { cursor: pointer; }
button { cursor: pointer; font-family: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; }
.narrow { max-width: 720px; }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--teal-100);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; color: var(--teal-900); text-decoration: none; }

.brand { display: flex; align-items: center; text-decoration: none; }
.brand-name { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; letter-spacing: 0.03em; color: var(--teal-900); }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: 13.5px; color: var(--ink-muted); }
.nav-links a { text-decoration: none; color: inherit; transition: color 200ms var(--ease); }
.nav-links a:hover { color: var(--teal-800); }
.nav-cta {
  background: var(--teal-900); color: #fff; font-size: 13px; font-weight: 500;
  padding: 0.55rem 1.25rem; border-radius: var(--radius-sm); text-decoration: none;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.nav-cta:hover { background: var(--teal-800); transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 8rem 3rem 7rem; background: var(--teal-950); overflow: hidden; }
.hero--photo {
  background: linear-gradient(180deg, rgba(6,53,42,.72), rgba(6,53,42,.85)), url('../assets/images/hero-fjord-bg.jpg') center/cover no-repeat;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0; transition: opacity 1200ms ease; }
.hero-video-active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,53,42,.6), rgba(6,53,42,.8)); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-block; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px; margin-bottom: 1.5rem; backdrop-filter: blur(4px);
}
.hero h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.15; margin-bottom: 1.25rem; max-width: 620px; color: #fff; }
.hero p { font-size: 17px; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.btn-ghost {
  display: inline-block; background: transparent; color: #fff;
  font-size: 14px; font-weight: 500; padding: 0.85rem 1.9rem;
  border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius-sm); text-decoration: none;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn-ghost:active { transform: scale(.98); }

.btn-primary {
  display: inline-block; background: var(--teal-900); color: #fff;
  font-size: 14px; font-weight: 500; padding: 0.85rem 1.9rem; border: none;
  border-radius: var(--radius-sm); text-decoration: none; box-shadow: var(--shadow-sm);
  transition: background 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.btn-primary:hover { background: var(--teal-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: scale(.98); }

.btn-outline {
  display: inline-block; background: #fff; color: var(--teal-900);
  font-size: 14px; font-weight: 500; padding: 0.85rem 1.9rem;
  border: 1px solid var(--teal-200); border-radius: var(--radius-sm); text-decoration: none;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}
.btn-outline:hover { background: var(--teal-50); border-color: var(--teal-400); transform: translateY(-2px); }
.btn-outline:active { transform: scale(.98); }

.divider { height: 1px; background: var(--teal-100); margin: 0 3rem; }

/* ---------- Sections ---------- */
.section { padding: 5rem 3rem; }
.section-alt { background: var(--teal-50); }
.section-label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-800); margin-bottom: 0.75rem;
}
.section-heading { font-size: clamp(22px, 2.6vw, 30px); color: var(--teal-950); margin-bottom: 2.5rem; max-width: 560px; }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.s-card {
  background: #fff; border: 1px solid var(--teal-100); border-radius: var(--radius-md);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease);
}
.s-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal-200); }
.s-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--teal-50); border-radius: var(--radius-sm); color: var(--teal-800);
  margin-bottom: 1rem;
}
.s-icon svg { width: 20px; height: 20px; }
.s-card h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 0.45rem; color: var(--ink); }
.s-card p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; }

/* ---------- Process steps ---------- */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 1.5rem; padding: 1.6rem 0; border-top: 1px solid var(--teal-200); }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 12px; color: var(--teal-800); font-weight: 700; min-width: 26px; padding-top: 2px; }
.step h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 0.35rem; }
.step p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; max-width: 520px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--teal-100); border-radius: var(--radius-md);
  padding: 1.9rem; box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease);
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.price-card.recommended { border-color: var(--teal-600); box-shadow: var(--shadow-lg); }
.price-ribbon {
  position: absolute; top: -12px; left: 1.75rem;
  background: var(--teal-900); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px;
}
.price-name { font-size: 13px; font-weight: 600; color: var(--teal-800); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.9rem; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: var(--teal-950); line-height: 1.1; }
.price-amount small { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: var(--ink-muted); }
.price-sub { font-size: 13px; color: var(--ink-muted); margin: 0.4rem 0 1.3rem; min-height: 34px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; flex-grow: 1; }
.price-list li { font-size: 13.5px; color: var(--ink); display: flex; gap: 0.55rem; align-items: flex-start; line-height: 1.5; }
.price-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--teal-600); }
.price-for { font-size: 12.5px; color: var(--ink-muted); line-height: 1.55; border-top: 1px solid var(--teal-100); padding-top: 0.9rem; margin-top: auto; }

.coverage-box {
  background: #fff; border: 1px solid var(--teal-100); border-radius: var(--radius-md);
  padding: 2rem; box-shadow: var(--shadow-sm); max-width: 760px;
}
.coverage-box p { font-size: 14.5px; color: var(--ink); line-height: 1.75; }

/* ---------- Contact / CTA box ---------- */
.contact-box {
  background: #fff; border: 1px solid var(--teal-200); border-radius: var(--radius-lg);
  padding: 2.5rem; max-width: 540px; box-shadow: var(--shadow-md);
}
.contact-box h2 { font-size: 22px; margin-bottom: 0.4rem; color: var(--teal-950); }
.contact-box .sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.c-row { display: flex; align-items: center; gap: 12px; padding: 0.85rem 0; border-top: 1px solid var(--teal-100); font-size: 14px; }
.c-label { color: var(--ink-muted); min-width: 60px; font-size: 13px; }
.c-row a { color: var(--teal-800); text-decoration: none; }
.c-row a:hover { text-decoration: underline; }

/* ---------- Misc content blocks ---------- */
.info-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; max-width: 640px; }
.info-list li { font-size: 14.5px; color: var(--ink); line-height: 1.65; display: flex; gap: 0.65rem; align-items: flex-start; }
.info-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--teal-600); }

.terms-box {
  background: var(--teal-50); border: 1px solid var(--teal-200); border-radius: var(--radius-md);
  padding: 1.75rem; max-width: 760px; font-size: 13.5px; color: var(--teal-900); line-height: 1.7;
}

/* ---------- Footer ---------- */
footer { padding: 2rem 3rem; border-top: 1px solid var(--teal-100); display: flex; justify-content: space-between; align-items: center; background: #fff; flex-wrap: wrap; gap: 1rem; }
.footer-text { font-size: 12px; color: var(--ink-muted); }
.footer-info { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }

/* ---------- Link row (homepage shortcuts to sub-pages) ---------- */
.link-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.link-card {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border: 1px solid var(--teal-100); border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem; text-decoration: none; box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease);
}
.link-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal-200); }
.link-card h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.link-card p { font-size: 13px; color: var(--ink-muted); }
.link-card svg { width: 18px; height: 18px; color: var(--teal-800); flex-shrink: 0; }

/* ---------- CTA banner (bottom of sub-pages) ---------- */
.cta-banner {
  text-align: center; background: var(--teal-50); border-radius: var(--radius-lg);
  padding: 3rem 2rem; max-width: 720px; margin: 0 auto;
}
.cta-banner h2 { font-size: clamp(20px, 2.4vw, 26px); color: var(--teal-950); margin-bottom: 0.6rem; }
.cta-banner p { font-size: 14.5px; color: var(--ink-muted); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  nav, .hero, .section, footer { padding-left: 2rem; padding-right: 2rem; }
  .divider { margin: 0 2rem; }
}

@media (max-width: 600px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1rem; font-size: 12.5px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 0.5rem 0.9rem; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15.5px; }
  .section { padding: 2.75rem 1.25rem; }
  .section-heading { font-size: 21px; }
  .divider { margin: 0 1.25rem; }
  footer { padding: 1.5rem 1.25rem; flex-direction: column; gap: 0.5rem; }
  .price-amount { font-size: 26px; }
}

@media (max-width: 375px) {
  .hero h1 { font-size: 25px; }
  .contact-box, .coverage-box { padding: 1.5rem; }
}
