:root {
  --ink: #121714;
  --ink-soft: #222923;
  --paper: #f5f3ed;
  --paper-deep: #e9e5db;
  --white: #ffffff;
  --gold: #c6a35b;
  --gold-bright: #e2c277;
  --muted: #6d746f;
  --line: rgba(18, 23, 20, 0.14);
  --shadow: 0 24px 70px rgba(18, 23, 20, 0.13);
  --radius: 4px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  transition: top 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1500;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(10, 14, 12, 0.82), rgba(10, 14, 12, 0));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.site-header.scrolled {
  background: rgba(16, 21, 18, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.site-header.scrolled::after {
  opacity: 0;
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 230px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.language-switch a {
  padding: 7px 9px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.language-switch a.active {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero.compact {
  min-height: 64svh;
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.9) 0%, rgba(10, 14, 12, 0.56) 53%, rgba(10, 14, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 14, 12, 0.78) 0%, transparent 52%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 18%, #000 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 180px 0 88px;
}

.hero.compact .hero-content {
  padding-bottom: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.display-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero.compact h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn.outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
}

.btn.outline:hover,
.btn.outline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-counter {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 52px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-counter button {
  width: 44px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-counter button.active {
  background: var(--gold);
}

.section {
  padding: 112px 0;
}

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

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}

.section-kicker {
  margin: 0 0 14px;
  color: #9a7937;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-copy {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-copy {
  color: rgba(255, 255, 255, 0.65);
}

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

.product-card {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 10, 0.96), rgba(8, 12, 10, 0.05) 70%);
}

.product-card:hover img {
  transform: scale(1.055);
}

.product-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 32px;
}

.product-number {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.product-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.product-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 76px;
  align-items: center;
}

.image-frame {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.image-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.46);
  pointer-events: none;
}

.split-copy h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.3vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.split-copy p {
  color: var(--muted);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact {
  padding: 24px 20px;
  background: var(--paper);
}

.fact strong {
  display: block;
  color: #9a7937;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.fact span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.location-card {
  position: relative;
  min-height: 360px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));
}

.location-card::before {
  content: attr(data-number);
  position: absolute;
  right: 34px;
  top: 24px;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1;
}

.location-card h3 {
  position: relative;
  margin: 80px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.location-card p {
  position: relative;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.64);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2197";
  font-size: 1rem;
}

.cta-band {
  padding: 76px 0;
  background: var(--gold);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  padding: 34px 28px 0 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-year {
  color: #9a7937;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.timeline-item h3 {
  margin: 8px 0 10px;
  font-size: 1rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.value-card {
  padding: 36px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.34);
}

.value-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid var(--gold);
  color: #9a7937;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.value-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 84px;
}

.contact-aside {
  position: sticky;
  top: 130px;
  align-self: start;
}

.contact-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
  padding: 46px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c8c8c4;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.field input {
  height: 48px;
}

.field textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: var(--paper-deep);
  font-size: 0.85rem;
}

.form-status.visible {
  display: block;
}

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

.map-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
  filter: grayscale(0.78) contrast(1.05);
}

.map-card-content {
  padding: 28px;
}

.map-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.map-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: #0c100e;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 60px;
  padding: 78px 0 58px;
}

.footer-brand img {
  width: 230px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.54);
}

.footer-title {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-bright);
}

.footer-contact p {
  margin: 0 0 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.42);
  font-size: 0.78rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 190px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 100px max(28px, calc((100% - 760px) / 2));
    background: #101512;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1rem;
  }

  .language-switch {
    margin-top: 18px;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.16);
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-counter {
    display: none;
  }

  .section {
    padding: 84px 0;
  }

  .section-head,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .image-frame {
    min-height: 460px;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 44px 20px;
  }

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

  .contact-aside {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
  }

  .brand {
    width: 158px;
  }

  .hero {
    min-height: 780px;
  }

  .hero.compact {
    min-height: 560px;
  }

  .hero h1,
  .display-title {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

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

  .section-copy {
    margin-top: 22px;
  }

  .product-grid,
  .location-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:last-child {
    min-height: 420px;
    grid-column: auto;
  }

  .split {
    gap: 36px;
  }

  .image-frame {
    min-height: 360px;
  }

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

  .location-card {
    min-height: 320px;
    padding: 30px;
  }

  .cta-inner {
    display: block;
  }

  .cta-inner .btn {
    margin-top: 26px;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .field.full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 58px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 5px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
