@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --white: #ffffff;
  --paper: #f7f7f3;
  --ink: #202225;
  --muted: #626866;
  --line: #d9d9d2;
  --olive: #23291d;
  --bronze: #8f6840;
  --gold: #b9924b;
  --gold-light: #d7b56d;
  --footer: #101619;
  --max: 1440px;
  --gutter: 46px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 240px 1fr 120px;
  align-items: center;
  min-height: 86px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 217, 210, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  font-weight: 720;
  line-height: 1;
}

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

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 64px);
  font-size: 12px;
  font-weight: 700;
}

.language-switch {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  font-size: 12px;
  font-weight: 700;
}

.language-switch a {
  color: var(--muted);
}

.hero {
  position: relative;
  display: block;
  width: 100%;
  max-width: var(--max);
  min-height: 640px;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 29%, rgba(255, 255, 255, 0.72) 45%, rgba(255, 255, 255, 0.1) 65%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 640px;
  width: min(690px, 54%);
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 70px var(--gutter);
}

.route-line,
.section-index em,
.model-name {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(62px, 5.25vw, 82px);
  line-height: 0.91;
  text-transform: uppercase;
}

.hero-text {
  max-width: 470px;
  margin-top: 34px;
  color: #363a38;
  font-size: 16px;
  line-height: 1.75;
}

.service-strip {
  max-width: 610px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.service-strip a {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.service-strip a::after,
.button::after,
.product-list li::after {
  content: "";
  width: 18px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 44%, 75% 44%, 75% 0, 100% 50%, 75% 100%, 75% 58%, 0 58%);
  opacity: 0.85;
}

.service-strip span {
  color: var(--gold);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 760;
}

.button-primary {
  background: linear-gradient(135deg, #1c2318 0%, #27301f 58%, #3b321f 100%);
  border-color: #202718;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(215, 181, 109, 0.28);
}

.button-secondary {
  background: transparent;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 640px;
  overflow: hidden;
}

.hero-media::before {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center center;
}

.section {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  justify-content: center;
  gap: 44px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.section-index {
  padding-top: 3px;
}

.section-index span {
  display: block;
  width: 54px;
  padding-bottom: 13px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gold);
  font-size: 15px;
  font-weight: 760;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: 88px;
  align-items: end;
}

h2 {
  font-size: clamp(38px, 3.7vw, 56px);
  line-height: 0.98;
}

h3 {
  font-size: 17px;
  font-weight: 760;
  line-height: 1.28;
}

.section-head p,
.products-copy p,
.about-copy p,
.cta p {
  color: var(--muted);
  line-height: 1.72;
}

.audience-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.audience-grid article {
  min-height: 250px;
  padding: 42px 42px 28px 0;
  border-right: 1px solid var(--line);
}

.audience-grid article + article {
  padding-left: 42px;
}

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

.audience-grid img,
.value-list img {
  width: 46px;
  height: 46px;
}

.audience-grid h3 {
  margin-top: 28px;
}

.audience-grid p,
.format-card p,
.value-list p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.value {
  grid-template-columns: 120px minmax(300px, 0.62fr) minmax(420px, 0.98fr);
  background: var(--paper);
}

.value-title {
  max-width: 430px;
}

.value-list {
  border-top: 1px solid var(--line);
}

.value-list article {
  display: grid;
  grid-template-columns: 42px 54px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.value-list article > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 760;
}

.format-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.format-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.format-image {
  width: 100%;
  aspect-ratio: 3.3 / 1;
  object-fit: cover;
}

.format-card .model-name,
.format-card h3,
.format-card > p:not(.model-name) {
  margin-left: 28px;
  margin-right: 28px;
}

.format-card .model-name {
  margin-top: 26px;
  color: var(--gold);
  font-size: 10px;
}

.format-card h3 {
  margin-top: 12px;
}

.format-card > p:not(.model-name) {
  margin-bottom: 32px;
}

.products {
  grid-template-columns: 120px minmax(360px, 0.52fr) minmax(460px, 0.68fr) minmax(250px, 0.4fr);
  gap: 30px;
  align-items: start;
}

.products .product-list,
.products .products-media {
  margin-top: 18px;
}

.products-copy h2 {
  max-width: 360px;
  font-size: clamp(38px, 3.2vw, 50px);
}

.products-copy p {
  max-width: 390px;
  margin-top: 26px;
}

.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 560;
}

.product-list li::after {
  width: 14px;
  height: 7px;
  color: var(--gold);
}

.section-media {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-media {
  aspect-ratio: 1.8 / 1;
}

.about {
  grid-template-columns: 120px minmax(300px, 0.72fr) minmax(300px, 0.56fr) minmax(340px, 0.72fr);
  align-items: start;
}

.about-copy p {
  margin-top: 22px;
  max-width: 430px;
}

.about-panel {
  display: grid;
  padding: 30px 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.about-panel h3 {
  margin-bottom: 16px;
}

.about-panel span {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.about-panel strong {
  margin-top: 10px;
  font-size: 13px;
}

.about-panel span + strong {
  margin-top: 26px;
}

.about-media {
  aspect-ratio: 1.85 / 1;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gutter);
}

.cta h2 {
  max-width: 460px;
}

.cta p {
  max-width: 580px;
  margin-top: 18px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 60px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px var(--gutter) 68px;
  background: radial-gradient(circle at 74% 46%, rgba(185, 146, 75, 0.18), transparent 34%), var(--footer);
  color: var(--white);
}

.footer-brand {
  padding: 12px 16px;
  background: #fff;
  border-radius: 2px;
  align-self: start;
}

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

.footer div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer h2 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a,
.footer span {
  color: #cdd1ce;
  font-size: 13px;
}

@media (max-width: 1120px) {
  :root {
    --gutter: 28px;
  }

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

  .nav {
    display: none;
  }

  .language-switch {
    justify-self: end;
  }

  .hero,
  .section,
  .value,
  .products,
  .about,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    padding: 64px var(--gutter) 36px;
  }

  .hero-media {
    position: relative;
    inset: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .section-index,
  .audience-grid,
  .format-grid {
    grid-column: auto;
  }

  .section-head,
  .audience-grid,
  .format-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .audience-grid article,
  .audience-grid article + article {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .products-media,
  .about-media {
    max-height: 360px;
  }

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

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

  .site-header {
    min-height: 70px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 132px;
  }

  .language-switch {
    font-size: 11px;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 0.98;
  }

  h2 {
    font-size: 38px;
  }

  .hero-text {
    max-width: 320px;
    font-size: 14px;
    overflow-wrap: break-word;
  }

  .hero-copy,
  .service-strip {
    max-width: calc(100vw - (var(--gutter) * 2));
    overflow: hidden;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .value-list article {
    grid-template-columns: 34px 42px 1fr;
    gap: 16px;
  }

  .format-grid {
    gap: 18px;
  }

  .product-list {
    gap: 0;
  }

  .cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
