:root {
  --ink: #100e0c;
  --charcoal: #1a1612;
  --espresso: #2a241c;
  --gold: #c4a35a;
  --gold-soft: #d4b56a;
  --gold-dim: rgba(196, 163, 90, 0.22);
  --cream: #f4efe6;
  --paper: #fbf8f2;
  --sand: #e8dfd0;
  --text: #2a241c;
  --muted: #6b6258;
  --line: rgba(42, 36, 28, 0.12);
  --turmeric: #c4922a;
  --pepper: #3d342c;
  --cardamom: #5a6d4a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --nav-h: 84px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(16, 14, 12, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  scroll-padding-top: calc(var(--nav-h) + var(--safe-top) + 12px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: var(--espresso);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 3.25rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.about__copy h2,
.contact__info h2,
.cta h2,
.nature h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(251, 248, 242, 0.45);
  color: var(--paper);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn--line {
  border-color: var(--espresso);
  color: var(--espresso);
  background: transparent;
}

.btn--line:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}

.text-link:hover::after {
  width: 36px;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  width: min(280px, 70vw);
  height: auto;
  margin-inline: auto;
  animation: rise 1s var(--ease) both;
}

.loader__name {
  margin: 1rem 0 1.2rem;
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  animation: rise 1s 0.15s var(--ease) both;
}

