:root {
  --ink: #241f1c;
  --muted: #76665c;
  --paper: #fff9f2;
  --surface: #ffffff;
  --line: #ead8c8;
  --red: #9f1f22;
  --red-dark: #641516;
  --gold: #c58c4a;
  --green: #2f6f4e;
  --shadow: 0 18px 60px rgba(45, 26, 18, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(159, 31, 34, 0.05), rgba(197, 140, 74, 0.06) 42%, rgba(47, 111, 78, 0.06)),
    var(--paper);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 242, 0.92);
  border-bottom: 1px solid rgba(234, 216, 200, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(160px, 20vw, 250px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.92rem;
  font-weight: 700;
  color: #4a3228;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-call,
.btn.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(159, 31, 34, 0.22);
}

.btn.secondary {
  color: var(--red-dark);
  border: 1px solid rgba(159, 31, 34, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(32px, 6vw, 88px) clamp(18px, 5vw, 72px) 44px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

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

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #2b201a;
}

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

.order-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(36, 31, 28, 0.76);
  backdrop-filter: blur(12px);
}

.order-badge span {
  font-weight: 700;
}

.order-badge strong {
  color: #ffdca8;
}

.quick-info,
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-info article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  font-size: 1.1rem;
}

.quick-info span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(58px, 9vw, 112px) 0 0;
}

.two-column,
.mission,
.media-section,
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
}

.copy-stack p,
.section-heading p,
.mission p,
.product-card p,
.contact-info p,
address {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.copy-stack p:first-child {
  margin-top: 0;
}

.values-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.section-heading {
  max-width: 760px;
}

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

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

.value-grid span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(45, 26, 18, 0.08);
}

.product-card > img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.product-card div {
  padding: 16px;
}

.product-card h3 {
  margin: 0;
  color: var(--red-dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.product-card p {
  margin: 10px 0 0;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.product-details article {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(45, 26, 18, 0.08);
}

.product-details h3 {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.product-details ul {
  columns: 2;
  column-gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-details li {
  break-inside: avoid;
  margin: 0 0 8px;
  padding: 9px 10px;
  color: #3f3028;
  border-radius: 6px;
  background: rgba(197, 140, 74, 0.12);
  font-weight: 750;
  line-height: 1.35;
}

.mission {
  align-items: start;
}

.mission > div {
  min-height: 260px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.mission ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mission li {
  padding: 12px 14px;
  font-weight: 800;
  border-radius: 6px;
  background: rgba(47, 111, 78, 0.11);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.gallery-grid button {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #ddd;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid button:hover img {
  transform: scale(1.06);
}

.media-section {
  align-items: stretch;
}

.video-wrap,
.tour-card,
.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-wrap iframe,
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.video-link {
  display: block;
  padding: 14px 18px;
  color: var(--red-dark);
  font-weight: 900;
  text-align: center;
  background: rgba(159, 31, 34, 0.08);
  border-top: 1px solid var(--line);
}

.tour-card {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 30px;
  text-align: center;
  font-weight: 900;
}

.tour-card img {
  width: min(100%, 360px);
}

.contact {
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: clamp(64px, 10vw, 110px);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: clamp(20px, 4vw, 36px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.contact-card > img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.contact-info {
  align-self: center;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

address {
  font-style: normal;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.contact-links a {
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(159, 31, 34, 0.08);
  font-weight: 800;
}

.map-wrap iframe {
  min-height: 460px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--red-dark);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(159, 31, 34, 0.34);
}

.lightbox {
  width: min(920px, calc(100% - 26px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(20, 14, 11, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #111;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffaf5;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .hero,
  .two-column,
  .values-section,
  .mission,
  .media-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .quick-info,
  .product-grid,
  .product-details {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .floating-call {
    display: flex;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 158px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

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

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

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

  .quick-info,
  .product-grid,
  .product-details,
  .value-grid,
  .gallery-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .product-details ul {
    columns: 1;
  }

  .gallery-grid img {
    aspect-ratio: 1.2;
  }

  .contact-card > img {
    min-height: 220px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .video-wrap iframe,
  .map-wrap iframe {
    min-height: 280px;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}
