:root {
  --ink: #0b0d0e;
  --ink-soft: #131718;
  --paper: #f4efe7;
  --paper-deep: #e9dfd2;
  --cream: #fffaf2;
  --gold: #d6ae67;
  --gold-bright: #f0cd83;
  --wood: #8d5f3f;
  --red: #b92f38;
  --red-bright: #d5484b;
  --moss: #58755d;
  --line: rgba(11, 13, 14, 0.14);
  --line-light: rgba(244, 239, 231, 0.18);
  --body-font: "Vazirmatn", Tahoma, sans-serif;
  --utility-font: "DM Mono", "Courier New", monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --scroll: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  border: 0;
  cursor: pointer;
}

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

section[id] {
  scroll-margin-top: 96px;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: var(--scroll);
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold-bright));
  transition: width 80ms linear;
}

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 4.5vw, 76px);
  color: var(--paper);
  background: rgba(11, 13, 14, 0.94);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

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

.brand-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink-soft);
  box-shadow: 0 0 0 3px rgba(214, 174, 103, 0.1);
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-wordmark {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand-wordmark strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-wordmark small,
.eyebrow,
.section-kicker,
.product-meta,
.contact-detail span,
.hero-media-label span,
.hero-caption,
.footer-center {
  font-family: var(--utility-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-wordmark small {
  margin-top: 3px;
  color: var(--gold);
  font-size: 9px;
  direction: ltr;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  margin-inline: auto;
  color: rgba(244, 239, 231, 0.68);
  font-size: 13px;
}

.desktop-nav a,
.header-phone,
.mobile-menu a,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.header-phone:hover,
.header-phone:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-bright);
}

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

.header-phone {
  color: var(--gold-bright);
  font-family: var(--utility-font);
  font-size: 12px;
  direction: ltr;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 38px;
  padding: 8px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  inset: 77px 20px auto;
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(214, 174, 103, 0.28);
  background: rgba(19, 23, 24, 0.98);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 11px 14px;
  color: rgba(244, 239, 231, 0.78);
  border-bottom: 1px solid rgba(244, 239, 231, 0.08);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  padding: 52px clamp(20px, 4.5vw, 76px) 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 74% 22%, rgba(216, 174, 103, 0.18), transparent 24%),
    radial-gradient(circle at 12% 75%, rgba(185, 47, 56, 0.18), transparent 28%),
    var(--ink);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 90px;
  left: -150px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(214, 174, 103, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(214, 174, 103, 0.035), 0 0 0 58px rgba(214, 174, 103, 0.035);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(40px, 7vw, 118px);
  max-width: 1380px;
  min-height: 650px;
  margin: 0 auto;
}

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

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 10px;
  line-height: 1.3;
}

.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section h2,
.contact-section h2,
.quote-modal h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(46px, 6.3vw, 94px);
}

.hero h1 em,
.section h2 span,
.contact-section h2 span,
.quote-modal h2 span {
  color: var(--gold-bright);
  font-style: normal;
}

.hero-description {
  max-width: 550px;
  margin: 30px 0 0;
  color: rgba(244, 239, 231, 0.72);
  font-size: 16px;
  line-height: 2;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 11px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms var(--ease-out), background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button span {
  font-family: var(--utility-font);
  font-size: 16px;
  line-height: 1;
}

.button-gold {
  color: var(--ink);
  background: var(--gold-bright);
  box-shadow: 8px 8px 0 rgba(185, 47, 56, 0.34);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #ffe09d;
  box-shadow: 5px 5px 0 rgba(185, 47, 56, 0.45);
}

.button-ghost {
  color: var(--paper);
  background: transparent;
  border-color: rgba(244, 239, 231, 0.32);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  background: rgba(214, 174, 103, 0.11);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--red);
}

.button-outline-light {
  color: var(--paper);
  background: transparent;
  border-color: rgba(244, 239, 231, 0.32);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--ink);
  border-color: var(--gold-bright);
  background: var(--gold-bright);
}

.button-full {
  width: 100%;
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 620px;
  margin-top: 56px;
  padding-top: 19px;
  border-top: 1px solid var(--line-light);
}

