:root {
  --linen: #f3ebdd;
  --warm-linen: #efe6d8;
  --paper: #fbf8f1;
  --panel: #ffffff;
  --ink: #151515;
  --soft-ink: #2b2a27;
  --muted: #6f6a61;
  --line: #ded5c7;
  --green: #173c32;
  --green-2: #254f42;
  --walnut: #6b4423;
  --gold: #b08a5a;
  --shadow: 0 22px 60px rgba(21, 21, 21, 0.1);
  --radius: 8px;
  --container: 1160px;
  --header-offset: 142px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  width: min(820px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 248, 241, 0.97);
  border-bottom: 1px solid rgba(222, 213, 199, 0.9);
  box-shadow: 0 12px 34px rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(18px);
}

main {
  padding-top: var(--header-offset);
}

main > section[id] {
  scroll-margin-top: calc(var(--header-offset) + 18px);
}

.language-switcher {
  position: absolute;
  top: 14px;
  right: max(20px, calc((100vw - var(--container)) / 2));
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.06);
}

.language-switcher button {
  min-width: 42px;
  height: 34px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: #fff;
}

.nav {
  display: grid;
  justify-items: center;
  min-height: 142px;
  padding: 20px 0 16px;
  gap: 14px;
}

.brand {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.brand strong {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.4vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 900;
}

.nav-links a:not(.btn):hover,
.site-footer a:hover {
  color: var(--walnut);
}

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
  background:
    linear-gradient(110deg, rgba(23, 60, 50, 0.94), rgba(23, 60, 50, 0.72) 48%, rgba(239, 230, 216, 0.95) 48%),
    var(--linen);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6.4vw, 74px);
}

h2 {
  font-size: clamp(30px, 4.2vw, 52px);
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.hero-visual {
  position: relative;
  min-height: 460px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 416px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--warm-linen);
}

.visual-card {
  position: absolute;
  display: grid;
  gap: 2px;
  max-width: 220px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(21, 21, 21, 0.13);
}

.visual-card strong {
  font-size: 25px;
}

.visual-card span {
  color: var(--muted);
  font-size: 13px;
}

.visual-card-top {
  top: 42px;
  right: -18px;
}

.visual-card-bottom {
  left: -18px;
  bottom: 42px;
}

.numbers {
  background: var(--ink);
  color: #fff;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.number-grid article {
  min-height: 132px;
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.number-grid article:last-child {
  border-right: 0;
}

.number-grid strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.number-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head.single {
  display: block;
  margin-bottom: 24px;
}

.section-head > p,
.lead,
.services-copy > p {
  color: var(--muted);
  font-size: 17px;
}

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

.services-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.carousel {
  position: sticky;
  top: 152px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.carousel-track {
  position: relative;
  aspect-ratio: 4 / 3;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img,
.product-strip img,
.process-intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.62);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--gold);
}

.services-copy {
  display: grid;
  gap: 18px;
}

.service-list {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.service-list article,
.reason-grid article,
.capability-list article,
.faq-list details,
.contact-form,
.contact-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-list article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.service-list span {
  color: var(--gold);
  font-weight: 900;
}

.service-list p,
.reason-grid p,
.capability-list p,
.faq-list p,
.cta-panel p,
.contact-note span {
  color: var(--muted);
}

.product-strip-section {
  overflow: hidden;
  padding: 78px 0;
  background: var(--linen);
}

.product-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 320px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 8px max(20px, calc((100vw - var(--container)) / 2)) 12px;
  scroll-snap-type: inline mandatory;
}

.product-strip button {
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(21, 21, 21, 0.08);
  cursor: zoom-in;
  scroll-snap-align: start;
}

.section-split,
.faq-section {
  background: var(--warm-linen);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list article {
  padding: 22px;
}

.capability-list h3 {
  margin-bottom: 8px;
}

.process-section {
  background: var(--green);
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.process-intro {
  display: grid;
  align-content: start;
  gap: 18px;
}

.process-intro img {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.25);
}

.process-section .eyebrow {
  color: #d4ba83;
}

.process-intro p:not(.eyebrow),
.process-list p {
  color: rgba(255, 255, 255, 0.76);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 54px 0.42fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

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

.why-intro {
  max-width: 920px;
  margin-bottom: 30px;
}

.why-intro .eyebrow {
  margin-bottom: 16px;
}

.why-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.why-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.why-summary-grid li {
  position: relative;
  min-height: 172px;
  padding: 28px 24px 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(176, 138, 90, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--soft-ink);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.45;
}

.why-summary-grid li::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--gold);
  border-radius: 999px;
}

.why-summary-grid li::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  background: rgba(23, 60, 50, 0.07);
  border-radius: 50%;
}

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

.reason-grid article {
  min-height: 228px;
  padding: 24px 22px;
}

.reason-grid h3 {
  margin: 14px 0 8px;
  font-size: 19px;
}

.reason-card {
  display: grid;
  align-content: start;
}

.reason-card p {
  font-size: 15px;
  line-height: 1.5;
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--green);
  background: #fffaf1;
  border: 1px solid rgba(176, 138, 90, 0.35);
  border-radius: 50%;
}

.reason-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.faq-list details {
  padding: 18px 20px;
}

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

.faq-list p {
  margin-top: 12px;
}

.inquiry-cta {
  padding: 76px 0;
  background: var(--linen);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.cta-panel h2 {
  max-width: 780px;
}

.cta-panel p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(380px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 20px;
}

.contact-note a {
  color: var(--walnut);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #faf7f0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(176, 138, 90, 0.24);
  border-color: var(--gold);
}

.hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thank-you {
  min-height: calc(100vh - 230px);
  display: grid;
  align-items: center;
  padding: 96px 0;
  background: var(--linen);
}

.thank-you h1 {
  color: var(--ink);
}

.thank-you .lead {
  margin-top: 18px;
}

.site-footer {
  padding: 50px 0;
  color: #fff;
  background: var(--ink);
}

.footer-centered {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.footer-entities {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(820px, 100%);
  margin-bottom: 8px;
}

.footer-entities-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-entity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.company-entity-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 750;
}

.company-entity-list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.footer-centered strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
}

.footer-centered p,
.footer-centered span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-centered a {
  color: #fff;
  font-weight: 800;
}

.footer-centered nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.78);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 1080px) {
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-offset: 182px;
  }

  .language-switcher {
    position: static;
    justify-content: center;
    margin: 10px auto 0;
    width: max-content;
  }

  .nav {
    min-height: auto;
    padding-top: 12px;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 420px);
    gap: 12px;
    padding: 0 0 18px;
  }

  .site-header.is-open .nav-links,
  .nav-links.is-simple {
    display: flex;
  }

  .hero {
    padding-top: 64px;
    background: var(--green);
  }

  .hero-grid,
  .services-layout,
  .split-grid,
  .process-grid,
  .section-head,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .why-summary-grid {
    grid-template-columns: 1fr;
  }

  .carousel {
    position: relative;
    top: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    min-height: 316px;
  }

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

  .process-list li {
    grid-template-columns: 54px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --header-offset: 170px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .brand strong {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

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

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .section,
  .product-strip-section {
    padding: 64px 0;
  }

  .number-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .number-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .number-grid article:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    padding: 12px;
  }

  .visual-card {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .actions,
  .cta-panel {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .product-strip {
    grid-auto-columns: minmax(210px, 78vw);
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list p {
    grid-column: auto;
  }

  .contact-grid {
    gap: 32px;
  }

  .company-entity-list {
    grid-template-columns: 1fr;
  }

  .company-entity-list li:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
