/* ================================================================
   ARMONELLE — Main CSS
   Matches premium mockup design system exactly
   ================================================================ */

/* ── Variables ── */
:root {
  --travertine:    #F4F1EE;
  --travertine-dk: #EAE5DF;
  --cream:         #F8F6F3;
  --cream-dk:      #EDE8E1;
  --stone:         #C9C0B5;
  --stone-dk:      #A89D92;
  --olive:         #5C6B5A;
  --olive-lt:      #7A8C77;
  --olive-dk:      #3E4C3C;
  --charcoal:      #2C2C29;
  --charcoal-lt:   #4A4A45;
  --charcoal-xs:   #7A7A74;
  --gold:          #B09268;
  --gold-lt:       #C9AD89;
  --gold-xs:       #E2D0B8;
  --white:         #FDFCFB;
  --ink:           #1A1A17;

  --serif:     'Cormorant', Georgia, serif;
  --serif-alt: 'Cormorant Garamond', Georgia, serif;
  --sans:      'Montserrat', sans-serif;

  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--travertine);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* Page needs padding for fixed nav */
.site-content,
#content,
.elementor-page {
  padding-top: var(--nav-h);
}

/* ── Utility Classes ── */
.arm-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.arm-section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.arm-section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.arm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: var(--nav-h);
  transition: background 0.5s var(--ease-luxury), border-color 0.5s, box-shadow 0.5s;
  border-bottom: 1px solid transparent;
}

.arm-nav.scrolled {
  background: rgba(244, 241, 238, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(176, 146, 104, 0.15);
  box-shadow: 0 1px 40px rgba(44, 44, 41, 0.06);
}

.arm-nav__logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  flex-shrink: 0;
}
.arm-nav__logo::after {
  content: 'LLC';
  position: absolute;
  right: -32px;
  top: -4px;
  font-size: 7px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 300;
}

.arm-nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.arm-nav__links a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.arm-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-luxury);
}
.arm-nav__links a:hover { color: var(--charcoal); }
.arm-nav__links a:hover::after { width: 100%; }

.arm-nav__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.arm-nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  color: var(--charcoal-lt);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.arm-nav__cart:hover { opacity: 1; }
.arm-nav__cart svg { width: 20px; height: 20px; }
.arm-nav__cart-count {
  position: absolute;
  top: -8px; right: -8px;
  width: 16px; height: 16px;
  background: var(--olive);
  color: var(--white);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
}

.arm-nav__cta {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--olive);
  padding: 12px 28px;
  transition: background 0.35s, transform 0.35s;
  white-space: nowrap;
}
.arm-nav__cta:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

.arm-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.arm-nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease-luxury);
  transform-origin: center;
}
.arm-nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.arm-nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.arm-nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.arm-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(244, 241, 238, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity 0.3s;
}
.arm-mobile-menu.open {
  display: flex;
  opacity: 1;
}
.arm-mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 18px;
  color: var(--charcoal-lt);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}
.arm-mobile-menu__close:hover { color: var(--charcoal); }
.arm-mobile-menu__link {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.arm-mobile-menu__link:hover { color: var(--olive); }
.arm-mobile-menu__cta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--olive);
  padding: 16px 40px;
  margin-top: 8px;
  transition: background 0.3s;
}
.arm-mobile-menu__cta:hover { background: var(--charcoal); }

/* ================================================================
   TICKER / MARQUEE
   ================================================================ */
.arm-ticker {
  height: 48px;
  background: var(--olive-dk);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.arm-ticker__track {
  display: flex;
  align-items: center;
  animation: arm-ticker 32s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 0;
}
.arm-ticker__track:hover { animation-play-state: paused; }
.arm-ticker__item {
  display: inline-flex;
  align-items: center;
  padding: 0 48px;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 241, 238, 0.65);
  flex-shrink: 0;
  white-space: nowrap;
}
.arm-ticker__dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-lt);
  flex-shrink: 0;
}
@keyframes arm-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   NEWSLETTER SECTION
   ================================================================ */
