:root {
  --ink: #12141a;
  --ink-soft: #4a5160;
  --teal: #1f6f68;
  --teal-dark: #165751;
  --ember: #c2410c;
  --ember-dark: #9a3309;
  --paper: #eef1f4;
  --mist: #dde3ea;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(18, 20, 26, 0.12);
  --radius: 6px;
  --header: 108px;
  --font-serif: "Newsreader", Georgia, serif;
  --font-sans: "Figtree", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

figure {
  margin: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 8px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--ember);
  color: var(--white);
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
}

.header-meta {
  border-bottom: 1px solid rgba(238, 241, 244, 0.12);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.header-meta-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  color: rgba(238, 241, 244, 0.72);
}

.header-meta a:hover {
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--mist);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-weight: 500;
  color: rgba(238, 241, 244, 0.78);
  position: relative;
  font-size: 0.92rem;
}

.nav-list a.is-active,
.nav-list a:hover {
  color: var(--white);
}

.nav-list a.is-active::after,
.nav-list a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--ember);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

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

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary,
.btn-nav {
  background: var(--ember);
  color: var(--white);
}

.btn-primary:hover,
.btn-nav:hover {
  background: var(--ember-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  padding: 56px 0 12px;
  background: var(--paper);
}

.hero-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 7vw, 5.2rem);
  font-weight: 500;
  max-width: 9ch;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--teal);
}

.lead {
  font-size: 1.12rem;
  max-width: 46ch;
  color: var(--ink-soft);
}

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

.hero-photo img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats {
  background: var(--teal);
  color: var(--white);
  padding: 28px 0;
  margin-top: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}

.stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
}

.stats span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.86;
}

.about,
.services,
.contact {
  padding: 96px 0;
}

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

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 520px;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.about-quote {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--ember);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
}

.checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--teal);
}

.gallery {
  padding: 0 0 24px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.gallery-wide {
  grid-row: 1 / span 2;
}

.gallery-masonry img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.services {
  background: var(--mist);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.service-bands {
  display: grid;
  gap: 28px;
}

.service-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-band-flip {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-band-flip img {
  order: 2;
}

.service-band img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.service-body {
  padding: 36px 32px;
}

.service-index {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ember);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.service-band h3 {
  font-size: 1.85rem;
}

.contact {
  background: var(--paper);
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.contact-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.contact-list span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--ember);
}

address,
.contact-list p {
  font-style: normal;
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  border-top: 4px solid var(--teal);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 20, 26, 0.14);
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
  background: var(--paper);
}

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

.contact-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
}

.contact-form .consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .btn {
  width: 100%;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 500;
}

.form-status.is-success {
  color: var(--teal-dark);
}

.form-status.is-error {
  color: var(--ember);
}

.map-wrap {
  height: 360px;
}

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

.legal {
  padding: 72px 0;
  background: var(--paper);
}

.legal-alt {
  background: var(--mist);
}

.legal-inner {
  max-width: 820px;
}

.legal h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal h3 {
  font-size: 1.25rem;
  margin-top: 1.4em;
}

.legal-list {
  display: grid;
  gap: 4px 24px;
  grid-template-columns: 180px 1fr;
  margin: 28px 0 0;
}

.legal-list dt {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 12px;
}

.legal-list dd {
  margin: 0;
  padding-top: 10px;
  border-bottom: 1px solid rgba(18, 20, 26, 0.08);
  padding-bottom: 12px;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.site-footer .brand-text {
  color: var(--white);
}

.site-footer h2 {
  font-size: 1.1rem;
  color: var(--white);
}

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

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: #f2c2b0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
  margin: 0;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
  background: var(--paper);
}

.error-inner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.error-inner .lead {
  margin: 0 auto 28px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  :root {
    --header: 96px;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .hero-copy h1,
  .about-copy h2,
  .section-intro h2,
  .contact h2,
  .legal h2 {
    font-size: 2.15rem;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 18px;
  }

  .hero-split,
  .stats-grid,
  .about-grid,
  .gallery-masonry,
  .service-band,
  .service-band-flip,
  .contact-grid,
  .footer-grid,
  .legal-list {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-row: auto;
  }

  .service-band-flip img {
    order: 0;
  }

  .about-photo img,
  .gallery-masonry img,
  .service-band img,
  .hero-photo img {
    min-height: 0;
    height: 260px;
  }

  .about,
  .services,
  .contact,
  .legal {
    padding: 64px 0;
  }

  .header-meta-inner {
    display: grid;
  }
}
