:root {
  --navy: #0b1f3a;
  --navy-mid: #132a4a;
  --navy-deep: #071526;
  --amber: #e8a317;
  --amber-hover: #f0b63a;
  --copper: #b87333;
  --cream: #f4f1ea;
  --cream-dark: #e8e2d4;
  --slate: #1c2833;
  --muted: #5c6b78;
  --white: #ffffff;
  --header-h: 4.75rem;
  --max: 72rem;
  --radius: 0.5rem;
  --shadow: 0 18px 40px rgba(7, 21, 38, 0.18);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

address { font-style: normal; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.5rem 1rem;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--copper);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

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

.section-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 4.5rem 0;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1.125rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--amber);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
  flex: 1 1 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  background: var(--amber);
  color: var(--navy);
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.brand-name sup {
  font-size: 0.55em;
}

.brand-est {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--amber);
}

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

.site-nav ul {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--amber);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary,
.btn-header {
  background: var(--amber);
  color: var(--navy);
}

.btn-primary:hover,
.btn-header:hover,
.btn-primary:focus-visible,
.btn-header:focus-visible {
  background: var(--amber-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-header {
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(52rem, calc(100svh - var(--header-h)));
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 21, 38, 0.92) 0%, rgba(7, 21, 38, 0.72) 42%, rgba(7, 21, 38, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 21, 38, 0.55) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 5rem 0 4.5rem;
}

.hero-content > *:not(h1) {
  max-width: 40rem;
}

.hero h1 {
  white-space: nowrap;
}

.hero h1 sup {
  font-size: 0.4em;
  top: -0.7em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.hero-lead {
  font-size: 1.2rem;
  max-width: 32rem;
  color: var(--cream);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Services */
.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--cream);
  border-top: 3px solid var(--amber);
  padding: 1.6rem 1.4rem 1.5rem;
}

.service-icon {
  color: var(--navy);
  display: block;
  margin-bottom: 0.85rem;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* About */
.about {
  background: var(--navy);
  color: var(--cream);
}

.about .eyebrow {
  color: var(--amber);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about-copy p {
  color: #d5dde5;
}

.about-copy strong {
  color: var(--amber);
  font-weight: 600;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 163, 23, 0.35);
}

.about-facts dt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--amber);
}

.about-facts dd {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.about-photo img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  border: 1px solid rgba(232, 163, 23, 0.35);
}

.about-photo figcaption {
  font-size: 0.85rem;
  color: #9aabba;
  margin-top: 0.65rem;
}

/* Gallery */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  background: var(--navy);
}

.gallery-grid img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.gallery-grid figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--cream);
  padding: 0.7rem 0.85rem 0.85rem;
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact address p {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1.15rem;
}

.contact .label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.contact address a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.contact address a:hover,
.contact address a:focus-visible {
  color: var(--copper);
  text-decoration: underline;
}

.contact-form {
  background: var(--cream);
  padding: 1.75rem 1.6rem 1.85rem;
  border-top: 3px solid var(--amber);
}

.contact-form h3 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #cfc8b8;
  background: var(--white);
  font: inherit;
  color: var(--slate);
  border-radius: 2px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
  border-color: var(--amber);
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #9aabba;
  text-align: center;
  padding: 2.5rem 1.25rem 2.75rem;
  font-size: 0.95rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.site-footer p {
  margin: 0 0 0.35rem;
}

.copyright {
  margin-top: 1.1rem !important;
  color: #6d7e8c;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 960px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo img {
    height: 20rem;
  }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-mid);
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 3px solid var(--amber);
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav li a {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn-header {
    margin-top: 0.85rem;
    width: 100%;
  }

  .hero-content {
    padding: 3.5rem 0 3rem;
  }

  .hero h1 {
    white-space: normal;
  }

  .brand-name {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .about-photo img {
    height: 14rem;
  }

  .section-inner {
    width: min(100% - 1.75rem, var(--max));
    padding: 3.25rem 0;
  }

  .hero-tagline {
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }

  .hero .eyebrow {
    font-size: 0.85rem;
  }
}
