:root {
  --ink: #11130f;
  --deep: #122018;
  --deep-2: #1f3326;
  --surface: #ffffff;
  --paper: #f7f4ec;
  --soft: #ebe2cf;
  --gold: #b88a36;
  --gold-light: #ead39a;
  --blue: #2f5f84;
  --muted: #706a5d;
  --line: rgba(24, 31, 23, 0.14);
  --shadow: 0 20px 70px rgba(17, 19, 15, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(234, 211, 154, 0.18);
  background: rgba(12, 16, 12, 0.72);
  color: #fff;
  backdrop-filter: blur(16px);
}

.nav,
.section,
.proof-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand,
.nav-links,
.nav-call,
.button,
.phone-row {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  padding: 5px;
}

.nav-links {
  gap: 4px;
}

.nav-links a,
.nav-call {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.nav-call,
.button {
  justify-content: center;
  border-color: var(--gold);
  background: var(--gold);
  color: #14100a;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 16, 12, 0.94), rgba(12, 16, 12, 0.66) 44%, rgba(12, 16, 12, 0.18)),
    linear-gradient(0deg, rgba(18, 32, 24, 0.32), transparent 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 88vh;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  margin: 0 auto;
  padding: 118px 0 88px;
}

.hero-copy {
  max-width: 720px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.6rem, 16vw, 10rem);
  line-height: 0.84;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.42rem, 2.2vw, 1.9rem);
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

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

.button {
  min-height: 48px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 13px 18px;
  box-shadow: 0 14px 34px rgba(184, 138, 54, 0.25);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}

.hero-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(234, 211, 154, 0.28);
  border-radius: 8px;
  background: rgba(16, 21, 16, 0.68);
  padding: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card small,
.tag {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card span,
.hero-card small {
  color: rgba(247, 244, 236, 0.72);
}

.hero-card strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.18;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -42px;
}

.proof-strip article,
.product-card,
.points article,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(17, 19, 15, 0.04);
}

.proof-strip article {
  padding: 18px;
  box-shadow: var(--shadow);
}

.proof-strip b {
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding-top: clamp(62px, 9vw, 108px);
  padding-bottom: clamp(62px, 9vw, 108px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.54fr);
  align-items: end;
  gap: clamp(22px, 5vw, 64px);
  margin-bottom: 28px;
}

.section-heading .kicker,
.about-copy .kicker,
.order-copy .kicker {
  color: var(--gold);
}

.section-heading p {
  margin-bottom: 0;
}

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

.product-card {
  overflow: hidden;
}

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

.product-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.tag {
  width: fit-content;
  border: 1px solid rgba(184, 138, 54, 0.22);
  border-radius: 8px;
  background: #f4ebd7;
  color: #725319;
  padding: 7px 10px;
}

ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.text-link {
  width: fit-content;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9f7f1;
  color: var(--deep);
  padding: 9px 12px;
  font-weight: 900;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.72fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(47, 95, 132, 0.12), transparent 42%),
    var(--deep);
  color: #fff;
}

.about-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: #050706;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.about-copy {
  align-self: center;
}

.about-copy p,
.about-copy .points p {
  color: rgba(255, 255, 255, 0.72);
}

.points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 16px;
}

.points span {
  grid-row: span 2;
  color: var(--gold-light);
  font-weight: 900;
}

.points b {
  color: #fff;
}

.points p {
  margin-bottom: 0;
}

.gallery-section {
  background: #f1ede3;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.gallery img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery img:nth-child(2) {
  height: 520px;
  margin-top: 42px;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.74fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.order-copy {
  position: sticky;
  top: 110px;
}

.phone-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.phone-row a {
  min-height: 44px;
  border: 1px solid rgba(184, 138, 54, 0.34);
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  padding: 11px 13px;
  font-weight: 900;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
}

.order-form label {
  display: grid;
  gap: 7px;
}

.order-form span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  outline: none;
  padding: 11px 12px;
}

.order-form textarea {
  min-height: 102px;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 54, 0.16);
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.92rem;
}

.footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: 34px max(16px, calc((100% - 1180px) / 2));
}

.footer strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero-inner,
  .section-heading,
  .about-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .products,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 420px;
  }

  .about-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-media {
    min-height: 520px;
  }

  .gallery img,
  .gallery img:nth-child(2) {
    height: auto;
    margin-top: 0;
  }

  .order-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .nav,
  .section,
  .proof-strip,
  .hero-inner {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: 66px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-call {
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }

  .hero-inner {
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 16, 12, 0.96), rgba(12, 16, 12, 0.62) 54%, rgba(12, 16, 12, 0.3)),
      linear-gradient(90deg, rgba(12, 16, 12, 0.24), transparent);
  }

  .proof-strip {
    margin-top: -24px;
  }

  .order-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

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