:root {
  --walnut: #1a1614;
  --walnut-soft: #2a2320;
  --fog: #f0efec;
  --stone: #d9d6cf;
  --copper: #b8895a;
  --copper-deep: #9a6f42;
  --ink: #1a1614;
  --mute: #6a635c;
  --line: rgba(26, 22, 20, 0.12);
  --header-h: 4.4rem;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 22px 50px rgba(26, 22, 20, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(184, 137, 90, 0.12), transparent 50%),
    var(--fog);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.logo,
.brand-mark,
.price {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-deep);
}

.lead {
  color: var(--mute);
  max-width: 34rem;
  font-size: 1.08rem;
}

.wrap {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 clamp(1.15rem, 4vw, 2.75rem);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--fog);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(26, 22, 20, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: var(--fog);
}

.site-header .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 60;
}

.logo span {
  color: var(--copper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 60;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1.15rem);
  margin-left: auto;
  margin-right: 0.5rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
  color: var(--copper);
}

.nav-cta {
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(212, 180, 131, 0.45);
  color: var(--copper) !important;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: var(--copper);
  color: var(--walnut) !important;
  border-color: var(--copper);
}

.icon-btn {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(240, 239, 236, 0.08);
  color: var(--copper);
}

.badge {
  position: absolute;
  top: 0.15rem;
  right: 0.1rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--copper);
  color: var(--walnut);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1rem;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.32rem auto;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--copper);
  color: var(--walnut);
}

.btn-primary:hover {
  background: #c99a68;
}

.btn-dark {
  background: var(--walnut);
  color: var(--fog);
}

.btn-ghost {
  border-color: rgba(240, 239, 236, 0.4);
  color: var(--fog);
  background: transparent;
}

.btn-ghost.dark {
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost.dark:hover {
  border-color: var(--walnut);
  background: var(--walnut);
  color: var(--fog);
}

.btn-sm {
  min-height: 2.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--fog);
  background: var(--walnut);
}

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

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

.hero-media img {
  animation: drift 18s var(--ease) forwards;
}

@keyframes drift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 22, 20, 0.35) 0%, rgba(26, 22, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(26, 22, 20, 0.7), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.brand-mark {
  margin: 0 0 0.9rem;
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.9;
  color: var(--copper);
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.85s var(--ease) 0.1s forwards;
}

.hero-content h1,
.hero-content .lead,
.hero-content .actions {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.85s var(--ease) forwards;
}

.hero-content h1 {
  max-width: 14ch;
  animation-delay: 0.25s;
}

.hero-content .lead {
  color: rgba(240, 239, 236, 0.8);
  animation-delay: 0.4s;
}

.hero-content .actions {
  animation-delay: 0.55s;
}

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

.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  background: var(--walnut);
  color: var(--fog);
}

.page-hero .eyebrow {
  color: var(--copper);
}

.page-hero .lead {
  color: rgba(240, 239, 236, 0.75);
}

.section {
  padding: clamp(3.25rem, 8vw, 6rem) 0;
}

.section-head {
  margin-bottom: 2.25rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}

.figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.figure:hover img {
  transform: scale(1.04);
}

.points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.points li {
  padding-left: 1.15rem;
  position: relative;
  font-weight: 500;
}

.points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--copper);
}

/* Catalog */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.filter-btn {
  min-height: 2.4rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mute);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--fog);
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f7f5f1;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.28rem 0.6rem;
  background: rgba(26, 22, 20, 0.85);
  color: var(--fog);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  padding: 1.05rem 1.1rem 1.2rem;
  display: grid;
  gap: 0.3rem;
  flex: 1;
}

.product-body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.price {
  font-size: 1.15rem;
}

/* Why */
.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-item {
  padding: 1.4rem 1.25rem;
  background: #fff;
  border-top: 2px solid var(--copper);
}

.why-item p {
  margin: 0;
  color: var(--mute);
}

.why-num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--copper-deep);
}

/* Contact */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-meta {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.contact-meta strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.15rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--fog);
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 137, 90, 0.2);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #b33a2b;
}

.field-error {
  min-height: 1.05em;
  font-size: 0.8rem;
  color: #b33a2b;
}

.check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--mute);
  margin: 0.5rem 0 1rem;
}

.check input {
  margin-top: 0.25rem;
}

.check a {
  color: var(--copper-deep);
  text-decoration: underline;
}

.form-note {
  margin: 0.6rem 0 0;
  font-size: 0.8rem;
  color: var(--mute);
}

.inquiry-box {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--fog);
  border: 1px solid var(--line);
}

.inquiry-box ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(26, 22, 20, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  width: min(100%, 24rem);
  height: 100%;
  background: var(--fog);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.4s var(--ease);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.2);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.drawer-head h2 {
  margin: 0;
  font-size: 1.3rem;
}

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1.1rem 1.2rem;
}

.drawer-empty {
  color: var(--mute);
}

.drawer-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.drawer-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
}

.drawer-foot {
  padding: 1rem 1.2rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
  display: grid;
  gap: 0.65rem;
}