.hero-proof > div {
  display: grid;
  gap: 1px;
}

.hero-proof strong {
  color: var(--gold-bright);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-proof span {
  color: rgba(244, 239, 231, 0.5);
  font-size: 11px;
}

.hero-proof > a {
  margin-inline-start: auto;
  color: rgba(244, 239, 231, 0.5);
  direction: ltr;
  font-family: var(--utility-font);
  font-size: 10px;
  transition: color 180ms ease;
}

.hero-proof > a:hover,
.hero-proof > a:focus-visible {
  color: var(--gold-bright);
}

.hero-media {
  width: min(100%, 540px);
  justify-self: start;
}

.hero-frame {
  position: relative;
  aspect-ratio: 0.79;
  overflow: hidden;
  border: 1px solid rgba(214, 174, 103, 0.6);
  background: #211b15;
  box-shadow: 20px 20px 0 rgba(185, 47, 56, 0.29);
}

.hero-frame::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 239, 231, 0.36);
  content: "";
  pointer-events: none;
}

.hero-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.02);
  transition: transform 900ms var(--ease-out);
}

.hero-frame:hover > img {
  transform: scale(1.08);
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 14, 0.02) 35%, rgba(11, 13, 14, 0.86) 100%);
}

.hero-media-label {
  position: absolute;
  right: 36px;
  bottom: 32px;
  display: grid;
  gap: 2px;
  z-index: 1;
}

.hero-media-label span {
  color: var(--gold-bright);
  font-size: 9px;
}

.hero-media-label strong {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-stamp {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(11, 13, 14, 0.58);
  transform: rotate(-12deg);
}

.hero-stamp span {
  margin-top: 10px;
  font-family: var(--utility-font);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.hero-stamp b {
  margin-top: -13px;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.hero-caption {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 19px;
  color: rgba(244, 239, 231, 0.52);
  font-size: 9px;
}

.caption-line {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--red-bright);
}

.hero-ticker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1380px;
  min-height: 72px;
  margin: 30px auto 0;
  padding: 0 2px;
  color: var(--gold-bright);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
}

.hero-ticker i {
  color: var(--red-bright);
  font-style: normal;
  font-size: 14px;
}

.section {
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 4.5vw, 76px);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: start;
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 10px;
}

.section h2,
.contact-section h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.section-intro > p:not(.section-kicker),
.field-copy > p:not(.section-kicker),
.instagram-intro > p:not(.section-kicker) {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(11, 13, 14, 0.66);
  font-size: 15px;
  line-height: 2.1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, gap 180ms var(--ease-out);
}

.text-link:hover,
.text-link:focus-visible {
  gap: 20px;
  color: var(--red);
}

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

.trust-card {
  position: relative;
  min-height: 340px;
  padding: 26px 24px;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.trust-card:hover {
  transform: translateY(-7px);
  box-shadow: 10px 12px 0 rgba(11, 13, 14, 0.11);
}

.trust-card-dark {
  color: var(--paper);
  background: var(--ink);
}

.trust-card-gold {
  color: var(--ink);
  background: var(--gold);
}

.trust-card-red {
  color: var(--paper);
  background: var(--red);
}

.card-index {
  display: block;
  color: currentColor;
  font-family: var(--utility-font);
  font-size: 11px;
  opacity: 0.56;
  direction: ltr;
}

.card-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  margin: 44px 0 31px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.86;
}

