:root {
  --ink: #101820;
  --muted: #5d6672;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: #d8dedc;
  --sage: #8ba59c;
  --brick: #a84d3f;
  --blue: #405d78;
  --gold: #b8893f;
  --shadow: 0 18px 40px rgba(16, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  color: var(--white);
  background: rgba(16, 24, 32, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.site-nav a {
  padding: 6px 0;
}

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

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.language-switcher button,
.language-switcher a {
  display: inline-flex;
  min-width: 34px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"],
.language-switcher a[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 88svh;
  color: var(--white);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.78), rgba(7, 11, 15, 0.28) 52%, rgba(7, 11, 15, 0.12)),
    linear-gradient(0deg, rgba(7, 11, 15, 0.45), rgba(7, 11, 15, 0.04) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 88svh;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 68px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brick);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
}

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

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.section-band {
  padding: 86px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.intro-grid,
.service-grid,
.two-column,
.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.two-column p,
.contact-panel p {
  margin-top: 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  max-width: 720px;
  gap: 12px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.work {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #dfe5e3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-item.tall {
  grid-column: span 3;
  aspect-ratio: 2 / 3;
}

.gallery-item.wide {
  grid-column: span 6;
  aspect-ratio: 3 / 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(8, 12, 16, 0.78), rgba(8, 12, 16, 0));
}

.gallery-item span {
  font-weight: 800;
}

.gallery-item small {
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.locations {
  background: var(--white);
}

.location-list,
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-list article,
.service-list article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.location-list article:nth-child(2) {
  border-top-color: var(--brick);
}

.location-list article:nth-child(3) {
  border-top-color: var(--blue);
}

.location-list h3,
.service-list h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.location-list p,
.service-list p {
  margin: 0;
  color: var(--muted);
}

.service {
  background: #eef2f1;
}

.service-list article {
  background: rgba(255, 255, 255, 0.72);
}

.service-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--brick);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border-left: 3px solid var(--sage);
  background: var(--white);
  border-radius: 8px;
  counter-increment: steps;
}

.process-list li::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 10px;
  color: var(--muted);
}

.seo-copy {
  background: var(--white);
}

.two-column p + p {
  margin-top: 18px;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact .section-kicker {
  color: #d7b46b;
}

.contact h2,
.contact p {
  color: inherit;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  align-items: center;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 32px;
  color: rgba(255, 255, 255, 0.68);
  background: #0b1117;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 18px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .intro-grid,
  .service-grid,
  .two-column,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery-item.tall {
    grid-column: span 6;
  }

  .gallery-item.wide {
    grid-column: span 12;
  }

  .location-list,
  .service-list,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .language-switcher button,
  .language-switcher a {
    min-width: 30px;
  }

  .hero,
  .hero-content {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 32px, 1120px);
    padding-top: 142px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section-band {
    padding: 58px 0;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  h2 {
    font-size: 2rem;
  }

  .gallery-grid,
  .location-list,
  .service-list,
  .process-list {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    min-height: auto;
  }

  .gallery-item figcaption {
    padding: 18px;
    align-items: start;
    flex-direction: column;
  }

  .gallery-item small {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}
