:root {
  --ink: #18211f;
  --muted: #62706b;
  --paper: #f8f5ef;
  --panel: #ffffff;
  --line: #ded8cd;
  --forest: #17624f;
  --forest-dark: #0e3b32;
  --clay: #b35b37;
  --gold: #d6a740;
  --sky: #d8e8ee;
  --shadow: 0 22px 60px rgba(24, 33, 31, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(222, 216, 205, 0.8);
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.header-action,
.button.primary {
  color: #fff;
  background: var(--forest);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(214, 167, 64, 0.2), rgba(14, 59, 50, 0) 44%),
    linear-gradient(120deg, #0e3b32 0%, #17624f 58%, #0e3b32 100%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 112px);
  padding: 88px 0 130px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 11vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.36rem);
}

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

.hero-actions .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -72px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-info div {
  padding: clamp(20px, 4vw, 32px);
  background: var(--panel);
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.quick-info p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: clamp(32px, 8vw, 96px);
}

.section-copy p,
.contact-copy p,
.language-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.portrait-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-card figcaption {
  padding: 16px 18px;
  font-weight: 800;
}

.services-section {
  width: 100%;
  padding-inline: clamp(18px, 4vw, 54px);
  background: var(--sky);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(24, 33, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.language-section {
  padding-bottom: 72px;
}

.language-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--panel);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}

.language-panel {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(24, 33, 31, 0.08);
}

.language-panel p:last-child {
  margin-bottom: 0;
}

.gallery-section {
  width: 100%;
  padding-inline: clamp(18px, 4vw, 54px);
  background: var(--forest-dark);
  color: #fff;
}

.gallery-section .section-heading .eyebrow {
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-panel a,
.contact-panel address {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  font-style: normal;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  border-color: var(--forest);
  box-shadow: 0 10px 30px rgba(23, 98, 79, 0.14);
}

.contact-panel span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 680px;
  }

  .hero-content {
    width: min(560px, calc(100% - 36px));
    padding: 84px 0 116px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .quick-info,
  .service-grid,
  .gallery-grid,
  .contact-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .service-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    min-height: 64px;
    padding-inline: 14px;
  }

  .brand span {
    max-width: 120px;
  }

  .header-action {
    padding-inline: 12px;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-content {
    justify-content: flex-end;
    width: calc(100% - 28px);
    margin-left: 14px;
    padding: 250px 0 56px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 3.25rem;
  }

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

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}