.loader__line {
  display: block;
  width: 80px;
  height: 1px;
  margin-inline: auto;
  background: var(--gold);
  transform-origin: left;
  animation: draw 1.1s 0.25s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes draw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes heroMedia {
  from {
    opacity: 0.72;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-solid {
  background: rgba(16, 14, 12, 0.94);
  border-bottom-color: rgba(196, 163, 90, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.nav__bar {
  width: min(1180px, calc(100% - 2rem));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
  max-width: 100%;
}

.nav__brand {
  min-width: 0;
  flex: 0 1 auto;
}

.nav__brand img {
  height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}

.nav__drop-wrap {
  position: relative;
}

.nav__drop {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  min-width: 210px;
  padding: 0.55rem 0;
  background: var(--ink);
  border: 1px solid rgba(196, 163, 90, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 5;
}

.nav__drop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav__drop-wrap:hover .nav__drop,
.nav__drop-wrap:focus-within .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav__drop a {
  display: block;
  padding: 0.55rem 1.15rem;
  color: rgba(251, 248, 242, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav__drop a:hover,
.nav__drop a.is-active {
  color: var(--gold);
}

.nav__link {
  position: relative;
  color: rgba(251, 248, 242, 0.78);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--paper);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--paper);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding:
    calc(var(--nav-h) + var(--safe-top) + 1rem)
    max(1.25rem, var(--safe-right))
    max(1.25rem, var(--safe-bottom))
    max(1.25rem, var(--safe-left));
  background: rgba(16, 14, 12, 0.98);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.mobile-menu__nav > a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  line-height: 1.15;
  color: var(--paper);
  touch-action: manipulation;
}

.mobile-menu__nav > a:hover {
  color: var(--gold);
}

.mobile-menu__group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mobile-menu__sub {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mobile-menu__sub a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  touch-action: manipulation;
}

.mobile-menu__cta {
  width: 100%;
  max-width: 420px;
  margin: 1rem auto 0;
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
  max-width: 100%;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroMedia 0.8s 0.12s var(--ease) both;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.28) 0%, rgba(16, 14, 12, 0.55) 45%, rgba(16, 14, 12, 0.88) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(16, 14, 12, 0.4) 100%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 30%, rgba(196, 163, 90, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 78% 22%, rgba(251, 248, 242, 0.25), transparent),
    radial-gradient(1px 1px at 64% 68%, rgba(196, 163, 90, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 28% 72%, rgba(251, 248, 242, 0.18), transparent);
  animation: drift 18s linear infinite;
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-28px);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 7rem;
  min-width: 0;
  max-width: 100%;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 500;
  max-width: min(14ch, 100%);
  margin-bottom: 1rem;
}

.hero__lead {
  max-width: min(36rem, 100%);
  color: rgba(251, 248, 242, 0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s var(--ease) forwards;
}

.hero__reveal:nth-child(1) {
  animation-delay: 0.18s;
}
.hero__reveal:nth-child(2) {
  animation-delay: 0.34s;
}
.hero__reveal:nth-child(3) {
  animation-delay: 0.5s;
}
.hero__reveal:nth-child(4) {
  animation-delay: 0.64s;
}

.hero__scroll {
  position: absolute;
  right: 8%;
  bottom: 2.2rem;
  z-index: 1;
  color: rgba(251, 248, 242, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll span {
  display: inline-block;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.4;
    transform: translateY(6px);
  }
}

/* About */
.about {
  padding: 7.5rem 0 6rem;
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about__grid > *,
.contact__grid > *,
.footer__grid > *,
.product-detail__grid > *,
.products__grid > *,
.why__grid > * {
  min-width: 0;
}

.about__visual {
  position: relative;
}

.about__visual > img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  left: -1.2rem;
  bottom: -1.2rem;
  width: 180px;
  background: var(--ink);
  padding: 0.6rem;
  box-shadow: var(--shadow);
}

.about__badge img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about__copy p {
  color: var(--muted);
}

.about__points {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about__points h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.about__points p {
  font-size: 0.95rem;
}

/* Products */
.products {
  padding: 6.5rem 0;
  background:
    linear-gradient(180deg, #efe8da 0%, var(--cream) 100%);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
  color: inherit;
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s;
}

.product-card--turmeric::after,
.product-card--pepper::after,
.product-card--cardamom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
}

.product-card--turmeric::after {
  background: var(--turmeric);
}
.product-card--pepper::after {
  background: var(--pepper);
}
.product-card--cardamom::after {
  background: var(--cardamom);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-card:hover::before {
  border-color: var(--gold);
}

.product-card__media {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
}

.product-card:hover .text-link::after {
  width: 36px;
}

.product-card__no {
  position: absolute;
  left: 1.1rem;
  bottom: 0.8rem;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--paper);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.product-card__body {
  padding: 1.5rem 1.4rem 1.7rem;
}

.product-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.45rem;
}

.product-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

/* Why */
.why {
  padding: 6.5rem 0;
  background: var(--paper);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  padding: 1.8rem 1.5rem 1.7rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(16, 14, 12, 0.08);
}

.why-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  font-size: 1.35rem;
}

.why-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Nature */
.nature {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--paper);
  isolation: isolate;
}

.nature__media {
  position: absolute;
  inset: 0;
}

.nature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.55), rgba(16, 14, 12, 0.72));
}

.nature__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2.5rem));
  padding: 6rem 0;
}

.nature h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.nature p:last-of-type {
  color: rgba(251, 248, 242, 0.78);
}

/* Enquiry path */
.enquire-path {
  padding: 6.5rem 0;
  background: var(--cream);
}

.path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  counter-reset: none;
  position: relative;
}

.path::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.path__step {
  position: relative;
  padding-top: 2.6rem;
}

.path__step span {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  background: var(--cream);
  padding-right: 0.8rem;
}

.path__step h3 {
  font-size: 1.5rem;
  margin: 0.4rem 0 0.5rem;
}

.path__step p {
  color: var(--muted);
}

/* Gallery */
.gallery {
  padding: 6.5rem 0;
  background: var(--paper);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.85rem;
}

