/* JainNexa International — pro trade website */
:root {
  --green-950: #03160f;
  --green-900: #0a2a1c;
  --green-800: #0f3d28;
  --green-700: #165c3a;
  --gold-500: #c9a24a;
  --gold-400: #d4b56a;
  --gold-200: #e8d7a8;
  --cream: #f6f2e8;
  --cream-soft: #fbf8f1;
  --ink: #13201a;
  --muted: #516359;
  --line: rgba(15, 61, 40, 0.14);
  --shadow: 0 28px 70px rgba(3, 22, 15, 0.28);
  --display: "Cormorant Garamond", Georgia, serif;
  --accent: "Syne", "Outfit", sans-serif;
  --body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 4.4rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; margin: 0; }
p { margin: 0; }

.eyebrow {
  font-family: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.25rem, 4vw, 3.5rem);
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: calc(var(--header) + 0.5rem);
}

.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.4rem);
}

.section-head h2,
.about__copy h2,
.quality__copy h2,
.reach__copy h2,
.serve__content h2,
.commitment h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.35rem);
  color: var(--green-900);
}

.section-head p { margin-top: 0.9rem; color: var(--muted); font-size: 1.05rem; }

.soon, .soon-inline { color: var(--muted); }
.soon em, .soon-inline {
  font-style: normal;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.1rem, 4vw, 2.8rem);
  transition: background 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(246, 242, 232, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.site-header.is-top:not(.is-scrolled) .brand-mark strong,
.site-header.is-top:not(.is-scrolled) .site-nav > a:not(.nav-cta),
.site-header.is-top:not(.is-scrolled) .nav-link {
  color: #f6f2e8;
}

.site-header.is-top:not(.is-scrolled) .brand-mark strong span,
.site-header.is-top:not(.is-scrolled) .brand-mark small {
  color: var(--gold-200);
}

.site-header.is-top:not(.is-scrolled) .nav-toggle span {
  background: #f6f2e8;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 0.35rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.brand-mark strong {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--green-800);
  line-height: 1;
}

.brand-mark strong span { color: var(--gold-500); }

.brand-mark small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-family: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

.site-nav > a,
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  background: none;
  border: 0;
  padding: 0.35rem 0;
  cursor: pointer;
  font-family: var(--body);
}

.site-nav > a:hover,
.nav-link:hover {
  color: var(--green-800);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
}

.nav-sub {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 15.5rem;
  padding: 0.55rem 0;
  background: #fffef9;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(3, 22, 15, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 80;
}

.nav-item:hover > .nav-sub,
.nav-item.is-open > .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-sub a,
.nav-soon {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
  color: var(--ink-muted, var(--muted));
  white-space: nowrap;
  border: 0;
  border-radius: 0;
}

.nav-sub a:hover {
  background: rgba(15, 61, 40, 0.06);
  color: var(--green-800);
}

.nav-soon {
  color: #7a867f;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nav-soon em {
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--cream) !important;
  margin-left: 0.25rem;
}

.nav-cta:hover { background: var(--green-700); }

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.38rem;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--green-800);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

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

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #f6f2e8;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(3, 22, 15, 0.92) 0%, rgba(3, 22, 15, 0.62) 46%, rgba(3, 22, 15, 0.28) 100%),
    linear-gradient(0deg, rgba(3, 22, 15, 0.78) 0%, transparent 48%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header) + 3rem) clamp(1.25rem, 5vw, 4.5rem) 5.5rem;
  max-width: 44rem;
  animation: heroCopy 1s var(--ease) both;
}

@keyframes heroCopy {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1 {
  font-size: clamp(3.6rem, 9vw, 6.4rem);
  letter-spacing: -0.03em;
  color: #f6f2e8;
}

.hero h1 span { color: var(--gold-400); }

.hero h1 em {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--accent);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-200);
  font-weight: 600;
}

.hero__tag {
  margin-top: 1.1rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: rgba(246, 242, 232, 0.88);
}

.hero__tag-rule {
  display: inline-block;
  width: 1.5px;
  height: 0.85em;
  background: var(--gold-400);
  margin: 0 0.75rem;
  vertical-align: -0.08em;
}

.hero__lead {
  margin-top: 0.9rem;
  max-width: 30rem;
  font-size: 1.05rem;
  color: rgba(246, 242, 232, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 1.45rem;
  height: 2.35rem;
  border: 1.5px solid rgba(246, 242, 232, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.4rem;
}

.hero__scroll span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: scrollDot 1.6s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: 500 0.92rem var(--body);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

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

.btn--gold {
  background: var(--gold-500);
  color: var(--green-950);
}

.btn--gold:hover { background: var(--gold-400); }

.btn--outline-light {
  border-color: rgba(246, 242, 232, 0.45);
  color: #f6f2e8;
}

.btn--outline-light:hover {
  border-color: var(--gold-400);
  color: var(--gold-200);
}

.btn--primary {
  background: var(--green-800);
  color: var(--cream);
}

.btn--primary:hover { background: var(--green-700); }

.btn--ghost {
  border-color: rgba(15, 61, 40, 0.3);
  color: var(--green-800);
  background: transparent;
}

.btn--ghost:hover { border-color: var(--gold-500); }

/* Pulse strip */
.pulse {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.pulse__item {
  background: var(--cream);
  padding: 1.5rem 1rem;
  text-align: center;
}

.pulse__item b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--green-800);
  letter-spacing: 0.04em;
}

.pulse__item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Brand story — mark meaning */
.brand-story__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 4.5vw, 3.25rem);
  align-items: center;
}

