:root {
  --navy: #07233b;
  --navy-2: #0d314f;
  --slate: #5e5d59;
  --silver: #d8d6d0;
  --cream: #f8f7f3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 35, 59, 0.16);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(248, 247, 243, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7, 35, 59, 0.10);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand img { width: 168px; }

.brand span {
  display: block;
  padding-left: 16px;
  border-left: 1px solid rgba(7, 35, 59, 0.22);
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
  max-width: 230px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a { text-decoration: none; }

.nav-button {
  color: var(--white);
  background: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: center;
  min-height: 680px;
  padding: 80px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(7, 35, 59, 0.92), rgba(13, 49, 79, 0.72)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.hero-content { max-width: 790px; }

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--slate);
}

.hero .eyebrow { color: var(--silver); }

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  margin: 0 0 18px;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { margin: 0 0 10px; font-size: 1.15rem; }

.hero-copy {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.86);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

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

.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}

.dark, .ghost { background: var(--navy); color: var(--white); }

.outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(7,35,59,0.30);
}

.hero-card,
.about-card,
.about-photo-card,
.form-card,
.service-grid article {
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
  text-align: center;
}

.hero-card p { margin-top: 0; font-weight: 800; }
.hero-card img { border-radius: 14px; margin: 0 auto 14px; }
.text-link { font-weight: 800; color: var(--navy-2); }

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(7, 35, 59, 0.12);
  padding: 1px;
}

.intro-strip div {
  background: var(--white);
  padding: 30px clamp(20px, 4vw, 46px);
}

.intro-strip strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.intro-strip span { color: var(--slate); }

.section { padding: 92px clamp(20px, 5vw, 72px); }

.two-column {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.two-column p,
.about-card p,
.contact-copy p { color: #51545a; }

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

.service-grid article { padding: 28px; }
.service-grid p { margin-bottom: 0; }

.image-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 72px) 20px;
}

.image-band img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-section {
  background: linear-gradient(135deg, rgba(7,35,59,0.07), rgba(216,214,208,0.35));
}

.about-with-photo {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: stretch;
}

.about-photo-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-photo-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  border: 4px solid var(--navy);
}

.about-photo-card h3 {
  margin: 20px 0 4px;
  color: var(--navy);
}

.about-photo-card p {
  margin: 0;
  color: var(--slate);
  font-weight: 700;
}

.about-card { padding: clamp(28px, 5vw, 58px); }
.about-card .button { margin-top: 12px; }

.contact-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  align-items: start;
}

.form-card { padding: 18px; }

.form-card iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 16px;
  background: var(--white);
}

.form-note {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.site-footer img {
  width: 145px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

@media (max-width: 1000px) {
  .brand span { display: none; }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero,
  .two-column,
  .about-with-photo,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .intro-strip, .image-band { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .about-photo-card img { max-width: 300px; }
}

@media (max-width: 560px) {
  .brand img { width: 145px; }
  .nav-links { font-size: 0.88rem; }
  .button, .stacked-mobile .button { width: 100%; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .site-footer { flex-direction: column; text-align: center; }
}
