:root {
  --ink: #15201d;
  --muted: #5d6864;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d9ded8;
  --forest: #0f5b50;
  --forest-dark: #083b36;
  --copper: #a85638;
  --sage: #dce7df;
  --blue: #23516a;
  --shadow: 0 24px 70px rgba(15, 91, 80, 0.16);
}

* {
  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.5;
  letter-spacing: 0;
}

body.lang-en [data-lang-toggle] {
  min-width: 44px;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 142px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  color: var(--forest-dark);
  font-size: 0.95rem;
  font-weight: 720;
}

.nav a {
  padding: 10px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

button,
.icon-button,
.primary-action,
.secondary-action,
.map-link {
  min-height: 44px;
  border-radius: 8px;
  font: inherit;
  font-weight: 760;
}

.lang-toggle,
.icon-button {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  border: 1px solid var(--line);
  color: var(--forest-dark);
  background: var(--white);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(22px, 5vw, 64px);
  padding: 144px clamp(20px, 5vw, 76px) 62px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 28, 26, 0.78) 0%, rgba(8, 28, 26, 0.46) 50%, rgba(8, 28, 26, 0.2) 100%),
    linear-gradient(0deg, rgba(15, 91, 80, 0.28), rgba(15, 91, 80, 0.28));
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c08c;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  font-weight: 700;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

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

.primary-action,
.secondary-action,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
}

.primary-action {
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
}

.secondary-action {
  color: var(--forest-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.secondary-action.dark {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.93);
  box-shadow: var(--shadow);
}

dl {
  margin: 0;
}

.hero-panel dl,
.contact-card dl {
  display: grid;
  gap: 18px;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 760;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 34px;
  padding: 48px clamp(20px, 5vw, 76px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.intro-grid article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.intro-grid strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1;
}

.intro-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 78px clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.services-section {
  background: var(--paper);
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.service-filters button {
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--forest-dark);
  background: var(--white);
  cursor: pointer;
}

.service-filters button.active {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

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

.service-card {
  min-height: 294px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(21, 32, 29, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 91, 80, 0.45);
}

.service-card.is-hidden {
  display: none;
}

.service-card img {
  width: 72px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--forest-dark);
  color: var(--white);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy {
  padding: clamp(42px, 6vw, 86px);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list span {
  color: #f1c08c;
  font-weight: 850;
}

.team-section {
  background: var(--white);
}

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

.team-card {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.team-card img {
  width: 178px;
  aspect-ratio: 157 / 190;
  height: auto;
  object-fit: cover;
}

.team-card p {
  color: var(--muted);
}

.reviews-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 54px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: var(--blue);
}

.reviews-band h2 {
  max-width: 880px;
}

.reviews-band p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 34px;
  padding: 78px clamp(20px, 5vw, 76px) 96px;
  background: var(--sage);
}

.contact-copy p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--forest);
}

.map-link {
  width: 100%;
  margin-top: 24px;
  color: var(--white);
  background: var(--forest-dark);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 76px) 92px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
}

.site-footer a {
  margin-left: auto;
  color: var(--white);
  font-weight: 760;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background: rgba(8, 59, 54, 0.94);
  box-shadow: 0 16px 40px rgba(8, 59, 54, 0.28);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: var(--white);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .intro-band,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-media img {
    min-height: 360px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 14px;
  }

  .brand img {
    width: 108px;
  }

  .hero {
    min-height: 84vh;
    padding: 112px 18px 116px;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.35rem, 18vw, 5rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(1.86rem, 10vw, 2.65rem);
  }

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

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

  .intro-band,
  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-grid,
  .services-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 234px;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card img {
    width: min(100%, 220px);
  }

  .reviews-band {
    grid-template-columns: 1fr;
    padding: 44px 18px;
  }

  .site-footer {
    display: grid;
    padding: 26px 18px 110px;
  }

  .site-footer a {
    margin-left: 0;
  }

  .mobile-cta {
    display: grid;
  }
}