.brand-story__lockup {
  margin: 0;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-story__lockup img {
  width: 100%;
  height: auto;
}

.symbol-grid {
  display: grid;
  gap: 1.05rem;
}

.symbol-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.symbol-card__icon {
  width: 2.55rem;
  height: 2.55rem;
  color: var(--gold-500);
}

.symbol-card__icon svg {
  width: 100%;
  height: 100%;
}

.symbol-card h3 {
  font-size: 1.12rem;
  color: var(--green-800);
  margin-bottom: 0.2rem;
}

.symbol-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

.brand-line {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  color: var(--green-800);
}

.brand-line span {
  display: inline-block;
  width: 1.5px;
  height: 0.95em;
  background: var(--gold-500);
  margin: 0 0.9rem;
  vertical-align: -0.12em;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: 28rem;
}

.about__visual > img:first-child {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about__overlap {
  position: absolute;
  width: 46%;
  height: 11rem;
  object-fit: cover;
  right: -6%;
  bottom: 8%;
  border: 6px solid var(--cream-soft);
  box-shadow: var(--shadow);
}

.about__badge {
  position: absolute;
  left: 1rem;
  bottom: 1.4rem;
  background: var(--green-900);
  color: var(--cream);
  padding: 1rem 1.15rem;
  min-width: 6.5rem;
}

.about__badge strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold-400);
  line-height: 1;
}

.about__badge span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__copy h2 { margin-bottom: 1rem; }
.about__copy > p { color: var(--muted); }
.about__copy > p + p { margin-top: 0.9rem; }

.pillars {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.9rem;
}

.pillars li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0.9rem;
  align-items: center;
}

.pillars img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border-radius: 0.25rem;
}

.pillars strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--green-800);
}

.pillars span {
  font-size: 0.9rem;
  color: var(--muted);
}

.about .soon { margin-top: 0.75rem; }

.legal-line {
  margin-top: 1.4rem;
  color: var(--green-800);
  font-size: 1.02rem;
}

.legal-line strong {
  font-family: var(--display);
  font-weight: 600;
  margin-right: 0.35rem;
}

/* Materials — interaction tiles */
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.mat {
  display: block;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.mat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.mat__media {
  height: 11.5rem;
  overflow: hidden;
}

.mat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.mat:hover .mat__media img { transform: scale(1.06); }

.mat__body { padding: 1.15rem 1.2rem 1.35rem; }

.mat__body h3 {
  font-size: 1.55rem;
  color: var(--green-800);
}

.mat__body p {
  margin: 0.45rem 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.chip {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 162, 74, 0.45);
  padding-bottom: 0.15rem;
}

/* Serve banner */
.serve {
  max-width: none;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.serve__panel {
  position: relative;
  min-height: 22rem;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.serve__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 22, 15, 0.92), rgba(3, 22, 15, 0.55));
}

.serve__content {
  position: relative;
  z-index: 1;
  padding: clamp(2.4rem, 5vw, 3.8rem);
  color: #f6f2e8;
  max-width: 40rem;
}

.serve__content h2 { color: #f6f2e8; }

.serve__content ul {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.4rem;
}

.serve__content li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.95rem;
  color: rgba(246, 242, 232, 0.88);
}

.serve__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gold-400);
}

/* Process */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.timeline li {
  padding: 1.25rem 1rem 1.4rem;
  border-top: 2px solid var(--gold-500);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
}

.timeline span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  margin-bottom: 0.55rem;
}

.timeline strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--green-800);
  margin-bottom: 0.4rem;
}

.timeline p {
  font-size: 0.9rem;
  color: var(--muted);
}

.process__gallery {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 0.85rem;
}

.process__gallery img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

/* Quality */
.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.quality__copy > p { color: var(--muted); margin-top: 0.9rem; }

.q-steps {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.95rem;
}

.q-steps li {
  color: var(--muted);
  padding-left: 0;
  border-left: 2px solid var(--gold-500);
  padding-left: 1rem;
}

.q-steps strong {
  color: var(--green-800);
  font-family: var(--display);
  font-size: 1.15rem;
}

.quality .soon { margin-top: 1.4rem; }

.quality__visual {
  position: relative;
}

.quality__visual > img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.checks {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.8rem;
  padding: 1rem 1.1rem;
  background: rgba(3, 22, 15, 0.88);
  color: rgba(246, 242, 232, 0.9);
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

.checks li {
  position: relative;
  padding-left: 0.85rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--gold-400);
}

