:root {
  --bg: #ebe3d6;
  --surface: rgba(255, 252, 247, 0.85);
  --surface-strong: #fffaf2;
  --ink: #181512;
  --muted: #66584d;
  --line: rgba(24, 21, 18, 0.1);
  --accent: #956d42;
  --accent-deep: #2a231e;
  --shadow: 0 26px 70px rgba(25, 19, 13, 0.11);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(149, 109, 66, 0.18), transparent 30%),
    linear-gradient(180deg, #efe7db 0%, #e6ddcf 100%);
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 21, 18, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 22px 0 64px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(24, 21, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.header-actions,
.site-nav {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 18px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav {
  gap: 20px;
}

.site-nav a,
.eyebrow,
.mini-label,
.lang-trigger span,
.lang-trigger strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav a {
  font-size: 0.8rem;
  color: var(--muted);
}

.lang-menu {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  cursor: pointer;
}

.lang-trigger strong {
  color: var(--ink);
}

.lang-trigger::after {
  width: 8px;
  height: 8px;
  margin-top: -3px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.lang-menu.is-open .lang-trigger::after {
  transform: rotate(-135deg) translateY(-2px);
}

.lang-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow);
}

.lang-options[hidden] {
  display: none;
}

.lang-option {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  cursor: pointer;
}

.lang-option.is-active,
.lang-option:hover {
  background: rgba(149, 109, 66, 0.12);
  color: #6e4724;
}

.hero-card,
.about-card,
.manifest-card,
.service-card,
.metric-card,
.gallery-card,
.contact-card {
  border: 1px solid rgba(24, 21, 18, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.mini-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

h1 span,
h2 {
  color: #5c3a20;
}

.hero-text,
.about-copy p,
.manifest-card p:last-child,
.service-card p,
.contact-copy p,
.address-box p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.button-primary {
  color: #fffaf2;
  background: linear-gradient(135deg, #1e1815 0%, #77502b 100%);
}

.button-secondary {
  background: rgba(255, 250, 242, 0.7);
  border-color: var(--line);
}

.hero-points,
.profile-meta {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li::before,
.profile-meta li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.profile-card {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 6px);
  background: #f9f2e9;
}

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

.profile-card-body {
  padding: 22px;
}

.profile-card-body h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
}

.section {
  margin-top: 34px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.about-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.about-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 24%;
}

.about-copy {
  padding: 30px;
}

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

.manifest-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.manifest-card.dark {
  color: #fffaf2;
  background: linear-gradient(135deg, #171310 0%, #2f251d 100%);
}

.manifest-card.dark h2,
.manifest-card.dark .eyebrow {
  color: #fffaf2;
}

.manifest-card.dark p:last-child {
  color: rgba(255, 250, 242, 0.74);
}

.services-grid,
.metrics-section,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.service-card h3,
.gallery-copy h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.metrics-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 28px;
  border-radius: 24px;
  text-align: center;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 2.7rem;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-grid-all .gallery-card img {
  height: 300px;
}

.gallery-copy {
  padding: 22px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

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

.contact-links a,
.address-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.82);
}

.contact-links a span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links a strong {
  font-size: 1rem;
  line-height: 1.5;
}

.address-box {
  grid-column: 1 / -1;
}

@media (max-width: 1080px) {
  .hero-card,
  .contact-card,
  .split-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 8px;
  }

  .site-header.is-open .header-actions {
    display: flex;
  }

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

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

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav a {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 250, 242, 0.78);
  }

  .services-grid,
  .metrics-section,
  .contact-links {
    grid-template-columns: 1fr;
  }

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

  .hero-card,
  .about-copy,
  .contact-card {
    padding: 22px;
  }

  .lang-menu {
    width: 100%;
  }

  .lang-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .lang-options {
    width: 100%;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
