:root {
  --ink: #2f2a25;
  --muted: #70665c;
  --brand: #b58227;
  --brand-dark: #8b5e16;
  --leaf: #2f6b47;
  --cream: #fff2df;
  --sand: #f6efe6;
  --surface: #ffffff;
  --line: #e9ded1;
  --shadow: 0 18px 48px rgba(47, 42, 37, 0.14);
}

* {
  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: var(--surface);
}

body::selection {
  color: #fff;
  background: var(--brand-dark);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 0 6.5vw;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(233, 222, 209, 0.75);
  box-shadow: 0 10px 30px rgba(47, 42, 37, 0.04);
  backdrop-filter: blur(18px);
}

.site-header {
  animation: headerDrop 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand-logo {
  width: clamp(150px, 16vw, 230px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(24px, 3.6vw, 48px);
  padding: 0;
  color: #3b342e;
  font-size: 0.92rem;
  font-weight: 850;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.main-nav a {
  position: relative;
  padding: 29px 0 27px;
  border-radius: 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 18px;
  height: 2px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(139, 94, 22, 0.45), 0 7px 18px rgba(181, 130, 39, 0.28);
  transition: left 240ms ease, right 240ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--brand-dark);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  left: 0;
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-actions a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.header-actions .header-phone {
  grid-template-columns: auto auto;
  gap: 8px;
  width: auto;
  min-width: max-content;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(181, 130, 39, 0.3);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(47, 42, 37, 0.06);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.header-actions .header-phone:hover {
  color: var(--brand-dark);
  background: #fff8ed;
  border-color: rgba(181, 130, 39, 0.55);
  transform: translateY(-1px);
}

.header-actions svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 575px;
  display: grid;
  align-items: center;
  padding: 76px 7vw;
  overflow: hidden;
  background: #f8f5ef;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.42) 44%, rgba(255, 255, 255, 0.12) 100%),
    url("assets/cover.jpg") center / cover;
}

.hero-panel {
  position: relative;
  justify-self: end;
  width: min(560px, 100%);
  padding: clamp(28px, 4vw, 50px);
  background: var(--cream);
  box-shadow: var(--shadow);
  animation: heroPanelIn 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10.8ch;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: clamp(2.55rem, 4.5vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span {
  display: block;
  max-width: 8.6ch;
}

.hero-panel p:not(.eyebrow) {
  max-width: 52ch;
  margin-bottom: 28px;
  color: #3f382f;
  font-weight: 600;
  line-height: 1.6;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-btn {
  color: #fff;
  background: var(--brand);
}

.primary-btn:hover {
  background: var(--brand-dark);
}

.secondary-btn {
  color: var(--brand-dark);
  border: 1px solid var(--brand);
}

.section {
  padding: 62px 7vw;
}

.section-anchor {
  height: 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  background:
    linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.about-main-photo {
  height: min(58vw, 520px);
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(47, 42, 37, 0.16);
}

.about-floating-card {
  position: absolute;
  right: clamp(-24px, -2vw, -10px);
  bottom: 34px;
  width: min(245px, 52%);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(47, 42, 37, 0.18);
}

.about-floating-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-floating-card span {
  display: block;
  padding: 14px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-copy {
  max-width: 680px;
}

.about-copy h2 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  font-weight: 600;
  line-height: 1.8;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 26px;
}

.about-metrics div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(47, 42, 37, 0.08);
}

.about-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.about-metrics span,
.about-points span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.about-points span {
  position: relative;
  padding-left: 24px;
}

.about-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform: rotate(-45deg);
}

.about-page-hero {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 70px 7vw;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(47, 107, 71, 0.96), rgba(47, 42, 37, 0.98)),
    url("assets/cover.jpg") center / cover;
}

.about-page-hero > span {
  position: absolute;
  inset: auto;
  color: transparent;
  font-size: clamp(5.5rem, 15vw, 12rem);
  font-weight: 950;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
}

.about-page-hero div {
  position: relative;
  z-index: 1;
}

.about-page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
}

.about-page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.about-page-hero a:hover {
  color: #f9d99f;
}

.about-page-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding: clamp(70px, 8vw, 118px) 7vw;
  background: #fff;
}

.about-page-section-alt {
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 1.05fr);
  background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.about-page-media img,
.about-page-feature img {
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(47, 42, 37, 0.14);
}

.about-page-copy h2 {
  max-width: 15ch;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  line-height: 1.08;
}

.about-page-copy p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.82;
}

.about-page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-page-stats strong {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.about-page-stats span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.about-page-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin-top: 30px;
}

.about-page-checks span {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.about-page-checks span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform: rotate(-45deg);
}

.about-page-feature {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--leaf);
  box-shadow: 0 26px 70px rgba(47, 42, 37, 0.14);
}

