/* =========================================================
   Aurenyx Exports — Design System
   Division of Aurenyx Pharmatech Pvt Ltd
   ========================================================= */

:root {
  --ink: #14201e;
  --ink-soft: #3a4a46;
  --muted: #5c6d68;
  --paper: #f3f7f5;
  --paper-deep: #e4eee9;
  --line: rgba(20, 32, 30, 0.12);
  --teal-950: #062422;
  --teal-900: #0a3531;
  --teal-800: #0f4a44;
  --teal-700: #17665d;
  --teal-600: #1f7f74;
  --amber: #c9922e;
  --amber-soft: #e8c56a;
  --white: #ffffff;
  --danger: #9b2c2c;
  --success: #1f6b4a;
  --shadow: 0 18px 50px rgba(6, 36, 34, 0.18);
  --radius: 4px;
  --header-h: 84px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 2.5rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(31, 127, 116, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 146, 46, 0.1), transparent 50%),
    linear-gradient(180deg, #eef5f2 0%, var(--paper) 40%, #edf3f0 100%);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(243, 247, 245, 0.86);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(243, 247, 245, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(6, 36, 34, 0.06);
}

.header-inner {
  width: var(--container);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--teal-950);
  background:
    linear-gradient(145deg, var(--amber-soft), var(--amber));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-950);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

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

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s var(--ease);
}

.site-nav a:not(.btn):hover,
.site-nav a.is-active {
  color: var(--teal-800);
}

.site-nav a:not(.btn).is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-700), var(--amber));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--teal-900);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(15, 74, 68, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--teal-800);
  border-color: rgba(15, 74, 68, 0.35);
}

.btn-outline:hover {
  background: rgba(15, 74, 68, 0.06);
}

.btn-nav {
  min-height: 42px;
  padding: 0.55rem 1rem;
  background: var(--teal-900);
  color: var(--white) !important;
}

.btn-nav:hover {
  background: var(--teal-700);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-drift 18s var(--ease) infinite alternate;
  filter: brightness(1.2) contrast(1.05) saturate(1.1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 36, 34, 0.42) 0%, rgba(6, 36, 34, 0.18) 48%, rgba(6, 36, 34, 0.02) 100%),
    linear-gradient(0deg, rgba(6, 36, 34, 0.22) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
  max-width: 760px;
  margin-left: max(calc((100% - min(1180px, calc(100% - 2.5rem))) / 2), 1.25rem);
  margin-right: auto;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 1.1rem;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero-brand span {
  display: block;
  color: var(--amber-soft);
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34ch;
  margin-bottom: 0.35rem;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.32s forwards;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 42ch;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

.hero .cta-row {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.58s forwards;
}

.hero-scroll {
  position: absolute;
  right: max(1.25rem, calc((100% - min(1180px, calc(100% - 2.5rem))) / 2));
  bottom: 1.75rem;
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
}

/* ---------- Page banners ---------- */
.page-banner {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.page-banner-media {
  position: absolute;
  inset: 0;
}

.page-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.22) contrast(1.05) saturate(1.1);
}

.page-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 36, 34, 0.4), rgba(6, 36, 34, 0.1));
}

.page-banner-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.page-banner .eyebrow {
  color: var(--amber-soft);
}

.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 16ch;
  color: var(--white);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 5.5rem 0;
}

.section- Tight {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal-950);
}

.section-head p {
  font-size: 1.08rem;
}

.section-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.section-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.section-media::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(6, 36, 34, 0.45));
  z-index: 1;
  pointer-events: none;
}

.panel-soft {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 32, 30, 0.08);
  padding: 1.75rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.25rem 0 0;
  border-top: 2px solid var(--amber);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal-900);
  line-height: 1;
  margin-bottom: 0.35rem;
}

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

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}