/* Reach */
.reach {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.reach__media img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.reach__copy > p { color: var(--muted); margin-top: 0.9rem; }

.reach__soon {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px dashed rgba(201, 162, 74, 0.55);
  background: rgba(201, 162, 74, 0.06);
}

.reach__soon h3 {
  font-size: 1.25rem;
  color: var(--green-800);
  margin-bottom: 0.35rem;
}

.reach__soon p { color: var(--muted); font-size: 0.95rem; }

.growth {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.2rem;
}

.growth li {
  position: relative;
  padding-left: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.growth li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gold-500);
}

/* Commitment */
.commitment {
  position: relative;
  min-height: 20rem;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.commitment__bg {
  position: absolute;
  inset: 0;
}

.commitment__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}

.commitment__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem;
  max-width: 42rem;
  color: #f6f2e8;
}

.commitment__inner h2 { color: #f6f2e8; }
.commitment__inner > p {
  margin-top: 1rem;
  color: rgba(246, 242, 232, 0.82);
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: start;
}

.contact__card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.contact__photo {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.contact__card > :not(img) {
  margin-left: 1.35rem;
  margin-right: 1.35rem;
}

.contact__name {
  margin-top: 1.2rem;
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--green-800);
}

.contact__role {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.contact__card dl {
  display: grid;
  gap: 0.9rem;
  margin: 0 1.35rem 1.35rem;
}

.contact__card dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.contact__card dd { margin: 0.2rem 0 0; font-size: 1.02rem; }
.contact__card a:hover { color: var(--green-700); }

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 1.35rem 1.5rem !important;
}

.enquiry {
  display: grid;
  gap: 0.95rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.enquiry__note {
  font-size: 0.85rem;
  color: var(--muted);
}

.enquiry label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-800);
}

.enquiry input,
.enquiry select,
.enquiry textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0.2rem;
  outline: none;
}

.enquiry input:focus,
.enquiry select:focus,
.enquiry textarea:focus {
  border-color: var(--gold-500);
}

.enquiry .btn { justify-self: start; margin-top: 0.2rem; }

.form-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--green-700);
}

/* Footer */
.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.4rem clamp(1.25rem, 4vw, 3.5rem) 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: center;
}

.site-footer__brand {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.site-footer__brand img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 0.35rem;
}

.site-footer__brand strong {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--green-800);
}

.site-footer__brand p {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer > p {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  75% { transform: translateY(12px); opacity: 0; }
  100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 980px) {
  .about,
  .quality,
  .reach,
  .contact__grid,
  .brand-story__layout {
    grid-template-columns: 1fr;
  }

  .about__visual { min-height: auto; }
  .about__visual > img:first-child { height: 22rem; }
  .about__overlap { width: 42%; height: 8.5rem; right: 4%; }

  .material-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline li:last-child { grid-column: 1 / -1; }
  .process__gallery { grid-template-columns: 1fr; }
  .process__gallery img { height: 12rem; }
  .pulse { grid-template-columns: 1fr 1fr; }
  .serve__content ul,
  .growth { grid-template-columns: 1fr; }
  .site-footer > p { text-align: left; }
  .quality__visual > img { height: 22rem; }
}

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

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 1.2rem 1.2rem;
    background: rgba(246, 242, 232, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a,
  .nav-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted) !important;
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-item .nav-link {
    border-bottom: 0;
  }

  .nav-sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: rgba(15, 61, 40, 0.04);
    display: none;
    min-width: 0;
    padding: 0.25rem 0 0.65rem;
    left: auto;
  }

  .nav-item.is-open > .nav-sub {
    display: block;
    transform: none;
  }

  .nav-sub a,
  .nav-soon {
    white-space: normal;
    padding: 0.5rem 0.75rem;
  }

  .nav-cta {
    margin-top: 0.7rem;
    text-align: center;
    border: 0 !important;
    width: auto;
    justify-content: center;
  }

  .material-grid,
  .pulse { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li:last-child { grid-column: auto; }
  .checks { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero__bg img, .hero__scroll span {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Inner SEO product pages */
.inner-page .site-header {
  background: rgba(246, 242, 232, 0.95);
  border-bottom-color: var(--line);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: calc(var(--header) + 2.5rem) clamp(1.25rem, 4vw, 3.5rem) 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero__media img {
  width: 100%;
  height: min(22rem, 50vw);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: var(--green-900);
  margin-bottom: 0.85rem;
}

.page-hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.seo-content {
  padding-top: 1rem;
}

.seo-block {
  margin-bottom: 2.2rem;
  max-width: 46rem;
}

.seo-block h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--green-800);
  margin-bottom: 0.7rem;
}

.seo-block p {
  color: var(--muted);
}

.seo-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0 1rem;
}

.seo-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gold-500);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 560;
  color: var(--green-800);
  font-family: var(--display);
  font-size: 1.15rem;
}

.faq p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.related-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.related-nav a {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.7);
}

.related-nav a:hover {
  border-color: var(--gold-500);
}

.site-footer a {
  color: var(--green-700);
}

.site-footer a:hover {
  color: var(--gold-500);
}

@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
  }
  .page-hero__media img {
    height: 16rem;
  }
}