.icon-route span {
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-route span:nth-child(1) { inset: 14px auto auto 13px; }
.icon-route span:nth-child(2) { inset: 29px auto auto 29px; }
.icon-route span:nth-child(3) { inset: auto 12px 12px auto; }

.icon-route::after {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 23px;
  height: 18px;
  border-bottom: 1px dashed currentColor;
  border-right: 1px dashed currentColor;
  content: "";
  transform: skewY(-28deg);
}

.icon-stack span {
  position: absolute;
  right: 12px;
  left: 12px;
  height: 8px;
  border: 1px solid currentColor;
  transform: skewX(-22deg);
}

.icon-stack span:nth-child(1) { top: 15px; }
.icon-stack span:nth-child(2) { top: 25px; }
.icon-stack span:nth-child(3) { top: 35px; }

.icon-box span {
  position: absolute;
  display: block;
  border: 1px solid currentColor;
  transform: rotate(28deg) skewX(-10deg);
}

.icon-box span:first-child { width: 21px; height: 21px; top: 15px; right: 15px; }
.icon-box span:last-child { width: 13px; height: 13px; bottom: 11px; left: 13px; }

.trust-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.trust-card p {
  max-width: 205px;
  margin: 15px 0 0;
  color: currentColor;
  font-size: 12px;
  line-height: 1.9;
  opacity: 0.67;
}

.card-arrow {
  position: absolute;
  right: 23px;
  bottom: 21px;
  font-family: var(--utility-font);
  font-size: 22px;
}

.stock-section {
  max-width: none;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.stock-section > * {
  max-width: 1228px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2 {
  max-width: 580px;
}

.section-heading h2 span {
  color: var(--red);
}

.heading-note {
  max-width: 270px;
  margin: 0 0 5px;
  color: rgba(11, 13, 14, 0.55);
  font-size: 12px;
  line-height: 1.9;
}

.stock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  padding: 7px 14px;
  color: rgba(11, 13, 14, 0.6);
  background: transparent;
  border: 1px solid rgba(11, 13, 14, 0.16);
  font-size: 12px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.result-count {
  color: var(--red);
  font-family: var(--utility-font);
  font-size: 10px;
}

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

.product-card {
  padding: 12px 12px 20px;
  background: var(--cream);
  border: 1px solid rgba(11, 13, 14, 0.08);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 rgba(11, 13, 14, 0.09);
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--wood);
}

.product-card-wide {
  grid-column: span 1;
}

.product-card-wide .product-image {
  height: 350px;
}

.product-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 14, 0.02), rgba(11, 13, 14, 0.32));
  content: "";
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 550ms var(--ease-out);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.image-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 3px 9px;
  color: var(--ink);
  background: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
}

.image-badge-red {
  color: var(--paper);
  background: var(--red);
}

.image-badge-green {
  color: var(--paper);
  background: var(--moss);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 17px;
  color: var(--red);
  font-size: 9px;
}

.product-card h3 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.product-card p {
  min-height: 54px;
  margin: 7px 0 0;
  color: rgba(11, 13, 14, 0.58);
  font-size: 12px;
  line-height: 1.9;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 0 0 4px;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, gap 180ms var(--ease-out), border-color 180ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  gap: 20px;
  color: var(--red);
  border-color: var(--red);
}

.field-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 145px);
  align-items: center;
  max-width: none;
  color: var(--paper);
  background: var(--ink-soft);
}

.field-section > * {
  max-width: 585px;
}

.field-image {
  position: relative;
  width: min(100%, 530px);
  justify-self: end;
}

.field-image::before {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(214, 174, 103, 0.36);
  content: "";
}

.field-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.73;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(0.78) contrast(1.08);
}

.field-image-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 15px 17px;
  color: var(--ink);
  background: var(--gold-bright);
}

.field-image-note span {
  font-family: var(--utility-font);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.field-image-note strong {
  font-size: 17px;
  line-height: 1.35;
}

.field-copy {
  justify-self: start;
}

.field-copy .section-kicker,
.instagram-intro .section-kicker,
.contact-copy .section-kicker {
  color: var(--gold);
}

.field-copy h2 {
  color: var(--paper);
}

.field-copy h2 span {
  color: var(--gold-bright);
}

.field-copy > p:not(.section-kicker) {
  color: rgba(244, 239, 231, 0.63);
}

.material-list {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.material-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--line-light);
}

.material-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--utility-font);
  font-size: 10px;
}

.material-list strong {
  font-size: 13px;
}

.material-list small {
  color: rgba(244, 239, 231, 0.48);
  font-size: 11px;
}

.instagram-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 125px);
  align-items: center;
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 45px;
}