.portfolio-item {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.portfolio-item:nth-child(1),
.portfolio-item:nth-child(5) {
  grid-column: span 5;
  min-height: 380px;
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(6) {
  grid-column: span 3;
}

.portfolio-item:nth-child(3),
.portfolio-item:nth-child(4),
.portfolio-item:nth-child(7),
.portfolio-item:nth-child(8),
.portfolio-item:nth-child(9),
.portfolio-item:nth-child(10) {
  grid-column: span 4;
}

/* Dummy Aurenyx nutraceutical bottle */
.pack-showcase {
  margin-bottom: 1.25rem;
  padding: 2rem 1.25rem 1.25rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(232, 197, 106, 0.22), transparent 45%),
    linear-gradient(180deg, #0f4a44, #062422);
  text-align: center;
}

.bottle-stage {
  position: relative;
  width: 150px;
  margin: 0 auto 1rem;
  perspective: 600px;
}

.bottle-cap {
  width: 58px;
  height: 28px;
  margin: 0 auto;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #d4af37, #a67c1a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.bottle-body {
  width: 120px;
  height: 210px;
  margin: 0 auto;
  border-radius: 14px 14px 22px 22px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(180deg, #1a6b62, #0a3531 55%, #072825);
  border: 1px solid rgba(232, 197, 106, 0.35);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.bottle-label {
  width: 88px;
  min-height: 118px;
  padding: 0.7rem 0.45rem;
  background: linear-gradient(180deg, #f7f3e8, #efe6d0);
  border: 1px solid rgba(10, 53, 49, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  text-align: center;
}

.bottle-brand {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #0a3531;
}

.bottle-product {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.15;
  color: #062422;
}

.bottle-sub {
  font-size: 0.55rem;
  line-height: 1.25;
  color: #5c6d68;
}

.bottle-pill {
  margin-top: 0.25rem;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0f4a44;
  border-top: 1px solid rgba(10, 53, 49, 0.15);
  padding-top: 0.3rem;
  width: 100%;
}

.bottle-shadow {
  width: 90px;
  height: 12px;
  margin: 0.7rem auto 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(4px);
}

.pack-showcase-note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.showcase-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.showcase-detail h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--teal-950);
}

.nutra-range h3 {
  font-size: 1.25rem;
  color: var(--teal-950);
  margin-bottom: 1rem;
}

.nutra-range-grid {
  display: grid;
  gap: 0.85rem;
}

.nutra-range-grid article {
  padding: 0.9rem 0 0;
  border-top: 2px solid var(--amber);
}

.nutra-range-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--teal-950);
  margin-bottom: 0.25rem;
}

.nutra-range-grid span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Dummy pack gallery — nutraceutical range */
.pack-mocks-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 197, 106, 0.12), transparent 42%),
    linear-gradient(180deg, #f7f4ec 0%, #fff 55%);
}

.pack-mocks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.pack-mock {
  padding: 1.15rem 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(15, 74, 68, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.pack-mock__stage {
  width: 100%;
  min-height: 250px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  padding: 0.85rem 0.4rem 0.4rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(232, 197, 106, 0.18), transparent 48%),
    linear-gradient(180deg, #0f4a44, #062422);
}

.pack-mock__bottle {
  width: 120px;
  margin: 0 auto;
}

.pack-mock__bottle .bottle-body {
  width: 96px;
  height: 168px;
}

.pack-mock__bottle .bottle-label {
  width: 72px;
  min-height: 96px;
  padding: 0.55rem 0.35rem;
}

.pack-mock__bottle .bottle-product {
  font-size: 0.62rem;
}

.pack-mock__bottle .bottle-sub {
  font-size: 0.48rem;
}

.pack-mock__bottle .bottle-cap {
  width: 46px;
  height: 22px;
}

.pack-mock h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--teal-950);
  margin: 0 0 0.3rem;
  line-height: 1.25;
}

.pack-mock p {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.4;
  flex: 1;
}

