@font-face {
  font-family: "BodoniCustom";
  src: url("./fonts/BOD_R_0.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BodoniCustom";
  src: url("./fonts/BOD_B_0.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --color-bronze: #c49971;
  --color-sand: #dabfa6;
  --color-warm: #f2e7dd;
  --color-sage: #6c9674;
  --color-green: #427154;
  --color-deep: #124830;
  --color-ice: #dde7f1;
  --color-blue-soft: #a8c1db;
  --color-blue: #719bc3;
  --color-ink: #17221d;
  --color-muted: #63716a;
  --color-white: #fffaf4;
  --color-line: rgba(18, 72, 48, 0.16);

  --font-serif: "BodoniCustom", Didot, Georgia, "Times New Roman", serif;
  --font-sans: "BodoniCustom", Didot, Georgia, "Times New Roman", serif;

  --shell: 1180px;
  --gutter: 24px;
  --section: 112px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(18, 72, 48, 0.14);
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--color-warm);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--color-deep);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(242, 231, 221, 0.78);
  border-bottom: 1px solid rgba(18, 72, 48, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 12px 38px rgba(18, 72, 48, 0.08);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: rgba(23, 34, 29, 0.78);
  font-size: 1rem;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(196, 153, 113, 0.16);
  color: var(--color-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.75);
  padding: 9px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-deep);
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-deep);
}

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

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

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 24, 18, 0.88) 0%, rgba(18, 72, 48, 0.62) 42%, rgba(18, 72, 48, 0.1) 74%),
    linear-gradient(0deg, rgba(7, 24, 18, 0.78) 0%, rgba(7, 24, 18, 0.08) 46%);
}

.hero-media {
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0 58px;
  color: var(--color-white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-bronze);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 9rem;
}

.hero-slogan {
  max-width: 670px;
  margin-bottom: 50px;
  color: rgba(255, 250, 244, 0.9);
  font-size: 1.35rem;
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-bronze);
  color: #17120e;
}

.button-primary:hover {
  background: var(--color-sand);
}

.button-secondary {
  border-color: rgba(255, 250, 244, 0.44);
  color: var(--color-white);
  background: rgba(255, 250, 244, 0.08);
}

.button-secondary:hover {
  border-color: var(--color-white);
  background: rgba(255, 250, 244, 0.16);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin: 46px 0 0;
  color: var(--color-white);
}

.hero-facts div {
  min-width: 150px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 250, 244, 0.38);
}

.hero-facts dt {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  line-height: 1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 250, 244, 0.76);
  font-size: 1.25rem;
}

.section {
  padding: var(--section) 0;
}

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

.section-heading h2,
.section-copy h2,
.contact-copy h2 {
  margin-bottom: 24px;
  color: var(--color-deep);
  font-size: 4rem;
}

.section-heading p:not(.eyebrow),
.section-copy p,
.contact-copy p {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 20px;
  line-height:1.50;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

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

.proof-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 36px;
  background: linear-gradient(180deg, rgba(221, 231, 241, 0.62), rgba(255, 250, 244, 0.96));
  box-shadow: var(--shadow);
}

.proof-number span {
  display: block;
  margin-bottom: 14px;
  color: var(--color-deep);
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.9;
}

.proof-number p {
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1;
}

.proof-title {
  margin: 28px 0 14px;
  color: var(--color-deep);
  font-weight: 700;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-list li,
.about-tags span {
  border: 1px solid rgba(18, 72, 48, 0.14);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 250, 244, 0.68);
  color: var(--color-deep);
  font-size: 1rem;
  font-weight: 700;
}

.statement-section {
  background:
    linear-gradient(135deg, rgba(18, 72, 48, 0.96), rgba(66, 113, 84, 0.94)),
    var(--color-deep);
  color: var(--color-white);
}

.statement-section .section-heading h2 {
  color: var(--color-white);
}

.statement-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 244, 0.72);
}

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

.statement {
  min-height: 260px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(255, 250, 244, 0.07);
}