.arm-newsletter {
  padding: 120px 72px;
  background: var(--olive-dk);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.arm-newsletter::before {
  content: 'ARMONELLE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 220px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.15em;
  user-select: none;
}
.arm-newsletter__left .arm-section-label::before { background: var(--gold-lt); }
.arm-newsletter__left .arm-eyebrow { color: rgba(176, 146, 104, 0.65); }
.arm-newsletter__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.06;
  color: rgba(244, 241, 238, 0.9);
}
.arm-newsletter__title em { font-style: italic; color: var(--gold-lt); }
.arm-newsletter__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(244, 241, 238, 0.4);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.arm-newsletter__form-group {
  display: flex;
  margin-bottom: 14px;
}
.arm-newsletter__input {
  flex: 1;
  padding: 18px 24px;
  background: rgba(244, 241, 238, 0.07);
  border: 1px solid rgba(244, 241, 238, 0.12);
  border-right: none;
  color: rgba(244, 241, 238, 0.85);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  outline: none;
  transition: background 0.3s, border-color 0.3s;
}
.arm-newsletter__input::placeholder { color: rgba(244, 241, 238, 0.25); }
.arm-newsletter__input:focus {
  background: rgba(244, 241, 238, 0.1);
  border-color: rgba(176, 146, 104, 0.35);
}
.arm-newsletter__submit {
  padding: 18px 32px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s, transform 0.35s;
}
.arm-newsletter__submit:hover {
  background: var(--gold-lt);
  transform: translateX(2px);
}
.arm-newsletter__consent {
  font-size: 9.5px;
  font-weight: 300;
  color: rgba(244, 241, 238, 0.25);
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.arm-newsletter__consent a { color: rgba(244, 241, 238, 0.4); text-decoration: underline; }

/* ================================================================
   FOOTER
   ================================================================ */
.arm-footer {
  background: var(--charcoal);
  padding: 96px 72px 44px;
}
.arm-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244, 241, 238, 0.06);
  margin-bottom: 44px;
}
.arm-footer__logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 238, 0.88);
  margin-bottom: 8px;
}
.arm-footer__tagline {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.arm-footer__body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(244, 241, 238, 0.28);
  max-width: 260px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.arm-footer__social {
  display: flex;
  gap: 12px;
}
.arm-footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(244, 241, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(244, 241, 238, 0.4);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.arm-footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(176, 146, 104, 0.06);
}
.arm-footer__col-title {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
}
.arm-footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.arm-footer__links li a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(244, 241, 238, 0.35);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  line-height: 1;
}
.arm-footer__links li a:hover { color: rgba(244, 241, 238, 0.8); }
.arm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.arm-footer__copy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(244, 241, 238, 0.18);
  letter-spacing: 0.08em;
}
.arm-footer__origin {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.arm-footer__origin-text {
  font-size: 10px;
  font-weight: 300;
  color: rgba(244, 241, 238, 0.18);
  letter-spacing: 0.1em;
}
.arm-footer__legal {
  display: flex;
  gap: 32px;
}
.arm-footer__legal a {
  font-size: 10px;
  font-weight: 300;
  color: rgba(244, 241, 238, 0.22);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.arm-footer__legal a:hover { color: rgba(244, 241, 238, 0.55); }

/* ================================================================
   HOMEPAGE SECTIONS
   ================================================================ */

/* ── Hero ── */
.arm-hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
}
.arm-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 72px 100px 72px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #EDE7DC 0%, #E4DDD3 40%, #D8CFC4 100%);
}
.arm-hero__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at -10% 120%, rgba(176,146,104,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 110% -10%, rgba(92,107,90,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.arm-hero__tagline {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  animation: arm-fadeUp 1s 0.2s var(--ease-luxury) forwards;
}
.arm-hero__tagline::before {
  content: '';
  width: 44px; height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(176,146,104,0.3));
  flex-shrink: 0;
}
.arm-hero__headline {
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 86px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 36px;
  opacity: 0;
  animation: arm-fadeUp 1.1s 0.4s var(--ease-luxury) forwards;
}
.arm-hero__headline em { font-style: italic; color: var(--olive); }
.arm-hero__headline .line-2 {
  display: block;
  font-size: clamp(38px, 4.5vw, 62px);
  color: var(--charcoal-lt);
  margin-top: 4px;
}
.arm-hero__body {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-xs);
  max-width: 380px;
  margin-bottom: 52px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: arm-fadeUp 1.1s 0.6s var(--ease-luxury) forwards;
}
.arm-hero__ctas {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: arm-fadeUp 1.1s 0.8s var(--ease-luxury) forwards;
}
.arm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--olive);
  padding: 17px 40px;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.arm-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--olive-dk);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-luxury);
}
.arm-btn-primary:hover::before { transform: translateX(0); }
.arm-btn-primary span { position: relative; z-index: 1; }
.arm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(62,76,60,0.25);
  color: var(--white);
}
.arm-btn-ghost {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s, gap 0.3s;
  white-space: nowrap;
}
.arm-btn-ghost::after { content: '→'; font-size: 12px; transition: transform 0.3s; }
.arm-btn-ghost:hover { color: var(--olive); gap: 14px; }
.arm-btn-ghost:hover::after { transform: translateX(4px); }