.link-btn {
  border: 0;
  background: none;
  color: var(--copper-deep);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

body.drawer-open,
body.modal-open,
body.order-open {
  overflow: hidden;
}

/* Order modal */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(26, 22, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.order-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  position: fixed;
  z-index: 250;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) scale(0.98);
  width: min(520px, calc(100vw - 1.5rem));
  max-height: min(92vh, 860px);
  overflow: auto;
  background: #fff;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  box-shadow: 0 24px 60px rgba(26, 22, 20, 0.28);
}

.order-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.order-modal-inner {
  padding: 2rem 1.5rem 1.5rem;
}

.order-modal-inner .eyebrow {
  margin: 0 0 0.35rem;
}

.order-modal-inner h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.order-modal-lead {
  margin: 0 0 1.1rem;
  color: var(--mute);
  line-height: 1.5;
}

.order-picker {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  max-height: 16rem;
  overflow: auto;
  padding-right: 0.15rem;
}

.order-pick {
  display: grid;
  grid-template-columns: auto 3.5rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(26, 22, 20, 0.1);
  background: #faf9f7;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.order-pick.is-on {
  border-color: var(--copper);
  background: #fff;
}

.order-pick img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  background: #fff;
}

.order-pick-info {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.order-pick-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.order-pick-price {
  color: var(--mute);
  font-size: 0.85rem;
}

.order-pick-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.order-qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(26, 22, 20, 0.15);
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.order-qty-btn:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.order-qty-val {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 600;
}

.order-total {
  margin: 0 0 1.15rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.order-modal .form-note {
  margin: 0.75rem 0 0;
}

.order-modal-items {
  margin-bottom: 1.15rem;
  padding: 0.9rem 1rem;
  background: #f7f5f1;
  border: 1px solid rgba(26, 22, 20, 0.08);
}

/* Product modal */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(26, 22, 20, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.product-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: fixed;
  z-index: 230;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) scale(0.98);
  width: min(960px, calc(100vw - 1.5rem));
  max-height: min(90vh, 820px);
  overflow: auto;
  background: #fff;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  box-shadow: 0 24px 60px rgba(26, 22, 20, 0.28);
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 0;
  min-height: 420px;
}

.product-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.25rem 1.35rem;
  background: #f7f5f1;
}

.product-modal-main {
  background: #fff;
  overflow: hidden;
}

.product-modal-main img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-modal-thumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
}

.product-modal-thumb {
  flex: 0 0 auto;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-modal-thumb.is-active,
.product-modal-thumb:hover {
  opacity: 1;
  border-color: var(--copper);
}

.product-modal-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-modal-info {
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-modal-info .eyebrow {
  margin: 0;
}

.product-modal-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.product-modal-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.product-modal-text {
  color: var(--mute);
  line-height: 1.6;
}

.product-modal-text p {
  margin: 0 0 0.7rem;
}

.product-modal-info .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 820px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-info {
    padding-top: 0.5rem;
  }
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2.25rem;
  background: var(--walnut);
  color: rgba(240, 239, 236, 0.65);
}

.footer-grid {
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  align-items: start;
}

.site-footer .logo {
  color: var(--fog);
  display: inline-block;
  margin-bottom: 0.65rem;
}

.footer-meta {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  max-width: 28rem;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  gap: 0.65rem 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.92rem;
}

.footer-nav a:hover,
.footer-nav a.is-active {
  color: var(--copper);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(240, 239, 236, 0.12);
  font-size: 0.88rem;
}

/* Content / legal / info pages */
.info-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-card {
  padding: 1.35rem 1.4rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(26, 22, 20, 0.08);
}

.info-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.info-card p {
  margin: 0;
  color: var(--mute);
  line-height: 1.55;
}

.info-price {
  margin-top: 0.85rem !important;
  color: var(--ink) !important;
  font-weight: 600;
}

.content-note {
  margin: 1.75rem 0 0;
  color: var(--mute);
  max-width: 40rem;
}

.content {
  max-width: 46rem;
}

.content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: var(--mute);
  line-height: 1.65;
}

.content a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.steps-list,
.legal-points,
.content ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.steps-list li,
.legal-points li,
.content ul li {
  margin-bottom: 0.55rem;
}

.legal p {
  margin: 0 0 0.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.75rem, 5vw, 3.25rem);
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.contact-list a,
.contact-list span:not(.contact-label):not(.contact-note) {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}

.contact-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--mute);
  font-weight: 400;
}

.contact-form-card {
  padding: 1.5rem 1.5rem 1.65rem;
  background: #fff;
  border: 1px solid rgba(26, 22, 20, 0.08);
}

.contact-form-card h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  z-index: 300;
  transform: translateX(-50%) translateY(120%);
  max-width: min(92vw, 24rem);
  padding: 0.9rem 1.2rem;
  background: var(--walnut);
  color: var(--fog);
  border-left: 3px solid var(--copper);
  transition: transform 0.35s var(--ease);
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .split,
  .product-grid,
  .why-grid,
  .contact-panel,
  .contact-layout,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

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

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

  .nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.15rem;
    background: rgba(26, 22, 20, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.25rem;
    font-family: var(--font-display);
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

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