.about-page-feature img {
  width: 100%;
  min-height: 440px;
  opacity: 0.78;
  box-shadow: none;
}

.about-page-feature a {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.about-page-feature a:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.about-page-feature svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.hero {
  scroll-margin-top: 0;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.story-band h2,
.info-section h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.videos-section .section-heading h2 {
  white-space: nowrap;
}

.section-heading p {
  color: var(--muted);
  font-weight: 500;
}

.products-section {
  padding-top: 22px;
}

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

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #f8f3ea;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(47, 42, 37, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(47, 42, 37, 0.16);
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
}

.product-info h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.product-info p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-discover {
  position: relative;
  display: inline-grid;
  min-width: 118px;
  min-height: 46px;
  place-items: center;
  overflow: hidden;
  color: #111;
  background: #fff;
  border: 1px solid rgba(47, 42, 37, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(47, 42, 37, 0.1);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  isolation: isolate;
  transition: color 420ms ease, border-color 420ms ease, transform 260ms ease;
}

.arrival-discover {
  position: relative;
  display: inline-grid;
  min-width: 112px;
  min-height: 42px;
  margin-top: 18px;
  place-items: center;
  overflow: hidden;
  color: #111;
  background: #fff;
  border: 1px solid rgba(47, 42, 37, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(47, 42, 37, 0.09);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
  isolation: isolate;
  transition: color 420ms ease, border-color 420ms ease, transform 260ms ease;
}

.arrival-discover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111;
  transform: translateX(-101%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.arrival-discover:hover,
.arrival-discover:focus-visible {
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
}

.arrival-discover:hover::before,
.arrival-discover:focus-visible::before {
  transform: translateX(0);
}

.product-discover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111;
  transform: translateX(-101%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-discover:hover,
.product-discover:focus-visible {
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
}

.product-discover:hover::before,
.product-discover:focus-visible::before {
  transform: translateX(0);
}

.arrivals-section {
  overflow: hidden;
  background: #fbf8f2;
}

.arrival-carousel {
  position: relative;
  width: min(100%, 1500px);
  margin-inline: auto;
  padding-inline: 58px;
}

.arrival-rail {
  display: flex;
  gap: 22px;
  padding: 6px 2px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.arrival-rail::-webkit-scrollbar {
  display: none;
}

.arrival-nav {
  position: absolute;
  top: 42%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #111;
  background: #fff;
  border: 1px solid rgba(47, 42, 37, 0.12);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(47, 42, 37, 0.18);
  cursor: pointer;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.arrival-nav:hover {
  color: #fff;
  background: #111;
  transform: translateY(-2px);
}

.arrival-nav svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.arrival-nav-prev {
  left: 0;
}

.arrival-nav-next {
  right: 0;
}

.arrival-card {
  flex: 0 0 clamp(240px, 24vw, 340px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(47, 42, 37, 0.1);
  scroll-snap-align: start;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.arrival-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(47, 42, 37, 0.16);
}

.arrival-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.arrival-card div {
  padding: 18px;
}

.arrival-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.arrival-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  padding: clamp(54px, 6vw, 86px) 7vw;
  color: #fff;
  background: var(--leaf);
}

.story-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.85;
  max-width: 780px;
}

.story-band .eyebrow {
  color: #f9d99f;
}

.story-band h2 {
  max-width: 12.5ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  line-height: 1.04;
  text-wrap: balance;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(47, 107, 71, 0.96), rgba(47, 42, 37, 0.98)),
    url("assets/cover.jpg") center / cover;
}

.contact-copy h2 {
  max-width: 13.5ch;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 3.55vw, 3.75rem);
  line-height: 1.06;
  text-wrap: balance;
}

.contact-copy p:not(.eyebrow) {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-copy .eyebrow {
  color: #f9d99f;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-highlights span,
.contact-highlights a {
  padding: 10px 14px;
  color: #2f2a25;
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
}

.contact-highlights a:hover {
  background: #fff;
  color: var(--brand-dark);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  background: #fbf8f2;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(181, 130, 39, 0.35);
  border-color: var(--brand);
}

.contact-form button {
  grid-column: 1 / -1;
  min-height: 54px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--brand-dark);
}

.videos-section {
  overflow: clip;
  background: #fff;
}

.videos-section .section-heading {
  margin-bottom: 54px;
}

.video-carousel {
  position: relative;
  margin-inline: calc(50% - 50vw);
}

.video-rail {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 42px);
  padding: 0 7vw 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: 7vw;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-rail::-webkit-scrollbar {
  display: none;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  box-shadow: 0 18px 42px rgba(47, 42, 37, 0.16);
  scroll-snap-align: center;
  transform-origin: center;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.video-wide {
  flex: 0 0 clamp(360px, 30vw, 520px);
  aspect-ratio: 16 / 9;
}

.video-tall {
  flex: 0 0 clamp(250px, 20vw, 330px);
  aspect-ratio: 267 / 476;
}

.video-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(47, 42, 37, 0.22);
}

.video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  display: none;
}

.video-nav {
  position: absolute;
  top: min(50%, 146px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(47, 42, 37, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 220ms ease, background 220ms ease;
}

.video-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.video-nav svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.video-nav-prev {
  left: 2.6vw;
}

.video-nav-next {
  right: 2.6vw;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(7px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.from-left {
  transform: translate3d(-42px, 18px, 0) scale(0.985);
}

.reveal.from-right {
  transform: translate3d(42px, 18px, 0) scale(0.985);
}

.reveal.zoom-in {
  transform: translate3d(0, 22px, 0) scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.video-card.reveal.is-visible:hover {
  transform: translate3d(0, -7px, 0) scale(1);
}

.info-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  background: var(--sand);
}

.location-copy {
  max-width: 440px;
}

.location-copy h2 {
  margin-bottom: 18px;
}

.location-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
}

.store-map {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(47, 42, 37, 0.12);
}

.map-canvas {
  position: absolute;
  inset: 0;
  bottom: 315px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e8e4d8;
}

.map-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
}

.map-canvas .leaflet-control-attribution {
  display: none;
}

.store-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: #d92828;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 14px 30px rgba(114, 26, 26, 0.3);
  transform: rotate(-45deg);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.store-marker::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
}

.store-marker.is-active,
.store-marker:hover {
  box-shadow: 0 20px 38px rgba(114, 26, 26, 0.42);
  transform: rotate(-45deg) scale(1.1);
}

.store-card {
  position: absolute;
  left: clamp(18px, 3vw, 32px);
  right: clamp(18px, 3vw, 32px);
  bottom: clamp(42px, 4vw, 58px);
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(260px, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
  min-height: 190px;
  padding: clamp(18px, 2.5vw, 26px);
  pointer-events: none;
  opacity: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(233, 222, 209, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(47, 42, 37, 0.17);
  transform: translateY(18px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease;
  backdrop-filter: blur(12px);
}

.store-nav {
  position: absolute;
  top: calc(100% - 185px);
  z-index: 6;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(233, 222, 209, 0.95);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(47, 42, 37, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.store-nav:hover {
  color: var(--brand-dark);
  box-shadow: 0 22px 44px rgba(47, 42, 37, 0.23);
  transform: translateY(-50%) scale(1.06);
}

.store-nav svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.store-nav-prev {
  left: 18px;
}

.store-nav-next {
  right: 18px;
}

.store-card.is-active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.store-card img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  background: #f6efe6;
  border-radius: 8px;
}

.store-card img.store-photo-cover {
  object-fit: cover;
  object-position: center;
}

.store-details {
  min-width: 0;
}

.store-city {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

address {
  color: var(--muted);
  font-style: normal;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 800;
  line-height: 1.65;
}

.store-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 18px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  background: var(--brand);
  border-radius: 8px;
}

.store-phone:hover {
  background: var(--brand-dark);
}

.map-credit {
  position: absolute;
  right: clamp(18px, 3vw, 32px);
  bottom: 14px;
  z-index: 4;
  margin: 0;
  color: rgba(112, 102, 92, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(28px, 4vw, 56px);
  padding: 54px 7vw 24px;
  color: #fff;
  background: #2f2a25;
}

.site-footer p,
.site-footer h2 {
  margin: 0;
}

.footer-brand img {
  width: min(220px, 70vw);
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: #f9d99f;
}

.footer-address {
  display: block;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateX(48px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

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

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

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(47, 42, 37, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 680px;
    align-items: end;
    padding-top: 310px;
  }

  .hero-photo {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.9) 68%),
      url("assets/cover.jpg") center / cover;
  }

  .hero-panel {
    justify-self: stretch;
  }

  .videos-section .section-heading h2 {
    white-space: normal;
  }

  h1 {
    max-width: 12ch;
  }

  h1 span {
    max-width: 10ch;
  }

  .product-grid,
  .about-section,
  .about-page-section,
  .about-page-section-alt,
  .story-band,
  .contact-section,
  .info-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-column: 1;
  }

  .location-copy {
    max-width: none;
  }

  .video-card {
    flex-basis: min(78vw, 380px);
  }

  .video-nav {
    display: none;
  }

  .arrival-carousel {
    padding-inline: 52px;
  }

  .about-visual {
    min-height: auto;
    order: 2;
  }

  .about-copy {
    order: 1;
  }

  .about-copy h2 {
    max-width: 13ch;
  }

  .about-page-section,
  .about-page-section-alt {
    grid-template-columns: 1fr;
  }

  .about-page-section-alt .about-page-feature {
    order: -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    padding-inline: 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 148px;
  }

  .main-nav {
    top: 66px;
    left: 20px;
    right: 20px;
  }

  .hero,
  .section,
  .about-section,
  .story-band,
  .info-section,
  .site-footer {
    padding-inline: 20px;
  }

  .hero {
    min-height: 640px;
    padding-bottom: 34px;
  }

  .hero-panel {
    padding: 26px 22px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.15rem);
    line-height: 1.06;
  }

  .product-grid {
    gap: 18px;
  }

  .about-section {
    gap: 30px;
  }

  .about-main-photo {
    height: 360px;
    min-height: 0;
  }

  .about-floating-card {
    right: 14px;
    bottom: -22px;
    width: min(210px, 58vw);
  }

  .about-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .about-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    min-height: 250px;
    padding-inline: 20px;
  }

  .about-page-section {
    padding: 58px 20px;
  }

  .about-page-media img,
  .about-page-feature img {
    min-height: 330px;
  }

  .about-page-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-page-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-page-checks {
    grid-template-columns: 1fr;
  }

  .product-info {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-discover {
    width: 100%;
  }

  .arrival-carousel {
    padding-inline: 0;
  }

  .arrival-rail {
    gap: 18px;
    padding-inline: 6px;
  }

  .arrival-card {
    flex-basis: 82vw;
  }

  .arrival-nav {
    top: 38%;
    width: 44px;
    height: 44px;
  }

  .arrival-nav-prev {
    left: 4px;
  }

  .arrival-nav-next {
    right: 4px;
  }

  .video-rail {
    gap: 18px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .video-card {
    flex-basis: 82vw;
    aspect-ratio: 16 / 10;
    background:
      linear-gradient(135deg, rgba(47, 107, 71, 0.94), rgba(47, 42, 37, 0.96)),
      url("assets/cover.jpg") center / cover;
  }

  .video-card iframe {
    display: none;
  }

  .video-fallback {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .video-fallback::before {
    content: "";
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    background: #fff;
    clip-path: polygon(32% 20%, 32% 80%, 82% 50%);
  }

  .store-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    min-height: 0;
    padding: 14px 14px 76px;
    overflow: visible;
  }

  .map-canvas {
    position: relative;
    order: 1;
    grid-column: 1 / -1;
    inset: auto;
    height: 300px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .store-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 2;
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 18px;
    transform: translateY(10px) scale(0.99);
  }

  .store-card.is-active {
    display: grid;
  }

  .store-card img {
    width: 100%;
    height: 260px;
  }

  .store-nav {
    position: relative;
    order: 3;
    top: auto;
    bottom: auto;
    width: 52px;
    height: 52px;
    transform: none;
  }

  .store-nav:hover {
    transform: scale(1.04);
  }

  .store-nav-prev {
    left: auto;
    justify-self: end;
  }

  .store-nav-next {
    right: auto;
    justify-self: start;
  }

  .map-credit {
    position: static;
    order: 4;
    grid-column: 1 / -1;
    justify-self: center;
  }
}
