/* ===========================================================
   ARMADILLO TOPS — design tokens
   =========================================================== */
:root{
  --ivory:        #F2EEE3;
  --paper:        #FAF7EF;
  --ink:          #1C2520;
  --ink-soft:     #555F54;
  --walnut:       #1F3A2E;
  --walnut-deep:  #122119;
  --brass:        #8A6D3B;
  --brass-light:  #C9B584;
  --sage:         #6E7A6B;
  --line:         rgba(31,58,46,0.16);
  --line-strong:  rgba(31,58,46,0.32);

  --font-display: "Playfair Display", serif;
  --font-body:    "EB Garamond", serif;

  --container:    1280px;
  --gutter:       clamp(24px, 5vw, 72px);

  --ease: cubic-bezier(.16,.84,.32,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ font-family: var(--font-display); font-weight:500; margin:0; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; }

::selection{ background: var(--brass-light); color:var(--walnut-deep); }

:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 8px;
}

.eyebrow{
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 16px;
}
.eyebrow--light{ color: var(--brass-light); }

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

/* reveal-on-scroll base state (JS adds .is-visible) */
[data-reveal]{
  opacity: 0;
  transform: translateY(22px);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn--primary{
  background: var(--ink);
  color: var(--ivory);
}
.btn--primary:hover{ background: var(--walnut-deep); }
.btn--ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover{ border-color: var(--ink); }
.btn--small{ padding: 10px 18px; font-size: 13px; }
.btn--wide{ width:100%; padding: 16px 28px; }
.btn:active{ transform: scale(0.97); }

/* ===========================================================
   NAV
   =========================================================== */
.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: rgba(243,238,228,0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  overflow: hidden;
}
.nav.is-scrolled{
  background-image: linear-gradient(110deg,
    #e4e5e7 0%,
    #f4f4f3 16%,
    #d3d6d9 34%,
    #f8f8f6 50%,
    #cdd0d3 66%,
    #f1f1ef 82%,
    #e4e5e7 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
  backdrop-filter: blur(10px);
  border-color: rgba(60,64,68,0.2);
  box-shadow: 0 1px 0 rgba(60,64,68,0.08);
}
.nav.is-scrolled{
  animation: navSilkColor 10s ease-in-out infinite;
}
@keyframes navSilkColor{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.nav::before{
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 90%; height: 100%;
  background: linear-gradient(100deg,
    transparent 30%,
    rgba(255,255,255,0.5) 47%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0.5) 53%,
    transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.nav.is-scrolled::before{
  opacity: 1;
  animation: navSilkSheen 6s ease-in-out infinite;
}
@keyframes navSilkSheen{
  0%   { left: -120%; }
  45%  { left: 130%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce){
  .nav::before{ animation: none; opacity: 0; }
  .nav.is-scrolled{ animation: none; }
}
.nav__inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand{
  display:flex; align-items:center; gap:10px;
  margin-right: auto;
}
.nav__logo{ height: 42px; width:auto; }
.nav__wordmark{ font-family: var(--font-body); font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.nav__links{ display:flex; align-items:center; gap: 30px; font-size: 14px; font-weight:500; }
.nav__links a{ opacity:.82; transition: opacity .25s; position:relative; }
.nav__links a:hover{ opacity:1; }
.nav__action{ display:flex; align-items:center; gap:18px; }
.nav__burger{ display:none; }
.nav__mobile{ display:none; }

@media (max-width: 880px){
  .nav__links{ display:none; }
  .nav__inner{ gap: 12px; }
  .nav__burger{
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    width: 34px; height:34px; background:none; border:none; cursor:pointer; padding:0;
    flex-shrink: 0;
  }
  .nav__burger span{ width:100%; height:2px; background: var(--ink); transition: transform .3s, opacity .3s; }
  .nav__mobile{
    display:flex; flex-direction:column; gap:0;
    max-height:0; overflow:hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transition: max-height .4s var(--ease);
  }
  .nav__mobile.is-open{ max-height: 320px; }
  .nav__mobile a{
    padding: 16px var(--gutter);
    border-top: 1px solid var(--line);
    font-size: 15px; font-weight: 500;
  }
}

@media (max-width: 480px){
  .nav__wordmark{ display: none; }
  .nav__logo{ height: 36px; }
  .nav__action .btn--small{ padding: 9px 14px; font-size: 12.5px; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero{
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: 92vh;
}

/* full-bleed video hero variant */
.hero--video{
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero__bgvideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__bgvideo--blur{
  object-fit: cover;
  filter: blur(50px) brightness(0.85) saturate(1.1);
  transform: scale(1.15);
}
.hero__bgvideo--sharp{
  object-fit: contain;
  object-position: center center;
}
.hero__scrim{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(243,238,228,0.35) 0%, rgba(243,238,228,0.08) 35%, rgba(243,238,228,0.4) 100%);
}
.hero__text--onvideo{
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 220px var(--gutter) 110px;
}
.hero__text--onvideo::before{
  content:"";
  position: absolute;
  left: 0; top: 0;
  width: min(720px, 100%);
  height: 100%;
  background: linear-gradient(100deg, rgba(243,238,228,0.92) 0%, rgba(243,238,228,0.92) 68%, rgba(243,238,228,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  border-radius: 0 32px 32px 0;
}
.hero__title--light{ color: var(--ink); }
.hero__title--light em{ color: var(--walnut); font-style: italic; }
.hero__sub--light{ color: var(--ink-soft); max-width: 480px; }
.hero__trust--light{ color: var(--ink-soft); }
.hero__trust--light .dot{ color: var(--line-strong); }
.hero--video .hero__title{ max-width: 600px; }
.btn--ghost-light{ color: var(--ink); border-color: var(--line-strong); }
.btn--ghost-light:hover{ border-color: var(--ink); background: rgba(24,20,15,0.04); }

@media (max-width: 880px){
  .hero__text--onvideo{ padding: 150px var(--gutter) 80px; }
  .hero__bgvideo{ object-position: center 12%; }
}
.hero__title{
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  margin-bottom: 26px;
}
.hero__title em{ font-style: italic; color: var(--walnut); }
.hero__sub{
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero__cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 36px; }
.hero__trust{
  display:flex; gap:10px; flex-wrap:wrap;
  font-size: 12.5px; letter-spacing:.03em; text-transform:uppercase;
  color: var(--ink-soft); font-weight:600;
}
.hero__trust .dot{ color: var(--line-strong); }

.hero__panel{ position: relative; justify-self: center; width:100%; max-width: 380px; }
.hero__panel-frame{
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px 16px 64px 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 50px 110px -35px rgba(10,30,20,0.28);
}
.hero__video{ width:100%; height:100%; object-fit: cover; }
.hero__panel-sheen{
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 40%);
  pointer-events:none;
}
.hero__curl{
  position:absolute; right:-1px; bottom:-1px;
  width: 90px; height:90px;
  filter: drop-shadow(-4px -4px 6px rgba(24,20,15,0.12));
}

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; padding-top: 120px; min-height:auto; }
  .hero__panel{ order:-1; max-width: 300px; margin: 0 auto 8px; }
  .hero__sub{ max-width:none; }
}

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee{
  background: var(--walnut-deep);
  color: var(--brass-light);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track{
  display: inline-flex;
  white-space: nowrap;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  animation: marquee 32s linear infinite;
}
.marquee__track .sep{ font-style: normal; opacity:.5; font-size:12px; align-self:center; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; }
}

/* ===========================================================
   VALUE / PLATES
   =========================================================== */
.value{
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--gutter) 100px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.value__claim h2{
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.28;
  margin-bottom: 22px;
}
.value__claim em{ font-style: italic; color: var(--walnut); }
.value__claim p{ color: var(--ink-soft); font-size: 16px; max-width: 440px; }

.value__cards{ display:flex; flex-direction:column; gap: 22px; }
.value__card{
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.value__card-label{
  font-size: 11.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color: var(--sage);
}
.value__card-big{
  font-family: var(--font-display);
  font-size: 30px;
  margin: 6px 0 8px;
}
.value__card-text{ color: var(--ink-soft); font-size: 14.5px; max-width: 380px; }

@media (max-width: 880px){
  .value{ grid-template-columns: 1fr; padding-top: 90px; }
}

/* plate-divider removed */

/* ===========================================================
   PROCESS
   =========================================================== */
.process{
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px var(--gutter) 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.process__text h2{
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.process__lede{ color: var(--ink-soft); font-size: 16px; max-width: 460px; margin-bottom: 36px; }
.process__steps{ display:flex; flex-direction:column; }
.process__steps li{
  display:grid; grid-template-columns: 160px 1fr; gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.process__step-name{ font-weight:600; font-size:14.5px; }
.process__step-text{ color: var(--ink-soft); font-size: 14.5px; }

.process--scalebg{
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.process__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.process__bg-img{
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  filter: blur(9px) saturate(1.12) brightness(1.04) contrast(0.96);
  animation: scaleBreathe 16s ease-in-out infinite;
  will-change: transform;
}
.process__bg::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(58,62,66,0.16) 0%, rgba(107,114,128,0.06) 45%, rgba(58,62,66,0.18) 100%);
  mix-blend-mode: multiply;
}
@keyframes scaleBreathe{
  0%   { transform: scale(1.08) translate(0,0); }
  50%  { transform: scale(1.15) translate(-0.6%, -0.8%); }
  100% { transform: scale(1.08) translate(0,0); }
}
@media (prefers-reduced-motion: reduce){
  .process__bg-img{ animation: none; transform: scale(1.1); }
}
.process--scalebg .process__text{
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 100px var(--gutter) 100px;
}
.process--scalebg .process__text::before{
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(100deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 55%, rgba(255,255,255,0) 100%);
  z-index: -1;
}
@media (max-width: 980px){
  .process--scalebg{ min-height: auto; }
  .process--scalebg .process__text{ max-width: 100%; padding: 70px var(--gutter) 60px; }
  .process--scalebg .process__text::before{ background: rgba(255,255,255,0.93); }
  .process__steps li{ grid-template-columns: 1fr; gap:6px; }
}

/* ===========================================================
   PROTECTION TIERS + SILK BACKDROP
   =========================================================== */
.materials{ max-width: var(--container); margin: 0 auto; padding: 100px var(--gutter) 110px; position: relative; overflow: hidden; }
.materials__head{ position: relative; z-index: 2; }
.materials__head h2{ font-size: clamp(28px, 3.6vw, 42px); margin: 4px 0 18px; }
.materials__sub{ color: var(--ink-soft); max-width: 540px; font-size:16px; margin-bottom: 48px; }

.materials__silk{
  position: absolute;
  inset: -8% -15%;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.95;
  overflow: hidden;
}
.silk__svg{ width: 100%; height: 100%; }
.silk__sheet{ transform-origin: center; }
.silk__sheet--a{ animation: silkSwayA 11s ease-in-out infinite; }
.silk__sheet--b{ animation: silkSwayB 14s ease-in-out infinite; }
.silk__sheet--c{ animation: silkSwayC 17s ease-in-out infinite; }

@keyframes silkSwayA{
  0%   { transform: translate(0%, 0%) scale(1) skewX(0deg) rotate(0deg); }
  20%  { transform: translate(-3.5%, 2.5%) scale(1.05) skewX(2.2deg) rotate(0.6deg); }
  45%  { transform: translate(2.5%, -2%) scale(1.02) skewX(-1.6deg) rotate(-0.4deg); }
  70%  { transform: translate(-2%, 3%) scale(1.06) skewX(1.4deg) rotate(0.5deg); }
  100% { transform: translate(0%, 0%) scale(1) skewX(0deg) rotate(0deg); }
}
@keyframes silkSwayB{
  0%   { transform: translate(0%, 0%) scale(1.02) skewX(0deg) rotate(0deg); }
  30%  { transform: translate(3%, -2.5%) scale(1.06) skewX(-2deg) rotate(-0.5deg); }
  60%  { transform: translate(-2.5%, 2%) scale(1.01) skewX(1.8deg) rotate(0.4deg); }
  100% { transform: translate(0%, 0%) scale(1.02) skewX(0deg) rotate(0deg); }
}
@keyframes silkSwayC{
  0%   { transform: translate(0%, 0%) scale(1.03) skewX(0deg); }
  35%  { transform: translate(-2.8%, -2%) scale(1.07) skewX(2.4deg); }
  65%  { transform: translate(2.2%, 2.6%) scale(1.0) skewX(-1.6deg); }
  100% { transform: translate(0%, 0%) scale(1.03) skewX(0deg); }
}

.silk__sheen{
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,255,255,0.45) 48%,
    rgba(255,255,255,0.05) 56%,
    transparent 70%);
  mix-blend-mode: screen;
  animation: silkSheen 9s linear infinite;
}
@keyframes silkSheen{
  0%   { transform: translate(-30%, -10%) rotate(8deg); }
  100% { transform: translate(30%, 10%) rotate(8deg); }
}

@media (prefers-reduced-motion: reduce){
  .silk__sheet--a, .silk__sheet--b, .silk__sheet--c, .silk__sheen{ animation: none; }
}

.tiers{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tier{
  background: rgba(251,248,242,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tier__select{ margin-top: 26px; }
.tier--featured .tier__select.btn--ghost{ color: var(--ivory); border-color: rgba(243,238,228,0.3); }
.tier--featured .tier__select.btn--ghost:hover{ border-color: var(--ivory); }
.tier:hover{ transform: translateY(-4px); box-shadow: 0 30px 64px -26px rgba(10,30,20,0.2); }
.tier--featured{
  background: var(--walnut-deep);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--ivory);
  border-color: var(--walnut);
}
.tier--featured .tier__thickness span,
.tier--featured .tier__name{ color: var(--brass-light); }
.tier--featured .tier__perks li{ color: rgba(243,238,228,0.82); }
.tier__badge{
  position: absolute; top: -12px; left: 28px;
  background: var(--brass); color: var(--walnut-deep);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.tier__name{ font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.tier__thickness{ font-family: var(--font-display); font-size: 28px; margin-bottom: 6px; }
.tier__thickness span{ display:block; font-family: var(--font-body); font-size: 12.5px; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-soft); margin-left: 0; margin-top: 2px; }
.tier__price{ font-size: 14px; font-weight: 600; color: var(--brass); margin-bottom: 4px; }
.tier__warranty{ font-size: 12px; color: var(--ink-soft); margin-bottom: 22px; }
.tier--featured .tier__warranty{ color: rgba(243,238,228,0.6); }
.tier--featured .tier__price{ color: var(--brass-light); }
.tier__perks{ display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tier__perks li{
  font-size: 14px; color: var(--ink-soft); line-height: 1.45;
  padding-left: 26px; position: relative;
}
.tier__perks li::before{
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10.5' fill='none' stroke='%236B7280' stroke-width='1.1'/%3E%3Cpath d='M7.5 12.3l3 3 6-6.6' fill='none' stroke='%236B7280' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.tier--featured .tier__perks li::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10.5' fill='none' stroke='%23C7CCD1' stroke-width='1.1'/%3E%3Cpath d='M7.5 12.3l3 3 6-6.6' fill='none' stroke='%23C7CCD1' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

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

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery{ max-width: var(--container); margin: 0 auto; padding: 100px var(--gutter) 120px; }
.gallery__head{ text-align: center; }
.gallery__head h2{
  font-size: clamp(32px, 5vw, 56px);
  margin: 4px 0 48px;
  font-weight: 500;
}
.gallery__head h2 em{
  font-style: italic;
  color: var(--brass);
}
.gallery__grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.gallery__item{
  margin:0;
  position: relative;
  overflow: hidden;
  border-radius: 16px 36px 16px 16px;
  border: 1px solid var(--line);
}
.gallery__item img, .gallery__item video{ width:100%; height:100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__item:hover img{ transform: scale(1.045); }
.gallery__item--lg{ grid-row: 1 / 3; }
.gallery__item--lg img, .gallery__item--lg video{ aspect-ratio: 4/5; }
.gallery__item:not(.gallery__item--lg) img{ aspect-ratio: 16/10; }
.gallery__item figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 14px 18px;
  font-size: 12.5px; color: #fff;
  background: linear-gradient(0deg, rgba(20,16,11,0.65), transparent);
}

@media (max-width: 780px){
  .gallery{ padding: 70px var(--gutter) 80px; }
  .gallery__head h2{ margin-bottom: 28px; }
  .gallery__grid{ grid-template-columns: 1fr; gap: 14px; }
  .gallery__item--lg{ grid-row: auto; }
  .gallery__item--lg img, .gallery__item--lg video{ aspect-ratio: 16/10; }
}

@media (max-width: 480px){
  .gallery{ padding: 56px var(--gutter) 64px; }
  .gallery__item{ border-radius: 14px 26px 14px 14px; }
  .gallery__item figcaption{ padding: 12px 14px; font-size: 12px; }
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials{
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--gutter) 110px;
  text-align: center;
}
.testimonials__eyebrow{ justify-content: center; }
.testimonials__title{
  font-size: clamp(28px, 4vw, 44px);
  margin: 4px 0 14px;
}
.testimonials__sub{ color: var(--ink-soft); max-width: 520px; margin: 0 auto 48px; }

.trust-badges{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 0;
}
.trust-badge{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 22px;
}
.trust-badge__icon{ font-size: 24px; display:block; margin-bottom: 14px; }
.trust-badge__label{ font-weight: 600; font-size: 16px; color: var(--ink); margin: 0 0 8px; }
.trust-badge__text{ font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin:0; }

@media (max-width: 880px){
  .trust-badges{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .trust-badges{ grid-template-columns: 1fr; }
}

.testimonials__carousel{
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonials__track{
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonials__track::-webkit-scrollbar{ display: none; }

.testi-card{
  scroll-snap-align: start;
  flex: 0 0 340px;
  background: var(--walnut-deep);
  color: rgba(243,238,228,0.85);
  border-radius: 16px;
  padding: 26px 24px;
  text-align: left;
}
.testi-card__head{ display:flex; align-items:center; gap:12px; margin-bottom: 14px; }
.testi-card__avatar{
  width: 42px; height:42px; border-radius:50%;
  background: var(--brass-light);
  color: var(--walnut-deep);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:600; font-size:16px;
  flex-shrink:0;
}
.testi-card__name{ font-weight:600; color: var(--ivory); font-size:14.5px; }
.testi-card__date{ font-size:12px; color: rgba(243,238,228,0.5); }
.testi-card__stars{ color: #E3B341; font-size:14px; letter-spacing:2px; margin-bottom:10px; }
.testi-card__text{ font-size:14.5px; line-height:1.6; }

.testi-card--empty{
  flex: 0 0 100%;
  background: transparent;
  border: 1px dashed var(--line-strong);
  display:flex; flex-direction:column; align-items:center; gap:14px;
  padding: 56px 24px;
}
.testi-card__empty-icon{ font-size: 26px; color: var(--brass); margin:0; }
.testi-card__empty-text{ color: var(--ink-soft); margin:0; font-size:15px; }

.testimonials__arrow{
  flex-shrink:0;
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid var(--line-strong);
  background: var(--paper);
  font-size:22px;
  cursor:pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.testimonials__arrow:hover{ background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.testimonials__cta{
  margin-top: 44px;
  display:flex; flex-direction:column; align-items:center; gap:14px;
  color: var(--ink-soft);
}

@media (max-width: 700px){
  .testimonials__arrow{ display:none; }
  .testi-card{ flex-basis: 86%; }
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq{
  max-width: 760px;
  margin: 0 auto;
  padding: 100px var(--gutter) 110px;
  text-align: center;
}
.faq__eyebrow{ justify-content: center; }
.faq__title{
  font-size: clamp(28px, 4vw, 44px);
  margin: 4px 0 48px;
}
.faq__list{ text-align: left; }
.faq__item{
  border-bottom: 1px solid var(--line);
}
.faq__q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq__icon{
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--brass);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq__q[aria-expanded="true"] .faq__icon{
  transform: rotate(45deg);
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--ivory);
}
.faq__a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq__a p{
  margin: 0 0 22px;
  padding: 0 4px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ===========================================================
   CTA BAND
   =========================================================== */
.ctaband{
  position: relative;
  color: var(--ink);
  padding: 110px var(--gutter);
  overflow: hidden;
  background: var(--paper);
}
.ctaband__inner{ position: relative; z-index: 1; }
.ctaband__inner{ max-width: 820px; margin: 0 auto; text-align:center; }
.ctaband__inner h2{
  font-size: clamp(26px, 3.6vw, 38px);
  line-height:1.3;
  margin-bottom: 48px;
  color: var(--ink);
}
.ctaband__form{
  display:grid; grid-template-columns: 1fr 1fr; gap: 18px;
  position: relative;
  background-color: #f3f2ef;
  background-image:
    radial-gradient(at 65% 30%, rgba(120,122,125,0.12), transparent 38%),
    radial-gradient(at 22% 75%, rgba(120,122,125,0.10), transparent 42%),
    linear-gradient(124deg,
      transparent 31%,
      rgba(255,255,255,0.65) 34.5%,
      rgba(32,34,37,0.78) 36.5%,
      rgba(32,34,37,0.22) 37.6%,
      rgba(255,255,255,0.45) 40%,
      transparent 45%),
    linear-gradient(58deg,
      transparent 53%,
      rgba(255,255,255,0.55) 56%,
      rgba(48,50,54,0.7) 57.6%,
      rgba(48,50,54,0.16) 58.6%,
      rgba(255,255,255,0.35) 61%,
      transparent 66%),
    linear-gradient(150deg,
      transparent 12%,
      rgba(255,255,255,0.4) 14.4%,
      rgba(151,128,92,0.55) 15.8%,
      rgba(151,128,92,0.12) 16.8%,
      transparent 20%),
    linear-gradient(40deg,
      transparent 69%,
      rgba(60,62,65,0.42) 70.6%,
      rgba(60,62,65,0.1) 71.6%,
      transparent 74%),
    linear-gradient(100deg,
      transparent 79%,
      rgba(60,62,65,0.38) 80.2%,
      transparent 82.5%),
    radial-gradient(at 22% 18%, rgba(255,255,255,0.95), transparent 48%),
    radial-gradient(at 78% 82%, rgba(255,255,255,0.75), transparent 52%),
    linear-gradient(165deg, #fcfbf9 0%, #f2f1ed 42%, #e9e7e2 68%, #f7f6f2 100%);
  background-size: 150% 150%;
  background-position: 30% 20%;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 30px;
  text-align:left;
  box-shadow:
    0 40px 80px -28px rgba(24,20,15,0.22),
    inset 0 1px 0 rgba(255,255,255,0.7);
  overflow: hidden;
}
.ctaband__form::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 47%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.35) 53%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}
.field{ position: relative; z-index: 1; display:flex; flex-direction:column; gap:6px; }
.field--full{ grid-column: 1 / -1; }
.field label{ font-size:12.5px; color: var(--ink-soft); font-weight:700; letter-spacing:.03em; text-transform: uppercase; }
.field input, .field textarea{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(28,30,32,0.14);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder{ color: rgba(28,30,32,0.4); }
.field input:focus, .field textarea:focus{ outline: 2px solid var(--brass); border-color:transparent; background: rgba(255,255,255,0.85); }
.ctaband__form .btn--wide{ position: relative; z-index: 1; grid-column: 1/-1; margin-top: 6px; box-shadow: 0 14px 30px -10px rgba(0,0,0,0.45); }
.ctaband__formnote{ position: relative; z-index: 1; grid-column:1/-1; font-size: 13px; color: var(--ink-soft); min-height:18px; }
.ctaband__finenote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 26px;
  letter-spacing: 0.01em;
}

.ctaband__direct{ display:flex; justify-content:center; gap: 26px; margin-top: 34px; font-weight:600; color: var(--ink); }
.ctaband__direct a{ border-bottom: 1px solid var(--line-strong); padding-bottom:2px; }
.ctaband__direct a:hover{ border-color: var(--brass); }

@media (max-width: 600px){
  .ctaband{ padding: 64px var(--gutter) 72px; }
  .ctaband__inner h2{ margin-bottom: 32px; }
  .ctaband__form{ grid-template-columns: 1fr; padding: 20px; gap: 14px; }
  .field input, .field textarea{ font-size: 16px; padding: 13px 14px; }
  .ctaband__finenote{ font-size: 14.5px; margin-top: 20px; }
  .ctaband__direct{ flex-direction: column; align-items: center; gap: 14px; margin-top: 28px; }
}

@media (max-width: 380px){
  .ctaband__form{ padding: 16px; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer{
  position: relative;
  background: var(--ink);
  color: rgba(243,238,228,0.7);
  overflow: hidden;
}
.footer::before{
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/armor-scales.jpg");
  background-size: 380px;
  background-repeat: repeat;
  opacity: 0.38;
  mix-blend-mode: screen;
}
.footer::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,15,0.35), rgba(20,22,15,0.82));
}
.footer__inner, .footer__bottom{ position: relative; z-index: 1; }
.footer__inner{
  max-width: var(--container); margin:0 auto;
  padding: 64px var(--gutter) 40px;
  display:flex; flex-wrap:wrap; gap: 40px; justify-content:space-between;
}
.footer__brand{ display:flex; align-items:center; gap:10px; color: var(--ivory); font-family: var(--font-display); font-size:15px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.footer__logo{
  height:36px; width:auto;
  filter: invert(1) brightness(2);
}
.footer__links{ display:flex; gap: 26px; font-size:14px; }
.footer__links a:hover{ color: var(--ivory); }
.footer__contact{ display:flex; flex-direction:column; gap:8px; font-size:14px; text-align:right; }
.footer__contact a:hover{ color: var(--ivory); }
.footer__bottom{
  position: relative;
  border-top: 1px solid rgba(243,238,228,0.12);
  max-width: var(--container); margin:0 auto;
  padding: 20px var(--gutter) 32px;
  display:flex; justify-content:space-between; font-size: 12.5px;
  color: rgba(243,238,228,0.45);
}
@media (max-width:700px){
  .footer__inner{ flex-direction:column; }
  .footer__contact{ text-align:left; }
  .footer__bottom{ flex-direction:column; gap:8px; }
}

.nav__links a.nav__pricing-btn{
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 1;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav__links a.nav__pricing-btn:hover{
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* ===========================================================
   MEMBERSHIP — nav link + modal
   =========================================================== */
.nav__links a.nav__membership-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--walnut-deep);
  color: var(--brass-light) !important;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border: 1px solid var(--walnut);
  border-radius: 2px;
  opacity: 1;
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav__links a.nav__membership-link:hover{
  background: var(--walnut);
  border-color: var(--brass);
}
@media (prefers-reduced-motion: reduce){
  .nav__links a.nav__membership-link{ animation: none; }
}

#navMembershipLinkMobile{
  background: linear-gradient(135deg, rgba(107,114,128,0.14), rgba(58,62,66,0.06));
  color: var(--walnut) !important;
  font-weight: 700 !important;
}

.modal{
  position: fixed; inset:0; z-index: 300;
  display: flex; align-items:center; justify-content:center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.modal.is-open{ opacity:1; visibility: visible; }
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(24,20,15,0.55);
  backdrop-filter: blur(3px);
}
.modal__panel{
  position: relative;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 60px 130px -35px rgba(10,30,20,0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform .4s var(--ease);
}
.modal.is-open .modal__panel{ transform: translateY(0) scale(1); }
.modal__close{
  position: absolute; top: 16px; right: 16px;
  width: 34px; height:34px; border-radius:50%;
  background: var(--ivory); border: 1px solid var(--line);
  font-size: 14px; cursor:pointer; z-index:2;
}
.modal__close:hover{ background:#fff; }
.modal__banner{
  position: relative;
  height: 120px;
  background-image: url("../img/armor-scales.jpg");
  background-size: 320px;
  background-repeat: repeat;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal__banner::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,4,0.25), rgba(10,8,4,0.55));
}
.modal__banner-logo{
  position: relative;
  z-index: 1;
  height: 54px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}
.modal__card{ padding: 32px 38px 38px; }
.modal__title{
  font-size: 32px;
  margin: 4px 0 6px;
}
.modal__title span{ font-size: 14px; vertical-align: super; color: var(--brass); }
.modal__price{ font-size: 17px; color: var(--ink-soft); margin-bottom: 18px; }
.modal__price-num{ font-family: var(--font-display); font-size: 26px; color: var(--ink); font-weight:600; }
.modal__lede{ color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; }

.modal__perks{ display:flex; flex-direction:column; gap:18px; margin-bottom: 32px; }
.modal__perks li{ display:grid; grid-template-columns: 30px 1fr; gap: 14px; }
.modal__perk-icon{ font-size: 18px; line-height:1.4; }
.modal__perks strong{ font-size: 14.5px; display:block; margin-bottom:2px; }
.modal__perks p{ font-size: 13.5px; color: var(--ink-soft); line-height:1.45; }

.modal__note{ text-align:center; font-size: 13px; color: var(--sage); margin-top: 12px; min-height: 16px; }

@media (max-width: 540px){
  .modal__card{ padding: 60px 24px 30px; }
  .modal__title{ font-size: 27px; }
}