.instagram-profile img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.instagram-profile div {
  display: grid;
  gap: 1px;
}

.instagram-profile strong {
  font-family: var(--utility-font);
  font-size: 11px;
  direction: ltr;
}

.instagram-profile span {
  color: var(--red);
  font-size: 11px;
}

.instagram-intro .button {
  margin-top: 30px;
}

.instagram-feed {
  display: grid;
  grid-template-columns: 1.26fr 1fr 1fr;
  grid-template-rows: 1fr 0.74fr;
  gap: 10px;
  min-height: 570px;
}

.feed-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: var(--ink);
}

.feed-tile-large {
  grid-row: span 2;
}

.feed-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), filter 600ms ease;
}

.feed-tile:hover img,
.feed-tile:focus-visible img {
  filter: saturate(1.1);
  transform: scale(1.07);
}

.feed-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(11, 13, 14, 0.82));
  content: "";
  pointer-events: none;
}

.feed-tile > span:not(.feed-mark) {
  position: absolute;
  right: 15px;
  bottom: 12px;
  z-index: 1;
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
}

.feed-tile-accent {
  display: grid;
  align-content: space-between;
  padding: 20px;
  color: var(--paper);
  background: var(--red);
}

.feed-tile-accent::after {
  display: none;
}

.feed-tile-accent strong {
  margin-top: 48px;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.feed-tile-accent small {
  font-family: var(--utility-font);
  font-size: 9px;
  direction: ltr;
}

.feed-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 60px;
  max-width: none;
  padding: clamp(72px, 8vw, 118px) clamp(20px, 13vw, 220px);
  color: var(--paper);
  background:
    radial-gradient(circle at 8% 32%, rgba(214, 174, 103, 0.16), transparent 22%),
    var(--ink);
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(214, 174, 103, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-section::before { top: -250px; right: -100px; box-shadow: 0 0 0 27px rgba(214, 174, 103, 0.03), 0 0 0 54px rgba(214, 174, 103, 0.03); }
.contact-section::after { bottom: -235px; left: -135px; }

.contact-grain {
  position: absolute;
  top: 20%;
  right: 46%;
  width: 1px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(214, 174, 103, 0.4), transparent);
  transform: rotate(24deg);
  opacity: 0.35;
}

.contact-copy,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  max-width: 690px;
  font-size: clamp(42px, 5.7vw, 86px);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(244, 239, 231, 0.63);
  font-size: 15px;
  line-height: 2;
}

.contact-details {
  align-self: end;
  display: grid;
  gap: 25px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line-light);
}

.contact-detail {
  display: grid;
  gap: 4px;
}

.contact-detail span {
  color: var(--gold);
  font-size: 9px;
}

.contact-detail a,
.contact-detail strong {
  color: var(--paper);
  font-size: 16px;
  font-weight: 600;
}

.contact-detail a {
  direction: ltr;
  text-align: right;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 16px clamp(20px, 4.5vw, 76px);
  color: rgba(244, 239, 231, 0.48);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  font-size: 11px;
}