.gallery__item {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--espresso);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transform-origin: center center;
  clip-path: inset(0 48% 0 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__item:nth-child(4n + 1) img {
  transform: scale(0.97) translateY(14px);
  clip-path: inset(0 52% 0 0);
}

.gallery__item:nth-child(4n + 2) img {
  transform: scale(0.97) translateY(18px);
  clip-path: inset(0 0 48% 0);
}

.gallery__item:nth-child(4n + 3) img {
  transform: scale(0.97) translateX(14px);
  clip-path: inset(0 0 0 52%);
}

.gallery__item:nth-child(4n + 4) img {
  transform: scale(0.96) translateY(-12px);
  clip-path: inset(42% 0 0 0);
}

.gallery__grid.is-inview .gallery__item img {
  opacity: 1;
  transform: scale(1) translate(0, 0);
  clip-path: inset(0);
}

.gallery__grid.is-inview .gallery__item:nth-child(1) img { transition-delay: 0.05s; }
.gallery__grid.is-inview .gallery__item:nth-child(2) img { transition-delay: 0.2s; }
.gallery__grid.is-inview .gallery__item:nth-child(3) img { transition-delay: 0.12s; }
.gallery__grid.is-inview .gallery__item:nth-child(4) img { transition-delay: 0.3s; }
.gallery__grid.is-inview .gallery__item:nth-child(5) img { transition-delay: 0.18s; }
.gallery__grid.is-inview .gallery__item:nth-child(6) img { transition-delay: 0.36s; }
.gallery__grid.is-inview .gallery__item:nth-child(7) img { transition-delay: 0.24s; }
.gallery__grid.is-inview .gallery__item:nth-child(8) img { transition-delay: 0.42s; }
.gallery__grid.is-inview .gallery__item:nth-child(9) img { transition-delay: 0.28s; }
.gallery__grid.is-inview .gallery__item:nth-child(10) img { transition-delay: 0.4s; }
.gallery__grid.is-inview .gallery__item:nth-child(11) img { transition-delay: 0.34s; }

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0) 48%, rgba(16, 14, 12, 0.28) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery__grid.is-inview .gallery__item:hover img {
  transform: scale(1.06);
  transition-delay: 0s;
}

.gallery__grid.is-inview .gallery__item:hover::after {
  opacity: 1;
}

.gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

/* CTA */
.cta {
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse at top, rgba(196, 163, 90, 0.14), transparent 55%),
    var(--ink);
  color: var(--paper);
  text-align: center;
}

.cta__inner {
  max-width: 720px;
  margin-inline: auto;
}

.cta p {
  color: rgba(251, 248, 242, 0.72);
  margin-bottom: 1.8rem;
}

.cta__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  max-width: 820px;
  margin: 2.4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.18);
  text-align: left;
  list-style: none;
}

.cta__contacts span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta__who {
  margin: 0 0 0.12rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--paper);
}

.cta__contacts a,
.cta__contacts address {
  color: rgba(251, 248, 242, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cta__contacts a:hover {
  color: var(--gold);
}

@media (max-width: 860px) {
  .cta__contacts {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 420px;
  }
}

/* Contact */
.contact {
  padding: 6.5rem 0 7rem;
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3.5rem;
  align-items: start;
}

.contact__intro {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact__list {
  display: grid;
  gap: 1.4rem;
}

.contact__list span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__who {
  margin: 0 0 0.12rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--espresso);
}

.contact__list a,
.contact__list address {
  font-size: 1.02rem;
}

.contact__list a:hover {
  color: var(--gold);
}

.contact__wa {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold) !important;
}

.contact__qr {
  margin: 2rem 0 0;
  width: 160px;
}

.contact__qr img {
  background: #fff;
  padding: 0.4rem;
}

.contact__qr figcaption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.contact__form-wrap {
  background: var(--paper);
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
}

.enquiry h3 {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}

.field {
  margin-bottom: 1rem;
  min-width: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
  outline: none;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.16);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-status {
  min-height: 1.2em;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--cardamom);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #a35a4a;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(251, 248, 242, 0.72);
  padding-top: 3.4rem;
  border-top: 1px solid rgba(196, 163, 90, 0.16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.75fr 1.2fr;
  gap: 2.4rem 2.2rem;
  align-items: start;
  padding-bottom: 2.6rem;
}

.footer__brand {
  text-align: center;
}

.footer__brand > img {
  width: 158px;
  height: auto;
  margin: 0 auto 0.85rem;
  mix-blend-mode: lighten;
}

.footer__person {
  display: inline-block;
  margin: 0 0 1.05rem;
  padding-bottom: 0.7rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(251, 248, 242, 0.94);
  position: relative;
}

.footer__person::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4.6rem;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.footer__blurb {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(251, 248, 242, 0.62);
}

.footer h3 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.35rem 0 1rem;
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links li + li {
  margin-top: 0.55rem;
}

.footer__links a {
  color: rgba(251, 248, 242, 0.78);
}

.footer__panel {
  min-width: 0;
}

.footer__identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0.1rem 0 0.78rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.28);
}