.arm-hero__right {
  position: relative;
  overflow: hidden;
}
.arm-hero__visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #C8BDB0 0%, #B8ADA0 30%, #A8A098 60%, #9A9490 100%);
}
.arm-hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(ellipse 600px 800px at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 300px 500px at 20% 80%, rgba(80,70,60,0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.arm-hero__light-ray {
  position: absolute;
  top: -20%; right: -10%;
  width: 70%; height: 80%;
  background: linear-gradient(190deg, rgba(255,248,235,0.18) 0%, rgba(255,240,200,0.08) 30%, transparent 70%);
  transform: rotate(-15deg);
  z-index: 2;
  pointer-events: none;
}
.arm-hero__composition {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.arm-hero__surface {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(170deg, rgba(220,210,195,0.4) 0%, rgba(200,190,175,0.6) 100%);
  border-top: 1px solid rgba(255,255,255,0.2);
}
/* Steam */
.arm-steam {
  position: absolute;
  top: 15%;
  z-index: 4;
  display: flex;
  gap: 18px;
  opacity: 0.5;
}
.arm-steam-wisp {
  width: 2px; height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
  border-radius: 2px;
  animation: arm-steamRise 3s ease-in-out infinite;
  transform-origin: bottom;
}
.arm-steam-wisp:nth-child(2) { animation-delay: 0.8s; height: 45px; }
.arm-steam-wisp:nth-child(3) { animation-delay: 1.6s; height: 70px; }
@keyframes arm-steamRise {
  0% { transform: scaleX(1) translateY(0); opacity: 0; }
  30% { opacity: 0.8; }
  100% { transform: scaleX(2.5) translateY(-40px); opacity: 0; }
}
/* Hero badge */
.arm-hero__badge {
  position: absolute;
  top: 44px; right: 44px;
  z-index: 10;
  width: 100px; height: 100px;
}
.arm-hero__badge-ring {
  width: 100%; height: 100%;
  animation: arm-rotateSlow 18s linear infinite;
}
.arm-hero__badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.arm-hero__badge-icon { font-size: 16px; line-height: 1; }
.arm-hero__badge-text {
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  font-family: var(--sans);
}
@keyframes arm-rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Scroll indicator */
.arm-hero__scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  opacity: 0;
  animation: arm-fadeIn 1s 1.4s forwards;
}
.arm-hero__scroll-track {
  width: 1px; height: 56px;
  background: rgba(176,146,104,0.2);
  position: relative;
  overflow: hidden;
}
.arm-hero__scroll-bar {
  position: absolute;
  top: -100%;
  width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: arm-scrollDown 2s ease-in-out infinite;
}
@keyframes arm-scrollDown {
  0%   { top: -100%; }
  100% { top: 200%; }
}
.arm-hero__scroll-label {
  font-size: 7.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone-dk);
  font-family: var(--sans);
}

/* ── Ritual Steps ── */
.arm-ritual {
  padding: 160px 72px;
  background: var(--cream);
  position: relative;
}
.arm-ritual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-lt), transparent);
}
.arm-ritual__header { max-width: 560px; margin-bottom: 100px; }
.arm-ritual__title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.arm-ritual__title em { font-style: italic; color: var(--olive-lt); }
.arm-ritual__subtitle {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-xs);
}
.arm-ritual__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.arm-ritual__steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--stone);
  z-index: 0;
}
.arm-ritual__step { padding: 0 52px; position: relative; z-index: 1; }
.arm-ritual__step:nth-child(2) {
  border-left: 1px solid var(--travertine-dk);
  border-right: 1px solid var(--travertine-dk);
}
.arm-ritual__icon-wrap {
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--travertine);
  border: 1px solid var(--gold-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-spring);
  font-size: 32px;
}
.arm-ritual__icon-wrap:hover {
  background: var(--white);
  border-color: var(--gold-lt);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(92,107,90,0.12);
}
.arm-ritual__step-num {
  position: absolute;
  top: -10px; right: -10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--white);
  font-family: var(--sans);
}
.arm-ritual__step-eyebrow {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--sans);
}
.arm-ritual__step-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1;
}
.arm-ritual__step-desc {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-xs);
  letter-spacing: 0.02em;
}