.footer-center {
  color: var(--gold);
  font-size: 9px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  padding: 22px;
  place-items: center;
  background: rgba(11, 13, 14, 0.8);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.quote-modal {
  position: relative;
  width: min(100%, 530px);
  max-height: min(740px, calc(100vh - 44px));
  padding: clamp(28px, 5vw, 48px);
  overflow-y: auto;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 15px 15px 0 var(--red);
}

.quote-modal .section-kicker {
  margin-bottom: 15px;
}

.quote-modal h2 {
  font-size: clamp(34px, 5vw, 54px);
}

.modal-lede {
  max-width: 390px;
  margin: 16px 0 25px;
  color: rgba(11, 13, 14, 0.62);
  font-size: 13px;
  line-height: 1.9;
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.quote-modal form {
  display: grid;
  gap: 14px;
}

.quote-modal label {
  display: grid;
  gap: 5px;
  color: rgba(11, 13, 14, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.quote-modal input,
.quote-modal select,
.quote-modal textarea {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(11, 13, 14, 0.18);
  border-radius: 0;
  outline: 0;
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote-modal textarea {
  resize: vertical;
}

.quote-modal input:focus,
.quote-modal select:focus,
.quote-modal textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(185, 47, 56, 0.13);
}

.form-note {
  margin: 16px 0 0;
  color: rgba(11, 13, 14, 0.44);
  font-size: 10px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  max-width: min(360px, calc(100vw - 40px));
  padding: 13px 17px;
  color: var(--ink);
  background: var(--gold-bright);
  box-shadow: 7px 7px 0 rgba(185, 47, 56, 0.45);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 200ms ease, transform 200ms var(--ease-out);
}

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

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

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

.js .reveal-delay-1 { transition-delay: 90ms; }
.js .reveal-delay-2 { transition-delay: 160ms; }
.js .reveal-delay-3 { transition-delay: 230ms; }

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 72px);
  }

  .trust-section,
  .instagram-section {
    gap: 50px;
  }

  .trust-grid {
    gap: 8px;
  }

  .trust-card {
    padding-inline: 18px;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    inset-block-start: 69px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid,
  .trust-section,
  .field-section,
  .instagram-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 66px;
    min-height: auto;
  }

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

  .hero-media {
    width: min(82%, 500px);
    justify-self: start;
    margin-inline-start: 8%;
  }

  .trust-section {
    gap: 45px;
  }

  .trust-grid {
    gap: 12px;
  }

  .field-section {
    gap: 68px;
  }

  .field-image,
  .field-copy {
    justify-self: start;
  }

  .field-image {
    width: min(82%, 520px);
  }

  .instagram-feed {
    min-height: 530px;
  }

  .contact-section {
    gap: 55px;
  }

  .contact-details {
    width: min(100%, 460px);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 17px;
  }

  .brand-wordmark strong {
    font-size: 13px;
  }

  .hero,
  .section {
    padding-inline: 17px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-description {
    margin-top: 22px;
    font-size: 14px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 15px;
    margin-top: 42px;
  }

  .hero-proof > a {
    width: 100%;
    margin-inline-start: 0;
  }

  .hero-media {
    width: 91%;
    margin-inline-start: 0;
  }

  .hero-frame {
    box-shadow: 11px 11px 0 rgba(185, 47, 56, 0.29);
  }

  .hero-stamp {
    top: 25px;
    left: 25px;
    width: 70px;
    height: 70px;
  }

  .hero-media-label {
    right: 27px;
    bottom: 27px;
  }

  .hero-media-label strong {
    font-size: 22px;
  }

  .hero-ticker {
    gap: 14px;
    min-height: 59px;
    margin-top: 26px;
    font-size: 10px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section h2,
  .contact-section h2 {
    font-size: clamp(38px, 12vw, 55px);
  }

  .trust-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 270px;
  }

  .card-icon {
    margin-top: 30px;
    margin-bottom: 22px;
  }

  .section-heading,
  .stock-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .stock-toolbar {
    gap: 15px;
    margin-top: 35px !important;
  }

  .filter-group {
    gap: 6px;
  }

  .filter-button {
    padding-inline: 11px;
    font-size: 11px;
  }

  .result-count {
    align-self: end;
  }

  .product-card-wide {
    grid-column: auto;
  }

  .product-image,
  .product-card-wide .product-image {
    height: min(112vw, 440px);
  }

  .field-image {
    width: 89%;
  }

  .field-image::before {
    inset: 12px -12px -12px 12px;
  }

  .instagram-profile {
    margin-bottom: 35px;
  }

  .instagram-feed {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.1fr 0.78fr 0.78fr;
    min-height: 680px;
  }

  .feed-tile-large {
    grid-row: span 2;
  }

  .feed-tile-accent {
    grid-column: span 2;
    min-height: 170px;
  }

  .feed-tile-accent strong {
    margin-top: 12px;
    font-size: 19px;
  }

  .contact-section {
    padding-inline: 17px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 8px;
    padding-inline: 17px;
  }

  .footer-center {
    order: 3;
  }

  .quote-modal {
    box-shadow: 8px 8px 0 var(--red);
  }
}

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

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