.footer__identity-logo {
  display: block;
  width: auto;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.footer__identity-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
  min-width: 0;
}

.footer__identity .footer__who {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.2;
}

.footer__identity-phone {
  color: rgba(251, 248, 242, 0.86);
  font-size: 0.92rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer__who,
.footer__row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(196, 163, 90, 0.28);
}

.footer__who {
  padding-top: 0.1rem;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fbf8f2;
}

.footer__row {
  color: rgba(251, 248, 242, 0.86);
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: break-word;
  word-break: normal;
  transition: color 0.35s var(--ease);
}

.footer__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.footer__who-mark,
.footer__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #0c0a08;
  color: var(--gold);
}

.footer__who-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.footer__icon svg {
  width: 16px;
  height: 16px;
  margin: 0;
}

.footer__row:hover {
  color: var(--gold);
}

.footer a:hover {
  color: var(--gold);
}

.footer__base {
  border-top: 1px solid rgba(196, 163, 90, 0.16);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.82rem;
}

.footer__credit {
  margin-top: 0.45rem;
  color: rgba(244, 236, 220, 0.62);
}

.footer__credit a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.footer__credit a:hover {
  color: #e8c97a;
}

/* Modal */
.modal[hidden],
.lightbox[hidden],
.mobile-menu[hidden] {
  display: none;
}

.modal:not([hidden]) {
  display: block;
}

.modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(16, 14, 12, 0.72);
}

.modal__dialog {
  position: fixed;
  z-index: 91;
  top: 50%;
  left: 50%;
  width: min(920px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  z-index: 2;
  border: 0;
  background: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--espresso);
}

.modal__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.modal__body {
  padding: 2.4rem 2rem;
}

.spec {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 1.8rem;
}

.spec div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.6rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.spec dd {
  margin: 0;
}