/* ── Products ── */
.arm-products {
  padding: 160px 72px;
  background: var(--travertine);
}
.arm-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.arm-products__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--charcoal);
}
.arm-products__title em { font-style: italic; color: var(--olive); }
.arm-products__view-all {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: color 0.3s, gap 0.3s;
  font-family: var(--sans);
}
.arm-products__view-all::after { content: '→'; transition: transform 0.3s; }
.arm-products__view-all:hover { color: var(--olive); gap: 14px; }
.arm-products__view-all:hover::after { transform: translateX(2px); }
.arm-products__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto;
  gap: 20px;
}
.arm-product-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-dk);
  transition: box-shadow 0.5s var(--ease-luxury);
  cursor: pointer;
}
.arm-product-card:hover { box-shadow: 0 30px 80px rgba(44,44,41,0.12); }
.arm-product-card--hero { grid-row: span 2; }
.arm-product-card__visual { position: relative; overflow: hidden; }
.arm-product-card--hero .arm-product-card__visual { height: 640px; }
.arm-product-card--sm   .arm-product-card__visual { height: 290px; }
.arm-product-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-luxury);
}
.arm-product-card:hover .arm-product-card__bg { transform: scale(1.04); }
.arm-product-card--silk   .arm-product-card__bg { background: linear-gradient(145deg, #C8BFAE 0%, #B0A898 35%, #9A9088 70%, #8A8078 100%); }
.arm-product-card--loofah .arm-product-card__bg { background: linear-gradient(145deg, #BEB8A8 0%, #ABA298 40%, #989080 100%); }
.arm-product-card--bundle .arm-product-card__bg { background: linear-gradient(145deg, #B4BAA8 0%, #A4AA98 40%, #949888 100%); }
.arm-product-card__gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(44,44,41,0.3) 0%, transparent 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}
.arm-product-card:hover .arm-product-card__gradient { opacity: 1; }
.arm-product-card__illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-size: 80px;
  transition: transform 0.8s var(--ease-luxury);
}
.arm-product-card--hero .arm-product-card__illustration { font-size: 120px; }
.arm-product-card:hover .arm-product-card__illustration { transform: translateY(-10px); }
.arm-product-card__float-tag {
  position: absolute;
  top: 28px; left: 28px;
  z-index: 5;
  background: rgba(244,241,238,0.92);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid rgba(176,146,104,0.2);
  font-family: var(--sans);
}
.arm-product-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.arm-product-card:hover .arm-product-card__overlay { opacity: 1; pointer-events: auto; }
.arm-product-card__quick-add {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(44,44,41,0.85);
  backdrop-filter: blur(8px);
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-spring), background 0.3s;
  font-family: var(--sans);
  cursor: pointer;
}
.arm-product-card:hover .arm-product-card__quick-add { transform: translateY(0); }
.arm-product-card__quick-add:hover { background: var(--olive); border-color: var(--olive); }
.arm-product-card__info {
  padding: 28px 32px 32px;
  background: var(--white);
  border-top: 1px solid var(--travertine-dk);
}
.arm-product-card__tag {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: var(--sans);
}
.arm-product-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.2;
}
.arm-product-card--hero .arm-product-card__name { font-size: 28px; }
.arm-product-card__desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal-xs);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.arm-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.arm-product-card__price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
}
.arm-product-card--sm .arm-product-card__price { font-size: 20px; }
.arm-product-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 1px;
}
.arm-product-card__stars span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--charcoal-xs);
  letter-spacing: 0.02em;
  margin-left: 4px;
}

