:root {
  --paper: #f7f5ef;
  --surface: #ffffff;
  --ink: #17242f;
  --muted: #657281;
  --line: #ded8cb;
  --brand: #224a58;
  --brand-dark: #142f3a;
  --gold: #c69b54;
  --green: #667b64;
  --shadow: 0 24px 60px rgba(23, 36, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  min-height: 92vh;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(16, 35, 43, 0.9), rgba(16, 35, 43, 0.54)),
    url("https://duyn491kcolsw.cloudfront.net/files/09/09h/09hff7.jpg?ph=00d8e97878") center/cover;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: #ffffff;
  object-fit: cover;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: none;
}

.menu a:hover,
.menu .nav-cta {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(92vh - 92px);
  margin: 0 auto;
  padding: 78px 0 92px;
}

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

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

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

h1,
h2 {
  font-family: Lora, Georgia, serif;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 9vw, 6.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  background: var(--gold);
  color: #17130d;
}

.primary-button:hover {
  background: #d8ad65;
}

.primary-button.light {
  background: #ffffff;
  color: var(--brand-dark);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
  backdrop-filter: blur(12px);
}

.hero-panel span,
.hero-panel small,
.credentials span,
.credentials small,
.contact-grid span,
.contact-grid small {
  display: block;
}

.hero-panel span,
.credentials span,
.contact-grid span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.hero-panel small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

main > section {
  padding: 88px max(20px, calc((100% - 1180px) / 2));
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto 38px;
  text-align: center;
}

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

.feature-card {
  min-height: 315px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  background: #edf0e9;
  color: var(--green);
  font-weight: 800;
}

.services-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  background: #e8e3d7;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list div {
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.65);
  padding: 18px 20px;
}

.service-list span {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

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

.news-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  background: var(--surface);
}

.news-image img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 50px;
  background: var(--paper);
}

.credentials {
  display: grid;
  gap: 14px;
}

.credentials div,
.contact-grid a,
.contact-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  text-decoration: none;
}

.credentials strong,
.contact-grid strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1.08rem;
}

.credentials small,
.contact-grid small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.cta-section {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(20, 47, 58, 0.92), rgba(20, 47, 58, 0.76)),
    url("https://duyn491kcolsw.cloudfront.net/files/09/09h/09hff7.jpg?ph=00d8e97878") center/cover;
  color: #ffffff;
}

.cta-section h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.contact-grid a:hover {
  border-color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px max(20px, calc((100% - 1180px) / 2));
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    inset: 82px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: var(--brand-dark);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    justify-content: center;
  }

  .hero,
  .services-band,
  .news-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    padding-top: 64px;
  }

  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

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

@media (max-width: 560px) {
  .brand span {
    max-width: 180px;
  }

  .site-header {
    min-height: auto;
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  main > section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

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