.spec dt {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(10, 8, 6, 0.92);
  animation: galleryLightboxIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox img {
  max-width: min(1100px, 88vw);
  max-height: 86vh;
  object-fit: contain;
  animation: galleryLightboxImg 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes galleryLightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes galleryLightboxImg {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  background: none;
  color: var(--paper);
  cursor: pointer;
}

.lightbox__close {
  top: 1rem;
  right: 1.2rem;
  font-size: 2.4rem;
}

.lightbox__nav {
  top: 50%;
  font-size: 3rem;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 1rem;
}
.lightbox__nav--next {
  right: 1rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.product-card.reveal,
.why-card.reveal {
  transition: opacity 0.7s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.4s var(--ease);
}

.gallery__item.reveal {
  opacity: 1;
  transform: none;
}

.footer,
.footer .footer__grid > *,
.footer .footer__base {
  opacity: 1 !important;
  transform: none !important;
}

.about__copy.reveal {
  transition-delay: 0.1s;
}

.contact__form-wrap.reveal {
  transition-delay: 0.12s;
}

.products__grid > .reveal:nth-child(1),
.why__grid > .reveal:nth-child(1),
.path > .reveal:nth-child(1) {
  transition-delay: 0.04s;
}

.products__grid > .reveal:nth-child(2),
.why__grid > .reveal:nth-child(2),
.path > .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.products__grid > .reveal:nth-child(3),
.why__grid > .reveal:nth-child(3),
.path > .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.why__grid > .reveal:nth-child(4) {
  transition-delay: 0.08s;
}

.why__grid > .reveal:nth-child(5) {
  transition-delay: 0.16s;
}

.why__grid > .reveal:nth-child(6) {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1024px) {
  .about__grid,
  .contact__grid,
  .products__grid,
  .why__grid,
  .path {
    grid-template-columns: 1fr 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-card__media {
    height: 100%;
    min-height: 260px;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .path {
    grid-template-columns: 1fr;
  }

  .path::before {
    display: none;
  }


  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .about__visual > img {
    height: 480px;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__drop {
    display: none;
  }

  .nav__brand {
    max-width: calc(100% - 52px);
  }

  .nav__brand img {
    max-width: 100%;
    height: auto;
    max-height: 48px;
  }

  .section-head.reveal.is-visible > h2,
  .about__copy.reveal.is-visible > h2,
  .contact__info.reveal.is-visible > h2,
  .cta .reveal.is-visible > h2,
  .product-detail .reveal.is-visible > h2 {
    animation: none;
    clip-path: none;
  }
}

@media (max-width: 860px) {
  .about__grid,
  .contact__grid,
  .product-card,
  .modal__dialog,
  .field-row {
    grid-template-columns: 1fr;
  }

  .footer__brand > img {
    width: 132px;
  }

  .about {
    padding: 5rem 0 4rem;
  }

  .about__badge {
    left: 0.75rem;
    bottom: 0.75rem;
    width: min(132px, 42vw);
  }

  .about__visual > img {
    height: 360px;
  }

  .hero__content {
    margin-bottom: 5.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
    max-width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .hero__particles {
    animation: none;
  }

  .wrap {
    width: min(1180px, calc(100% - 1.5rem));
  }

  .contact__form-wrap {
    padding: 1.5rem 1.2rem;
  }

  .modal__media img {
    min-height: 240px;
  }
}

@media (max-width: 980px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .why__grid,
  .footer__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    text-align: left;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(196, 163, 90, 0.16);
  }

  .footer__brand > img {
    margin-left: 0;
    margin-right: auto;
  }

  .footer__person::after {
    left: 0;
    transform: none;
  }

  .gallery__item,
  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    flex: none;
  }

  .nav__brand img {
    height: 44px;
  }

  .products,
  .why,
  .gallery,
  .enquire-path,
  .contact {
    padding: 4.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero__reveal,
  .page-hero .wrap,
  .hero__media img,
  .page-hero__media img,
  .footer.reveal .footer__grid > *,
  .footer.reveal .footer__base,
  .gallery__item img,
  .gallery-preview__more,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .reveal.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0) !important;
  }
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  align-items: end;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
  max-width: 100%;
  padding: calc(var(--nav-h) + 3.5rem) 0 4rem;
}

.page-hero__media,
.page-hero__veil {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  overflow: hidden;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroMedia 0.8s var(--ease) both;
}

.page-hero__veil {
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.35) 0%, rgba(16, 14, 12, 0.78) 100%);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  animation: pageIn 0.65s 0.08s var(--ease) both;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: min(16ch, 100%);
  margin-bottom: 0.4rem;
  overflow-wrap: break-word;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.62);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.section-foot {
  margin-top: 2.4rem;
}

.product-detail {
  padding: 5.5rem 0 4rem;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail__media {
  overflow: hidden;
}

.product-detail__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.product-detail .spec {
  margin-top: 1.6rem;
}

.related {
  padding: 0 0 6rem;
}

.related .products__grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
}

.map-block {
  padding: 0 0 6.5rem;
}

.map-block iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.gallery-preview__more {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s var(--ease);
}

.gallery-preview__more::after {
  content: none;
}

.gallery__grid.is-inview .gallery-preview__more {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

.gallery-preview__more:hover {
  color: var(--paper);
}

@media (max-width: 1024px) {
  .product-detail__grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail__media img {
    height: 420px;
  }
}

@media (max-width: 860px) {
  .nav__drop {
    display: none;
  }

  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 38vh;
    padding-bottom: 3rem;
  }
}

.page-hero .wrap > p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(251, 248, 242, 0.75);
}

.gallery-preview__more {
  cursor: pointer;
}

@media (max-width: 640px) {
  .related .products__grid {
    grid-template-columns: 1fr;
  }
}

/* Premium micro-interactions (do not alter gallery cinematic styles) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  height: 2px;
  pointer-events: none;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

html.is-leaving main {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.nav.is-compact {
  height: 76px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.nav.is-compact .nav__brand img {
  height: 48px;
}

.nav__brand img {
  transition: height 0.35s var(--ease);
}

.nav__link::after {
  transition: transform 0.4s var(--ease);
}

.reveal.reveal-left {
  transform: translateX(-22px);
}

.reveal.reveal-right {
  transform: translateX(22px);
}

.reveal.reveal-scale {
  transform: scale(0.97);
}

.reveal.reveal-left.is-visible,
.reveal.reveal-right.is-visible,
.reveal.reveal-scale.is-visible {
  transform: none;
}

.section-head.reveal.is-visible > h2,
.about__copy.reveal.is-visible > h2,
.contact__info.reveal.is-visible > h2,
.cta .reveal.is-visible > h2,
.product-detail .reveal.is-visible > h2 {
  animation: headingUnveil 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes headingUnveil {
  from {
    opacity: 0.35;
    transform: translateY(12px);
    clip-path: inset(0 0 88% 0);
  }
  to {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
  }
}

.about__visual.reveal > img {
  transform: scale(1.035);
  clip-path: inset(0 32% 0 0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__visual.reveal.is-visible > img {
  transform: scale(1);
  clip-path: inset(0);
}

.product-detail__media.reveal img {
  transform: scale(0.97) translateY(14px);
  clip-path: inset(0 0 28% 0);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-detail__media.reveal.is-visible img {
  transform: scale(1) translateY(0);
  clip-path: inset(0);
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 163, 90, 0.16), transparent 68%);
  animation: ctaDrift 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.cta .wrap {
  position: relative;
  z-index: 1;
}

@keyframes ctaDrift {
  0%,
  100% {
    opacity: 0.85;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 12px, 0);
  }
}

.contact__list li {
  transition: transform 0.35s var(--ease);
}

.contact__list li:hover {
  transform: translateY(-3px);
}

.form-status.is-ok {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.form-status.is-ok::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%235a6d4a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.2 6.2L4.8 8.7 9.8 3.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem;
  animation: statusPop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes statusPop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.footer a,
.footer__social,
.contact__list a,
.cta__contacts a {
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.footer__social:hover {
  transform: translateY(-2px);
}

.path::before {
  transform-origin: left center;
}

.path.reveal-line::before,
.enquire-path.is-inview .path::before {
  animation: draw 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 1024px) {
  .reveal.reveal-left:not(.is-visible),
  .reveal.reveal-right:not(.is-visible) {
    transform: translateY(20px);
  }
}

@media (max-width: 860px) {
  .nav.is-compact {
    height: var(--nav-h);
  }

  .nav.is-compact .nav__brand img {
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .cta::before,
  html.is-leaving main {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .form-status.is-ok::before,
  .section-head.reveal.is-visible > h2,
  .about__copy.reveal.is-visible > h2,
  .contact__info.reveal.is-visible > h2,
  .cta .reveal.is-visible > h2,
  .product-detail .reveal.is-visible > h2,
  .about__visual.reveal > img,
  .product-detail__media.reveal img {
    animation: none !important;
    clip-path: inset(0) !important;
    transform: none !important;
  }
}

/* Responsive quality — overflow, type, and touch only */
img,
iframe,
video {
  max-width: 100%;
}

.contact__list a,
.footer a,
.cta__contacts a,
.contact__list address,
.footer li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.spec div {
  min-width: 0;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

@media (hover: none) {
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card:hover .product-card__media img {
    transform: none;
  }

  .why-card:hover {
    transform: none;
    box-shadow: none;
  }

  .contact__list li:hover {
    transform: none;
  }

  .btn:hover,
  .nav__cta:hover,
  .footer__social:hover,
  .footer__row:hover {
    transform: none;
  }

  .gallery__grid.is-inview .gallery__item:hover img {
    transform: scale(1) translate(0, 0);
  }

  .gallery__grid.is-inview .gallery__item:hover::after {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .cta__contacts {
    grid-template-columns: 1fr 1fr;
  }

  .spec div {
    grid-template-columns: 6.5rem 1fr;
  }
}

@media (max-width: 860px) {
  .cta__contacts {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
    max-width: 100%;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .map-block iframe {
    min-height: 280px;
  }

  .lightbox img {
    max-width: 84vw;
    max-height: 72vh;
  }

  .lightbox__nav {
    font-size: 2.2rem;
  }

  .lightbox__nav--prev {
    left: 0.35rem;
  }

  .lightbox__nav--next {
    right: 0.35rem;
  }

  .btn {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .eyebrow {
    letter-spacing: 0.16em;
    max-width: 100%;
  }

  .wrap {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .spec div {
    grid-template-columns: 1fr;
    gap: 0.2rem 0.6rem;
  }

  .contact__form-wrap {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-h: 64px;
  }

  .nav {
    top: 0;
    height: calc(var(--nav-h) + var(--safe-top));
    padding-top: var(--safe-top);
    background: rgba(16, 14, 12, 0.96);
    border-bottom: 1px solid rgba(196, 163, 90, 0.22);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav__bar {
    width: 100%;
    height: var(--nav-h);
    padding-inline: max(1rem, var(--safe-left)) max(1rem, var(--safe-right));
    gap: 0.75rem;
  }

  .nav__brand img {
    height: 40px;
    max-height: 40px;
    max-width: 132px;
    width: auto;
  }

  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(251, 248, 242, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding-top: calc(var(--nav-h) + var(--safe-top));
    padding-bottom: max(1rem, var(--safe-bottom));
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(16, 14, 12, 0.62) 0%, rgba(16, 14, 12, 0.42) 40%, rgba(16, 14, 12, 0.62) 70%, rgba(16, 14, 12, 0.88) 100%),
      radial-gradient(ellipse at center, transparent 12%, rgba(16, 14, 12, 0.5) 100%);
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding:
      1rem
      max(1.25rem, var(--safe-right))
      max(1.25rem, calc(0.75rem + var(--safe-bottom)))
      max(1.25rem, var(--safe-left));
  }

  .hero h1 {
    font-size: clamp(2rem, 9.5vw, 2.85rem);
    line-height: 1.12;
    max-width: 16ch;
    margin-inline: auto;
    margin-bottom: 0.85rem;
  }

  .hero__lead {
    font-size: 0.96rem;
    line-height: 1.62;
    max-width: min(22rem, 100%);
    margin-inline: auto;
    margin-bottom: 1.35rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.7rem;
  }

  .page-hero {
    padding-top: calc(var(--nav-h) + var(--safe-top) + 2.5rem);
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 60px;
  }

  .nav__brand img {
    height: 36px;
    max-height: 36px;
    max-width: 118px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    max-width: 14ch;
  }

  .hero__content {
    padding-inline: max(1.1rem, var(--safe-left)) max(1.1rem, var(--safe-right));
  }

  .hero__lead {
    font-size: 0.9rem;
    max-width: min(20rem, 100%);
  }

  .hero__actions {
    max-width: 100%;
  }

  .mobile-menu__nav > a {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
}

@media (min-width: 1440px) {
  .wrap,
  .hero__content,
  .nav__bar {
    width: min(1240px, calc(100% - 4.5rem));
  }
}

@media (min-width: 1920px) {
  .wrap,
  .hero__content,
  .nav__bar {
    width: min(1280px, calc(100% - 6rem));
  }
}