/* ── Origin / Trust ── */
.arm-origin {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.arm-origin__visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2E2C27 0%, #262420 40%, #1E1C18 100%);
}
.arm-origin__arch-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,146,104,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.arm-origin__stat-block {
  position: absolute;
  bottom: 60px; left: 52px; right: 52px;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(176,146,104,0.2);
  padding-top: 36px;
}
.arm-origin__stat { flex: 1; padding-right: 32px; }
.arm-origin__stat + .arm-origin__stat {
  padding-left: 32px;
  padding-right: 0;
  border-left: 1px solid rgba(176,146,104,0.15);
}
.arm-origin__stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.arm-origin__stat-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,241,238,0.3);
  font-family: var(--sans);
}
.arm-origin__content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.arm-origin__content::before {
  content: '';
  position: absolute;
  left: 0; top: 80px; bottom: 80px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(176,146,104,0.2), transparent);
}
.arm-origin__eyebrow { color: rgba(176,146,104,0.7); margin-bottom: 28px; }
.arm-origin__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.06;
  color: rgba(244,241,238,0.92);
  margin-bottom: 32px;
}
.arm-origin__title em { font-style: italic; color: var(--gold-lt); }
.arm-origin__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(244,241,238,0.45);
  margin-bottom: 52px;
  letter-spacing: 0.02em;
  max-width: 420px;
}
.arm-origin__locations { display: flex; flex-direction: column; gap: 16px; margin-bottom: 52px; }
.arm-origin__location { display: flex; align-items: center; gap: 18px; }
.arm-origin__location-dot {
  position: relative; width: 10px; height: 10px; flex-shrink: 0;
}
.arm-origin__location-dot::before {
  content: '';
  position: absolute; inset: 2px;
  border-radius: 50%;
  background: var(--gold);
}
.arm-origin__location-dot::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(176,146,104,0.4);
  animation: arm-pulse 2.5s ease-in-out infinite;
}
.arm-origin__location-dot--secondary::before { background: var(--olive-lt); }
.arm-origin__location-dot--secondary::after { border-color: rgba(122,140,119,0.4); }
@keyframes arm-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0; }
}
.arm-origin__location-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(244,241,238,0.5);
  letter-spacing: 0.04em;
}
.arm-origin__location-text strong { font-weight: 400; color: rgba(244,241,238,0.82); }
.arm-origin__cert {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border: 1px solid rgba(176,146,104,0.2);
  background: rgba(176,146,104,0.06);
  max-width: fit-content;
}
.arm-origin__cert-icon { font-size: 22px; opacity: 0.8; }
.arm-origin__cert-text {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,238,0.5);
  line-height: 1.7;
  font-family: var(--sans);
}
.arm-origin__cert-text strong { display: block; color: var(--gold-lt); letter-spacing: 0.3em; }

/* ── Reviews ── */
.arm-reviews {
  padding: 140px 72px;
  background: var(--cream);
  position: relative;
}
.arm-reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--stone), transparent);
}
.arm-reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
}
.arm-reviews__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--charcoal);
}
.arm-reviews__title em { font-style: italic; color: var(--olive-lt); }
.arm-reviews__meta { text-align: right; padding-bottom: 8px; }
.arm-reviews__rating {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.arm-reviews__stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 4px; }
.arm-reviews__count { font-size: 9px; font-weight: 300; letter-spacing: 0.15em; color: var(--charcoal-xs); font-family: var(--sans); }
.arm-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.arm-review-card {
  background: var(--white);
  padding: 48px 44px;
  position: relative;
  transition: background 0.4s;
}
.arm-review-card:hover { background: var(--travertine); }
.arm-review-card__verified {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-lt);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
}
.arm-review-card__verified::before { content: '✓'; font-size: 9px; }
.arm-review-card__quote {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold-xs);
  margin-bottom: 20px;
  font-weight: 300;
}
.arm-review-card__stars { color: var(--gold); font-size: 10px; letter-spacing: 2px; margin-bottom: 24px; }
.arm-review-card__text {
  font-family: var(--serif-alt);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.arm-review-card__author {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal-xs);
  font-family: var(--sans);
}
.arm-review-card__location {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--stone-dk);
  margin-top: 4px;
  font-family: var(--sans);
}