.pack-mock__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-700);
  border: 1px solid rgba(15, 74, 68, 0.22);
  padding: 0.22rem 0.5rem;
}

/* Gummy jar mock */
.pack-jar {
  width: 118px;
  margin: 0 auto;
}

.pack-jar__lid {
  width: 104px;
  height: 18px;
  margin: 0 auto;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #e8c56a, #b8892a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.pack-jar__body {
  width: 118px;
  height: 150px;
  margin: 0 auto;
  border-radius: 10px 10px 18px 18px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(180deg, #8a5a18, #5c3a0e 60%, #3d2508);
  border: 1px solid rgba(232, 197, 106, 0.4);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.pack-jar__label {
  width: 84px;
  min-height: 100px;
  padding: 0.55rem 0.35rem;
  background: linear-gradient(180deg, #f7f3e8, #efe6d0);
  border: 1px solid rgba(10, 53, 49, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
}

.pack-jar__label .bottle-product {
  font-size: 0.62rem;
}

.pack-jar__label .bottle-sub {
  font-size: 0.48rem;
}

/* Protein pouch mock */
.pack-pouch {
  width: 112px;
  margin: 0 auto;
}

.pack-pouch__seal {
  width: 112px;
  height: 14px;
  margin: 0 auto;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #c9ced6, #8b93a1);
}

.pack-pouch__body {
  width: 112px;
  height: 168px;
  margin: 0 auto;
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.16), transparent 40%),
    linear-gradient(180deg, #3d4a5c, #1f2836 58%, #151b26);
  border: 1px solid rgba(232, 197, 106, 0.28);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  clip-path: polygon(6% 0, 94% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
}

.pack-pouch__label {
  width: 78px;
  min-height: 108px;
  padding: 0.55rem 0.35rem;
  background: linear-gradient(180deg, #f7f3e8, #efe6d0);
  border: 1px solid rgba(10, 53, 49, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
}

.pack-pouch__label .bottle-product {
  font-size: 0.62rem;
}

.pack-pouch__label .bottle-sub {
  font-size: 0.48rem;
}

/* Tone accents on pack stage */
.pack-mock[data-tone='amber'] .pack-mock__stage {
  background:
    radial-gradient(circle at 50% 18%, rgba(232, 197, 106, 0.28), transparent 48%),
    linear-gradient(180deg, #5c3a0e, #2a1a08);
}

.pack-mock[data-tone='slate'] .pack-mock__stage {
  background:
    radial-gradient(circle at 50% 18%, rgba(180, 190, 210, 0.22), transparent 48%),
    linear-gradient(180deg, #2f3a4a, #121820);
}

.pack-mock[data-tone='forest'] .pack-mock__stage {
  background:
    radial-gradient(circle at 50% 18%, rgba(120, 180, 120, 0.2), transparent 48%),
    linear-gradient(180deg, #1f4a2e, #0d2416);
}

.pack-mock[data-tone='earth'] .pack-mock__stage {
  background:
    radial-gradient(circle at 50% 18%, rgba(200, 160, 100, 0.22), transparent 48%),
    linear-gradient(180deg, #4a3420, #20160c);
}

.pack-mock[data-tone='navy'] .pack-mock__stage {
  background:
    radial-gradient(circle at 50% 18%, rgba(160, 180, 220, 0.2), transparent 48%),
    linear-gradient(180deg, #1e2f55, #0d1528);
}

.pack-mock[data-tone='forest'] .bottle-body {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(180deg, #2f7a4a, #163d26 55%, #0f2819);
}

.pack-mock[data-tone='earth'] .bottle-body {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(180deg, #8a6230, #4a3420 55%, #2a1c10);
}

.pack-mock[data-tone='navy'] .bottle-body {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(180deg, #3a5288, #1e2f55 55%, #121c33);
}

.pack-mock[data-tone='amber'] .bottle-body {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(180deg, #b8892a, #6e4e14 55%, #3d2a0a);
}

.cross-link-note {
  margin-top: 1.5rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.cross-link-note a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.deep-dive-card {
  padding: 1.35rem 0 0;
  border-top: 2px solid rgba(15, 74, 68, 0.18);
}

.deep-dive-card h3 {
  font-size: 1.2rem;
  color: var(--teal-950);
  margin-bottom: 0.45rem;
}

.deep-dive-card p {
  margin: 0;
  font-size: 0.96rem;
}

.portfolio-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  z-index: -2;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 36, 34, 0.1) 20%, rgba(6, 36, 34, 0.88) 100%);
  z-index: -1;
  transition: background 0.4s var(--ease);
}

.portfolio-item:hover img {
  transform: scale(1.07);
}

.portfolio-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
}

.portfolio-body h3 {
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.portfolio-body p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 0.95rem;
}

.portfolio-link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber-soft);
  letter-spacing: 0.02em;
}

.category-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 1.75rem;
}

.product-chips span {
  padding: 0.45rem 0.8rem;
  background: rgba(15, 74, 68, 0.08);
  border: 1px solid rgba(15, 74, 68, 0.12);
  font-size: 0.88rem;
  color: var(--teal-900);
}

.checklist {
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-700), var(--amber));
}

/* ---------- Process / Why ---------- */
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--teal-950);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  padding-top: 1.25rem;
  border-top: 2px solid rgba(15, 74, 68, 0.18);
}

.feature h3 {
  font-size: 1.3rem;
  color: var(--teal-950);
}

/* ---------- Enquiry / Forms ---------- */
.enquiry-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.enquiry-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  padding: 2rem;
  background:
    linear-gradient(160deg, rgba(10, 53, 49, 0.96), rgba(15, 74, 68, 0.92)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=900&q=70") center/cover;
  color: var(--white);
  min-height: 420px;
}

.enquiry-aside h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.enquiry-aside p,
.enquiry-aside li {
  color: rgba(255, 255, 255, 0.82);
}

.enquiry-aside ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem;
}

.enquiry-aside li {
  padding-left: 1rem;
  border-left: 2px solid var(--amber-soft);
}

.form-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 32, 30, 0.08);
  padding: 1.75rem;
}

.enquiry-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.enquiry-tabs button {
  min-height: 48px;
  border: 1px solid rgba(15, 74, 68, 0.2);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.enquiry-tabs button.is-active {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-950);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(20, 32, 30, 0.16);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(31, 127, 116, 0.15);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.12);
}

.field-error {
  min-height: 1em;
  font-size: 0.78rem;
  color: var(--danger);
}

.field-hint {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.3;
}

.form-field:not(.has-error) .field-error:empty {
  display: none;
}

.form-field select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: #eef2f0;
}

