:root {
  --ink: #1d2622;
  --muted: #68746c;
  --paper: #f5f3ef;
  --panel: #fffdf8;
  --line: #d8ded2;
  --sage: #6f8a74;
  --terracotta: #b86d46;
  --deep: #23342f;
  --gold: #bd8e45;
  --mint: #e6eee2;
  --clay-soft: #f1dfd3;
  --header-bg: rgba(245, 243, 239, 0.92);
  --sticky-bar-bg: #1d2622;
  --sticky-bar-ink: #fff8ea;
  --sticky-bar-muted: #d9e6d5;
  --sticky-bar-hover: rgba(255, 255, 255, 0.12);
  --sticky-bar-line: #000;
  --nav-hover: #e6eee2;
  --soft-panel: #f7f9f3;
  --visual-bg: #edf2e8;
  --product-bg: #e9efe4;
  --stat-number: #23342f;
  --button-ghost-ink: #23342f;
  --button-ghost-border: #8b9c91;
  --contact-bg: #23342f;
  --contact-copy: #d9e6d5;
  --contact-ink: #fff8ea;
  --shadow: 0 24px 70px rgba(42, 54, 46, 0.14);
}

body.dark-theme {
  --ink: #f7f2e8;
  --muted: #cdd9cd;
  --paper: #202a26;
  --panel: #2c3732;
  --line: #4c5d54;
  --sage: #a7c3aa;
  --terracotta: #df9670;
  --deep: #18231f;
  --gold: #d5b066;
  --mint: #34443c;
  --clay-soft: #4a3b34;
  --header-bg: rgba(32, 42, 38, 0.92);
  --sticky-bar-bg: #111a17;
  --sticky-bar-ink: #fff8ea;
  --sticky-bar-muted: #d9e6d5;
  --sticky-bar-hover: rgba(255, 255, 255, 0.12);
  --sticky-bar-line: #000;
  --nav-hover: #37463f;
  --soft-panel: #35423c;
  --visual-bg: #313d37;
  --product-bg: #3a473f;
  --stat-number: #ffe0a8;
  --button-ghost-ink: #f7f2e8;
  --button-ghost-border: #6e8377;
  --contact-bg: #1f2d29;
  --contact-copy: #d8e3d5;
  --contact-ink: #fff8ea;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(111, 138, 116, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(111, 138, 116, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 14px 0;
  color: var(--sticky-bar-ink);
  background: transparent;
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  background: var(--sticky-bar-bg);
  content: "";
}

.site-header::after {
  position: absolute;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  height: 2px;
  background: var(--sticky-bar-line);
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 46px;
  padding: 5px;
  object-fit: contain;
  background: color-mix(in srgb, var(--panel) 70%, var(--gold) 30%);
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--sticky-bar-muted);
  font-size: 12px;
}

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

.nav-links a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--sticky-bar-muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--sticky-bar-ink);
  background: var(--sticky-bar-hover);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sticky-bar-ink);
  background: var(--panel);
  cursor: pointer;
  font: inherit;
  box-shadow: 0 8px 20px rgba(42, 54, 46, 0.1);
}

.theme-toggle:hover {
  color: var(--terracotta);
}

.theme-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--muted);
  font-size: 17px;
  line-height: 1;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.theme-track {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 17px;
  border-radius: 999px;
  background: #6f8a74;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.16);
  transition:
    background 260ms ease,
    box-shadow 260ms ease;
}

.theme-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease;
}

.theme-toggle .sun {
  color: #b8751f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.theme-toggle .moon {
  color: #293432;
}

body.dark-theme .theme-toggle .sun {
  color: #bfc9bd;
  text-shadow: none;
}

body.dark-theme .theme-toggle .moon {
  color: #f8f0dc;
  transform: rotate(-8deg);
}

body.dark-theme .theme-thumb {
  transform: translateX(17px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.36);
}

body.dark-theme .theme-track {
  background: #4d8fb6;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 118px);
  margin: 0 auto;
  padding: 42px 0 34px;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 68px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.contact-section p,
.about-content,
.showcase-row p {
  color: var(--muted);
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--deep);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--deep);
}

.button.ghost {
  color: var(--button-ghost-ink);
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--button-ghost-border);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-slider {
  position: relative;
  min-height: 430px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  opacity: 0;
  transition: opacity 240ms ease;
}