/* ── Animations ── */
@keyframes arm-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes arm-fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.7; }
}

/* ── Scroll reveal ── */
.arm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.arm-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   INNER PAGES (non-homepage)
   ================================================================ */
.arm-page-header {
  background: var(--cream);
  padding: 80px 72px 60px;
  border-bottom: 1px solid var(--travertine-dk);
  position: relative;
}
.arm-page-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 72px; right: 72px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-xs), transparent);
}
.arm-page-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.arm-page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 72px;
}
.arm-page-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
  margin-top: 60px;
}
.arm-page-content h2:first-child { margin-top: 0; }
.arm-page-content h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  margin-top: 48px;
}
.arm-page-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-lt);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.arm-page-content a { color: var(--olive); border-bottom: 1px solid var(--gold-xs); transition: border-color 0.3s; }
.arm-page-content a:hover { border-color: var(--olive); }
.arm-page-content hr {
  border: none;
  border-top: 1px solid var(--travertine-dk);
  margin: 48px 0;
}
.arm-page-content strong { font-weight: 400; color: var(--charcoal); }

/* ================================================================
   TABLET RESPONSIVE (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .arm-nav { padding: 0 32px; }
  .arm-hero__left { padding: 0 48px 80px 48px; }
  .arm-ritual { padding: 100px 48px; }
  .arm-ritual__step { padding: 0 32px; }
  .arm-products { padding: 100px 48px; }
  .arm-origin { min-height: 600px; }
  .arm-origin__content { padding: 80px 52px; }
  .arm-reviews { padding: 100px 48px; }
  .arm-newsletter { padding: 80px 48px; gap: 60px; }
  .arm-footer { padding: 72px 48px 40px; }
  .arm-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .arm-page-content { padding: 60px 48px; }
  .arm-page-header { padding: 60px 48px 48px; }
}

/* ================================================================
   MOBILE RESPONSIVE (max 768px)
   ================================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .arm-nav { padding: 0 20px; height: 60px; }
  .arm-nav__links { display: none; }
  .arm-nav__cta { display: none; }
  .arm-nav__hamburger { display: flex; }

  .arm-hero { grid-template-columns: 1fr; grid-template-rows: 1fr auto; height: auto; min-height: 100svh; }
  .arm-hero__left { padding: 100px 24px 48px; justify-content: center; min-height: 55svh; }
  .arm-hero__headline { font-size: clamp(40px, 11vw, 60px); }
  .arm-hero__headline .line-2 { font-size: clamp(28px, 7.5vw, 42px); }
  .arm-hero__body { font-size: 13px; max-width: 100%; margin-bottom: 36px; }
  .arm-hero__ctas { flex-direction: column; align-items: flex-start; gap: 20px; }
  .arm-btn-primary { padding: 16px 32px; font-size: 10px; }
  .arm-hero__right { height: 52vw; min-height: 240px; max-height: 360px; }
  .arm-hero__badge { width: 72px; height: 72px; top: 16px; right: 16px; }
  .arm-hero__scroll { display: none; }

  .arm-ticker { height: 40px; }
  .arm-ticker__item { font-size: 7.5px; padding: 0 28px; }

  .arm-ritual { padding: 72px 24px; }
  .arm-ritual__header { margin-bottom: 60px; }
  .arm-ritual__steps { grid-template-columns: 1fr; gap: 0; }
  .arm-ritual__steps::before { display: none; }
  .arm-ritual__step { padding: 40px 0; border-left: none !important; border-right: none !important; border-bottom: 1px solid var(--travertine-dk); }
  .arm-ritual__step:last-child { border-bottom: none; }
  .arm-ritual__icon-wrap { width: 80px; height: 80px; margin-bottom: 28px; }
  .arm-ritual__step-title { font-size: 30px; }

  .arm-products { padding: 72px 24px; }
  .arm-products__header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 48px; }
  .arm-products__grid { grid-template-columns: 1fr; gap: 16px; }
  .arm-product-card--hero { grid-row: span 1; }
  .arm-product-card--hero .arm-product-card__visual { height: 72vw; max-height: 360px; }
  .arm-product-card--sm   .arm-product-card__visual { height: 60vw; max-height: 280px; }
  .arm-product-card__info { padding: 20px 20px 24px; }
  .arm-product-card__overlay { opacity: 1; pointer-events: auto; }
  .arm-product-card__quick-add { transform: translateY(0); }

  .arm-origin { grid-template-columns: 1fr; min-height: auto; }
  .arm-origin__visual { height: 56vw; min-height: 240px; max-height: 340px; }
  .arm-origin__stat-block { bottom: 20px; left: 24px; right: 24px; padding-top: 20px; }
  .arm-origin__stat-num { font-size: 36px; }
  .arm-origin__content { padding: 56px 24px; }
  .arm-origin__content::before { display: none; }

  .arm-reviews { padding: 72px 24px; }
  .arm-reviews__header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 48px; }
  .arm-reviews__meta { text-align: left; }
  .arm-reviews__grid { grid-template-columns: 1fr; gap: 2px; }
  .arm-review-card { padding: 36px 28px; }
  .arm-review-card__text { font-size: 15px; }

  .arm-newsletter { grid-template-columns: 1fr; padding: 72px 24px; gap: 40px; }
  .arm-newsletter::before { display: none; }

  .arm-footer { padding: 60px 24px 32px; }
  .arm-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .arm-footer__body { max-width: 100%; }
  .arm-footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .arm-footer__legal { gap: 20px; flex-wrap: wrap; }

  .arm-page-header { padding: 40px 24px 32px; }
  .arm-page-content { padding: 40px 24px; }
}

/* ================================================================
   INNER PAGE & BLOG STYLES (added v1.1)
   ================================================================ */

