:root {
  --ink: #10202b;
  --ink-soft: #243542;
  --muted: #667582;
  --line: #dde6ec;
  --paper: #f4f7f8;
  --panel: #fbfcfd;
  --white: #ffffff;
  --teal: #08737c;
  --teal-dark: #063f47;
  --navy: #0e2535;
  --gold: #b88a32;
  --gold-soft: #f5ead3;
  --shadow: 0 22px 55px rgba(14, 37, 53, 0.14);
  --shadow-soft: 0 14px 34px rgba(14, 37, 53, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 230, 236, 0.86);
  box-shadow: 0 10px 32px rgba(14, 37, 53, 0.07);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: min(280px, 46vw);
}

.brand img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 32px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 90vh;
  align-items: end;
  padding: 160px clamp(20px, 6vw, 88px) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 20, 29, 0.9), rgba(6, 40, 46, 0.58), rgba(5, 20, 29, 0.2)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1900&q=84") center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 28px rgba(8, 115, 124, 0.3);
}

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

.hero-card {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 56px;
  z-index: 3;
  width: min(330px, calc(100% - 40px));
  border-left: 4px solid var(--gold);
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 8px;
  color: var(--navy);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-strip article {
  padding: 30px clamp(20px, 4vw, 52px);
  background: var(--panel);
}

.intro-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

.intro-strip span,
.section-copy p,
.service-card p,
address span {
  color: var(--muted);
}

.section {
  padding: 96px clamp(20px, 6vw, 88px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  background: var(--white);
}

.section-media img {
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-copy {
  max-width: 680px;
}

.services-section {
  background: var(--paper);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 115, 124, 0.3);
  box-shadow: 0 22px 45px rgba(14, 37, 53, 0.14);
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 26px;
}

.service-card p {
  margin-bottom: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 52px clamp(20px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 63, 71, 0.96), rgba(14, 37, 53, 0.96)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.cta-band h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.cta-band .eyebrow {
  color: #f0c36c;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1)),
    var(--white);
}

.contact-panel {
  max-width: 720px;
}

address {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  font-style: normal;
}

address strong {
  color: var(--navy);
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
}

.contact-links {
  display: grid;
  gap: 12px;
  max-width: 430px;
}

.contact-links a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  background: var(--panel);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(8, 115, 124, 0.32);
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.map-frame {
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd7df;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(14, 37, 53, 0.03);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.success {
  color: #0b6d45;
  font-weight: 700;
}

.form-note.error {
  color: #b42318;
  font-weight: 700;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 109, 117, 0.16);
  border-color: var(--teal);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 38px;
  }

  .intro-strip,
  .about-section,
  .services-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .services-grid {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    width: min(220px, 58vw);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    display: none;
    width: min(270px, calc(100vw - 36px));
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .hero {
    min-height: 720px;
    padding: 128px 20px 44px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section {
    padding: 68px 20px;
  }

  .intro-strip article,
  .cta-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    padding: 20px;
  }
}