.statement span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--color-sand);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.statement p {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 2.15rem;
  line-height: 1.12;
}

.about-section {
  background: linear-gradient(180deg, var(--color-warm), #fff7ee);
}

.editorial-image {
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-white);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

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

.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-line);
}

.spec-strip div {
  padding: 24px;
  background: #f9f1e9;
}

.spec-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-strip strong {
  color: var(--color-deep);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.05;
}

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

.feature-card {
  min-height: 248px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fffaf4;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 153, 113, 0.44);
  box-shadow: 0 20px 50px rgba(18, 72, 48, 0.1);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--color-bronze);
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--color-deep);
  font-size: 1.72rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.10rem;
  line-height: 1.05;
}

.gallery-section {
  background: linear-gradient(180deg, #eef5f7, var(--color-ice));
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 190px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-deep);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 18, 0.04), rgba(7, 24, 18, 0.72));
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: var(--color-white);
}

.gallery-item figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-sand);
  font-weight: 800;
}

.gallery-item figcaption p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 250, 244, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-section {
  background: var(--color-deep);
  color: var(--color-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  align-items: start;
}

.contact-copy h2 {
  color: var(--color-white);
}

.contact-copy p {
  color: rgba(255, 250, 244, 0.74);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 34px 0;
  font-style: normal;
  font-size: 20px;
}

.contact-list a {
  width: fit-content;
  color: rgba(255, 250, 244, 0.9);
  transition: color 160ms ease;
}

.contact-list a:hover {
  color: var(--color-sand);
}

.social-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid rgba(255, 250, 244, 0.22);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--color-white);
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease;
}

.social-link:hover,
.text-link:hover {
  border-color: var(--color-sand);
  background: rgba(255, 250, 244, 0.08);
}

.social-link svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.form-heading h3 {
  margin-bottom: 8px;
  color: var(--color-deep);
  font-size: 2.2rem;
}

.form-heading p {
  margin-bottom: 26px;
  color: var(--color-muted);
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label,
.privacy-check {
  color: var(--color-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18, 72, 48, 0.18);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--color-ink);
  padding: 12px 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(113, 155, 195, 0.16);
  outline: none;
}

.field textarea {
  resize: vertical;
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 4px 0 22px;
  line-height: 1.45;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-deep);
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--color-green);
  font-weight: 700;
}

.form-status.is-error {
  color: #9b382f;
}

.site-footer {
  background: #0b261a;
  color: rgba(255, 250, 244, 0.68);
  padding: 30px 0;
}

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

.footer-inner img {
  width: 138px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-inner p {
  margin: 0;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --section: 92px;
  }

  h1 {
    font-size: 7rem;
  }

  .section-heading h2,
  .section-copy h2,
  .contact-copy h2 {
    font-size: 3.35rem;
  }

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

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 82svh;
  }

  h1 {
    font-size: 5.4rem;
  }

  .hero-slogan {
    font-size: 1.13rem;
  }

  .split-layout,
  .split-layout-reverse,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .editorial-image {
  min-height: auto;
 }

  .statement-grid,
  .spec-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .statement {
    min-height: auto;
  }

  .statement p {
    font-size: 1.8rem;
  }

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

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

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
    --section: 74px;
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    width: 146px;
  }

  .nav-links {
    top: 68px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding: 76px 0 42px;
  }

  h1 {
    font-size: 4rem;
  }

  .hero-actions .button,
  .contact-actions a {
    width: 100%;
  }

  .hero-facts {
    gap: 14px;
  }

  .hero-facts div {
    width: 100%;
  }

  .section-heading h2,
  .section-copy h2,
  .contact-copy h2 {
    font-size: 2.55rem;
  }

  .proof-panel,
  .statement,
  .contact-form {
    padding: 24px;
  }

  .proof-number span {
    font-size: 3.6rem;
  }

  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .gallery-grid {
    grid-auto-rows: 270px;
  }

  .gallery-large,
  .gallery-wide,
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
.image-section {
    background: #ffffff;
    padding: 80px 0;
}

.full-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