/* WooCommerce container */
.arm-woo-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 72px;
}

/* Post meta on single posts */
.arm-post-meta {
  display: flex;
  gap: 24px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--stone-dk);
  text-transform: uppercase;
  margin-top: 16px;
}

/* Post thumbnail */
.arm-post-thumbnail {
  margin: 0 0 48px;
  overflow: hidden;
}
.arm-post-thumbnail img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* Blog archive grid */
.arm-archive-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.arm-archive-card {
  background: var(--white);
  border: 1px solid var(--travertine-dk);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-luxury);
}
.arm-archive-card:hover { box-shadow: 0 20px 60px rgba(44,44,41,0.08); }
.arm-archive-card__img { display: block; overflow: hidden; }
.arm-archive-card__img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s var(--ease-luxury); }
.arm-archive-card:hover .arm-archive-card__img img { transform: scale(1.03); }
.arm-archive-card__body { padding: 28px 28px 32px; }
.arm-archive-card__meta { margin-bottom: 12px; }
.arm-archive-card__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 12px;
}
.arm-archive-card__title a { color: inherit; transition: color 0.3s; }
.arm-archive-card__title a:hover { color: var(--olive); }
.arm-archive-card__excerpt {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-xs);
  margin-bottom: 20px;
}

/* Pagination */
.nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 48px 72px;
  font-family: var(--sans);
}
.nav-links .page-numbers {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--travertine-dk);
  font-size: 12px;
  color: var(--charcoal-lt);
  transition: all 0.3s;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

@media (max-width: 768px) {
  .arm-woo-container { padding: 40px 24px; }
  .arm-archive-grid { grid-template-columns: 1fr; padding: 40px 24px; }
  .arm-post-meta { flex-direction: column; gap: 8px; }
}