.hero-slide-cover {
  object-fit: cover;
  object-position: center center;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: rgba(29, 38, 34, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-nav:hover,
.hero-nav:focus-visible {
  background: #000;
}

.hero-nav-prev {
  left: 14px;
}

.hero-nav-next {
  right: 14px;
}

.hero-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 48px;
  display: grid;
  gap: 2px;
  max-width: 280px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(35, 52, 47, 0.86);
  backdrop-filter: blur(12px);
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
  pointer-events: none;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(0, 0, 0, 0.36);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.hero-dots button.is-active {
  background: #000;
  border-color: #000;
}

.hero-label strong {
  font-size: 24px;
  line-height: 1;
}

.hero-label span {
  color: #d9e6d5;
  font-size: 13px;
  font-weight: 700;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 42px rgba(42, 54, 46, 0.08);
}

.intro-band div {
  padding: 24px;
  background: var(--panel);
}

.intro-band strong {
  display: block;
  color: var(--stat-number);
  font-size: 34px;
  line-height: 1;
}

.intro-band span {
  color: var(--muted);
  font-weight: 700;
}

.showcase-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(111, 138, 116, 0.16), transparent 48%),
    var(--panel);
}

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

.showcase-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.showcase-row div {
  display: grid;
  gap: 8px;
}

.showcase-row span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.showcase-row strong {
  font-size: 18px;
}

.showcase-row p {
  margin: 0;
  font-size: 15px;
}

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

.anchor-target {
  display: block;
  height: 1px;
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.catalog {
  padding-top: 36px;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 36px rgba(42, 54, 46, 0.08);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    box-shadow 420ms ease;
  transform-origin: center;
  cursor: pointer;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-8px) scale(1.045);
  box-shadow: 0 28px 62px rgba(42, 54, 46, 0.22);
}

.product-card:focus-visible {
  outline: 3px solid rgba(184, 109, 70, 0.42);
  outline-offset: 3px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--product-bg);
}

.product-card img.product-photo {
  padding: 12px;
  object-fit: contain;
  background: #fff;
}

.product-card img.handle-photo,
.dialog-media img.handle-photo {
  background: #1c1d1c;
}

.product-card img.dark-product-bg,
.dialog-media img.product-photo.dark-product-bg {
  background: #373738;
}

.product-card img.soft-product-bg,
.dialog-media img.product-photo.soft-product-bg {
  background: #e8dfdf;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-type {
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info p {
  color: var(--muted);
  font-size: 14px;
}

.product-info::after {
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--deep);
  background: var(--mint);
  content: "Detayları Gör";
  font-size: 12px;
  font-weight: 900;
}

body.dark-theme .product-info::after {
  color: var(--ink);
}

.chips {
  display: none;
}

.swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(32, 38, 35, 0.18);
  border-radius: 50%;
}

.beyaz {
  background: #f8f8f3;
}

.antrasit {
  background: #3f4644;
}

.ceviz {
  background: #765039;
}

.mese {
  background: #c9a36e;
}

.krem {
  background: #eadfc8;
}

.siyah {
  background: #1d1d1b;
}

.default-swatch {
  background:
    linear-gradient(135deg, transparent 46%, rgba(32, 38, 35, 0.25) 47%, rgba(32, 38, 35, 0.25) 53%, transparent 54%),
    #e8e2d6;
}

.about-section {
  padding-top: 28px;
}

.about-content {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.about-content p,
.about-content ul {
  margin: 0;
}

.about-content ul {
  padding-left: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr) minmax(260px, 0.56fr);
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(184, 109, 70, 0.34), transparent 45%),
    var(--contact-bg);
}

.contact-section .eyebrow,
.contact-section p {
  color: var(--contact-copy);
}

.contact-section h2 {
  margin-bottom: 10px;
}

.contact-section address {
  display: grid;
  gap: 10px;
  color: var(--contact-ink);
  font-style: normal;
  font-weight: 700;
}

.contact-section a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-map {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%),
    #283a34;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.contact-map:focus-visible {
  outline: 3px solid rgba(255, 248, 234, 0.72);
  outline-offset: 4px;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}