.product-req.hidden {
  display: none !important;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.alert {
  padding: 0.95rem 1.1rem;
  margin-bottom: 1.25rem;
  border-left: 3px solid;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(31, 107, 74, 0.1);
  border-color: var(--success);
  color: var(--success);
}

.alert-error {
  background: rgba(155, 44, 44, 0.08);
  border-color: var(--danger);
  color: var(--danger);
}

.product-only.hidden,
.general-only.hidden {
  display: none !important;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-tile {
  padding: 1.75rem 0;
  border-top: 2px solid var(--teal-700);
}

.contact-tile h3 {
  font-size: 1.25rem;
  color: var(--teal-950);
}

.contact-tile a {
  color: var(--teal-700);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.82);
  background: var(--teal-950);
  overflow: hidden;
}

.footer-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(201, 146, 46, 0.18), transparent 60%),
    radial-gradient(600px 280px at 90% 20%, rgba(31, 127, 116, 0.35), transparent 55%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding: 4rem 0 2.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1rem;
  max-width: 36ch;
}

.footer-brand-lockup .brand-name {
  color: var(--white);
}

.footer-brand-lockup .brand-sub {
  color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--amber-soft);
}

.footer-contact li {
  display: grid;
  gap: 0.15rem;
}

.footer-contact span:first-child {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-cta {
  margin-top: 1.25rem;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.band-teal {
  background:
    linear-gradient(120deg, rgba(10, 53, 49, 0.96), rgba(23, 102, 93, 0.92)),
    url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1600&q=70") center/cover;
  color: var(--white);
}

.band-teal h2,
.band-teal p {
  color: rgba(255, 255, 255, 0.92);
}

.band-teal p {
  color: rgba(255, 255, 255, 0.78);
}

.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

/* ---------- Category writeups ---------- */
.cat-subhead {
  margin-top: 1.75rem;
  font-size: 1.35rem;
  color: var(--teal-950);
}

.cat-side-media {
  min-height: 360px;
  margin-bottom: 1.25rem;
}

.cat-side-media img {
  min-height: 360px;
}

.checklist {
  margin-top: 1rem;
}

.cat-writeup-section {
  padding-top: 0;
}

.writeup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.writeup-block {
  padding: 1.75rem 0 0;
  border-top: 2px solid rgba(15, 74, 68, 0.2);
}

.writeup-block h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: var(--teal-950);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.region-card {
  padding: 1.35rem 0 0;
  border-top: 2px solid var(--amber);
}

.region-card h3 {
  font-size: 1.15rem;
  color: var(--teal-950);
  margin-bottom: 0.45rem;
}

.region-card p {
  margin: 0;
  font-size: 0.95rem;
}

.deal-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.deal-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.deal-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 56ch;
}

.deal-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.deal-steps li {
  padding: 0.85rem 0 0.85rem 1rem;
  border-left: 2px solid var(--amber-soft);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.deal-steps strong {
  display: block;
  color: var(--amber-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.advantage-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.advantage-shell h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--teal-950);
}

.advantage-list {
  margin-top: 0.25rem;
}

.lead-copy {
  font-size: 1.08rem;
  max-width: 68ch;
}

.story-heritage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(800px 400px at 0% 0%, rgba(201, 146, 46, 0.12), transparent 60%);
}

.story-panel {
  max-width: 860px;
  padding-top: 0.5rem;
}

.story-panel h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--teal-950);
}

.story-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.story-card {
  padding: 1.75rem 0 0;
  border-top: 2px solid var(--teal-700);
}

.story-card h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  color: var(--teal-950);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .portfolio-item,
  .portfolio-item:nth-child(n) {
    grid-column: span 6;
    min-height: 300px;
  }

  .process-rail,
  .feature-list,
  .contact-grid,
  .footer-grid,
  .writeup-grid,
  .deal-band,
  .advantage-shell,
  .story-dual,
  .deep-dive-grid,
  .showcase-detail {
    grid-template-columns: 1fr;
  }

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

  .region-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-split,
  .category-layout,
  .enquiry-shell {
    grid-template-columns: 1fr;
  }

  .enquiry-aside {
    position: static;
  }
}

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

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(243, 247, 245, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

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

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:not(.btn).is-active::after {
    display: none;
  }

  .site-nav .btn-nav {
    margin-top: 0.75rem;
    width: 100%;
  }

  .brand-sub {
    max-width: 180px;
  }

  .hero-content {
    padding: 3.5rem 0 4rem;
  }

  .stat-row,
  .form-grid,
  .enquiry-tabs {
    grid-template-columns: 1fr;
  }

  .portfolio-item,
  .portfolio-item:nth-child(n) {
    grid-column: span 12;
  }

  .pack-mocks-grid {
    grid-template-columns: 1fr;
  }

  .process-rail,
  .feature-list,
  .contact-grid,
  .footer-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 520px) {
  :root {
    --container: min(1180px, calc(100% - 1.25rem));
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 2.25rem 0;
  }

  .page-banner {
    min-height: 160px;
    max-height: 200px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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