.map-road {
  position: absolute;
  height: 7px;
  background: rgba(213, 176, 102, 0.62);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.map-road-one {
  top: 46px;
  left: -28px;
  width: 78%;
  transform: rotate(-13deg);
}

.map-road-two {
  right: -30px;
  bottom: 58px;
  width: 72%;
  transform: rotate(16deg);
}

.map-road-three {
  top: 34px;
  right: 62px;
  width: 7px;
  height: 170px;
  transform: rotate(31deg);
}

.map-pin {
  position: absolute;
  top: 82px;
  left: 50%;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border: 4px solid #fff8ea;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%) rotate(-45deg);
}

.map-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 3px;
  max-width: calc(100% - 28px);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(24, 35, 31, 0.82);
  backdrop-filter: blur(10px);
}

.map-card span {
  color: #d9e6d5;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.floating-socials {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  gap: 12px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    filter 220ms ease;
}

.whatsapp-link {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #28d46a, #159447);
  box-shadow:
    0 0 0 7px rgba(31, 186, 94, 0.12),
    0 18px 40px rgba(25, 148, 71, 0.38),
    inset 0 -10px 18px rgba(0, 0, 0, 0.16);
}

.whatsapp-link svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  transform: translateY(-4px) scale(1.04);
  filter: saturate(1.08);
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  box-shadow:
    0 0 0 9px rgba(31, 186, 94, 0.18),
    0 24px 52px rgba(25, 148, 71, 0.5),
    inset 0 -10px 18px rgba(0, 0, 0, 0.14);
}

.product-dialog {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(760px, 100%);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.28);
}

.product-dialog[open] {
  animation: drawer-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-dialog::backdrop {
  background: rgba(20, 28, 25, 0.56);
  backdrop-filter: blur(4px);
  animation: backdrop-in 280ms ease-out;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.drawer-header span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft-panel);
  cursor: pointer;
  font: inherit;
  font-size: 26px;
  line-height: 1;
}

.dialog-close:hover {
  background: var(--nav-hover);
}

.drawer-body {
  height: calc(100dvh - 68px);
  overflow: auto;
}

.dialog-media {
  display: grid;
  background: var(--product-bg);
}

.dialog-media img {
  width: 100%;
  min-height: 360px;
  max-height: 430px;
  object-fit: cover;
}

.dialog-media img.product-photo {
  padding: 18px;
  object-fit: contain;
  background: #fff;
}

.dialog-media img.product-photo.handle-photo {
  background: #1c1d1c;
}

.dialog-copy {
  display: flex;
  min-height: calc(100dvh - 498px);
  flex-direction: column;
  gap: 18px;
  padding: 32px;
}

.dialog-copy h2 {
  margin: -8px 0 0;
  font-size: 42px;
  line-height: 1.04;
}

.dialog-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.dialog-color-section {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-panel);
}

.dialog-color-section h3 {
  margin: -6px 0 4px;
  font-size: 22px;
}

.dialog-colors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.dialog-color {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.dialog-color:hover,
.dialog-color.is-active {
  border-color: var(--deep);
  background: var(--mint);
}

.dialog-color.is-active {
  transform: translateY(-1px);
}

.dialog-color:focus-visible {
  outline: 3px solid rgba(184, 109, 70, 0.36);
  outline-offset: 2px;
}

.dialog-color .swatch {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.dialog-contact {
  width: fit-content;
  margin-top: auto;
}

body.dialog-open {
  overflow: hidden;
}

@keyframes drawer-in {
  from {
    transform: translateX(54px);
    opacity: 0;
  }

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

@keyframes backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal-on-scroll {
  transform: translateY(22px);
  opacity: 0;
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease;
}

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

.product-card.reveal-on-scroll.is-visible:hover,
.product-card.reveal-on-scroll.is-visible:focus-visible {
  transform: translateY(-8px) scale(1.045);
}

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

  .reveal-on-scroll {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

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

  .contact-section > div:first-child,
  .contact-map {
    grid-column: 1 / -1;
  }

  .product-grid,
  .showcase-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-links a {
    padding-inline: 8px;
  }

  .theme-toggle {
    width: auto;
  }

  .hero {
    padding-top: 26px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .intro-band,
  .product-grid,
  .contact-section,
  .showcase-row {
    grid-template-columns: 1fr;
  }

  .showcase-band,
  .contact-section {
    padding: 24px;
  }

  .product-dialog {
    width: 100%;
    border-radius: 0;
  }

  .dialog-media img {
    min-height: 260px;
  }

  .dialog-copy {
    min-height: auto;
    padding: 24px 20px;
  }

  .dialog-copy h2 {
    font-size: 32px;
  }

  .dialog-colors {
    grid-template-columns: 1fr;
  }
}
