/* Old North Beard Co. landing page */

:root {
  --brown-950: #100906;
  --brown-900: #190f0a;
  --brown-850: #21140c;
  --brown-800: #2b1a10;
  --brown-700: #3a2415;
  --brown-600: #5f3b20;
  --tobacco: #8b5628;
  --brass: #c89b52;
  --brass-dark: #9b7135;
  --cream: #f4ead9;
  --paper: #fbf2e2;
  --ink: #17100b;
  --pine: #183f2b;
  --deep-pine: #0e2b1d;
  --blue: #496a73;
  --charcoal: #20252a;
  --line: rgba(200, 155, 82, .28);
  --shadow: 0 22px 70px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 0%, rgba(200, 155, 82, .18), transparent 34rem),
    linear-gradient(135deg, var(--brown-950), var(--brown-850) 45%, #080504);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .13;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: .5rem;
  z-index: 20;
  background: var(--brass);
  color: #111;
  padding: .6rem .8rem;
  border-radius: .4rem;
}

.skip-link:focus {
  left: .5rem;
}

.crisis-strip {
  background: #080504;
  border-bottom: 1px solid rgba(200, 155, 82, .25);
  padding: .5rem 1rem;
  text-align: center;
  font-size: .86rem;
  color: rgba(244, 234, 217, .82);
}

.crisis-strip p {
  margin: 0;
}

.crisis-strip strong {
  color: var(--brass);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    linear-gradient(90deg, rgba(16,9,6,.94), rgba(33,20,12,.94)),
    var(--brown-950);
  border-bottom: 1px solid rgba(200, 155, 82, .22);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brass);
  font-weight: 900;
  font-size: 1.15rem;
  background:
    radial-gradient(circle, rgba(200,155,82,.16), transparent 60%),
    #0a0705;
}

.brand-text strong {
  display: block;
  line-height: .95;
  font-size: 1.1rem;
}

.brand-text small {
  display: block;
  color: var(--brass);
  line-height: 1;
  margin-top: .18rem;
  font-size: .74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
  color: rgba(244, 234, 217, .8);
}

.nav-links a:hover {
  color: var(--brass);
}

.nav-button {
  border: 1px solid rgba(200,155,82,.55);
  border-radius: 999px;
  padding: .65rem .9rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(200,155,82,.5);
  background: transparent;
  border-radius: .5rem;
  padding: .65rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12,7,4,.96) 0%, rgba(24,14,8,.86) 40%, rgba(24,14,8,.5) 68%, rgba(24,14,8,.18) 100%),
    radial-gradient(circle at 82% 32%, rgba(200,155,82,.24), transparent 24rem),
    linear-gradient(140deg, #1b1009, #3b2617 50%, #1a100a);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .35;
}

.hero::after {
  content: "";
  position: absolute;
  right: -7vw;
  top: 80px;
  width: 58vw;
  height: 78%;
  background:
    radial-gradient(ellipse at 55% 40%, rgba(244,234,217,.12), transparent 22rem),
    linear-gradient(180deg, rgba(10,7,5,0), rgba(10,7,5,.65)),
    repeating-linear-gradient(90deg, rgba(82,48,25,.38) 0 12px, rgba(36,21,12,.38) 12px 24px);
  border-left: 1px solid rgba(200,155,82,.14);
  transform: skewX(-8deg);
  opacity: .8;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 730px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--brass);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4.4rem, 9vw, 8.3rem);
  line-height: .84;
  letter-spacing: -.075em;
  margin-bottom: 1.2rem;
  text-shadow: 0 16px 50px rgba(0,0,0,.42);
}

.hero-subtitle {
  max-width: 560px;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  color: rgba(244,234,217,.84);
  margin-bottom: 2rem;
}

.hero-actions,
.form-line {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .9rem 1.25rem;
  border-radius: .18rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #c79b52, #946a31);
  color: #120b06;
  border: 1px solid rgba(255,255,255,.18);
}

.btn-ghost {
  background: rgba(9,6,4,.36);
  color: var(--cream);
  border: 1px solid rgba(200,155,82,.6);
}

.hero-product {
  justify-self: end;
  width: min(460px, 100%);
}

.scene-card {
  min-height: 530px;
  border: 1px solid rgba(200,155,82,.28);
  border-radius: .8rem;
  background:
    radial-gradient(circle at 50% 22%, rgba(244,234,217,.18), transparent 16rem),
    linear-gradient(150deg, rgba(255,255,255,.09), rgba(255,255,255,.02)),
    rgba(10,6,4,.38);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.scene-card::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 36%;
  background:
    linear-gradient(180deg, transparent, rgba(9,5,3,.78)),
    repeating-linear-gradient(8deg, rgba(100,62,32,.55) 0 14px, rgba(45,25,13,.55) 14px 28px);
  border-top: 1px solid rgba(200,155,82,.18);
}

.mountain-line {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  color: rgba(244,234,217,.76);
}

.mountain-line svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .65;
}

.mountain-line svg .thin {
  stroke-width: 1.8;
  opacity: .45;
}

.bottle-wrap {
  position: absolute;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%);
  width: 170px;
  height: 390px;
}

.dropper {
  position: absolute;
  left: 50%;
  top: 0;
  width: 78px;
  height: 74px;
  transform: translateX(-50%);
  border-radius: 18px 18px 8px 8px;
  background:
    repeating-linear-gradient(90deg, #0c0b0a 0 5px, #25221e 5px 9px);
  border: 1px solid rgba(255,255,255,.16);
}

.dropper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -46px;
  width: 45px;
  height: 58px;
  border-radius: 50% 50% 42% 42%;
  transform: translateX(-50%);
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.14);
}

.bottle {
  position: absolute;
  left: 50%;
  top: 58px;
  width: 154px;
  height: 310px;
  transform: translateX(-50%);
  border-radius: 32px 32px 20px 20px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), transparent 24%, transparent 70%, rgba(255,255,255,.08)),
    linear-gradient(160deg, #2e1609, #9a561d 45%, #2d1609 72%, #100905);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 26px 65px rgba(0,0,0,.62);
}

.bottle-shine {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 30px;
  height: 220px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.28), transparent);
  opacity: .4;
}

.bottle-label {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 96px;
  min-height: 158px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: .2rem;
  padding: .75rem .5rem;
  background: #f6ead6;
  color: #17100b;
  border: 2px solid #77502a;
  outline: 1px solid rgba(255,255,255,.4);
  box-shadow: inset 0 0 0 4px rgba(119,80,42,.08);
}

.label-brand {
  display: block;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -.05em;
  font-weight: 900;
}

.bottle-label small {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .52rem;
}

.bottle-label strong {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bottle-label em {
  color: #fff;
  background: var(--tobacco);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .64rem;
  padding: .22rem .45rem;
}

.bottle-label span:last-child {
  font-size: .56rem;
  text-transform: uppercase;
}

.hero-props .brush,
.hero-props .comb,
.hero-props .glass {
  position: absolute;
  bottom: 54px;
}

.hero-props .brush {
  left: 42px;
  width: 150px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3a2415, #8a5a2b);
  transform: rotate(-9deg);
}

.hero-props .comb {
  right: 56px;
  width: 120px;
  height: 18px;
  background: repeating-linear-gradient(90deg, #1b1009 0 5px, #c79b52 5px 7px);
  transform: rotate(10deg);
  opacity: .75;
}

.hero-props .glass {
  right: 42px;
  bottom: 108px;
  width: 82px;
  height: 92px;
  border: 3px solid rgba(244,234,217,.32);
  border-radius: 6px 6px 22px 22px;
  background: linear-gradient(180deg, transparent 55%, rgba(190,111,33,.55) 56%);
}

.shop-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(200,155,82,.12), transparent 23rem),
    var(--paper);
  color: var(--ink);
  padding: 4rem 1rem 3rem;
}

.section-header {
  width: min(1060px, 100%);
  margin: 0 auto 2rem;
}

.centered {
  text-align: center;
}

.shop-band .eyebrow,
.ritual-section .eyebrow {
  color: var(--brass-dark);
}

.section-header h2 {
  margin: 0;
  color: #3a2415;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rule {
  display: block;
  width: min(340px, 80%);
  height: 1px;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

.product-row {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 1rem;
}

.scent-card {
  min-height: 315px;
  border: 2px solid currentColor;
  background: #fbf3e6;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(37, 22, 12, .1);
}

.scent-card::before,
.scent-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid currentColor;
  opacity: .28;
  pointer-events: none;
}

.scent-art {
  position: relative;
  min-height: 150px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.2), rgba(0,0,0,.04));
  overflow: hidden;
}

.scent-art span {
  position: absolute;
  display: block;
}

.barn {
  width: 92px;
  height: 66px;
  left: 22px;
  bottom: 30px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(160deg, #6c401f, #2e1b0e);
  background-size: 10px 10px, auto;
  clip-path: polygon(0 42%, 50% 0, 100% 42%, 100% 100%, 0 100%);
}

.barn::after {
  content: "";
  position: absolute;
  left: 35px;
  bottom: 0;
  width: 24px;
  height: 34px;
  background: #24130b;
  border: 1px solid rgba(255,255,255,.2);
}

.leaf-row {
  right: 12px;
  bottom: 20px;
  width: 120px;
  height: 52px;
  background: repeating-linear-gradient(110deg, transparent 0 8px, #8a5a2b 8px 13px);
  border-radius: 60%;
  opacity: .78;
}

.pine {
  left: 24px;
  bottom: 20px;
  width: 60px;
  height: 128px;
  background: var(--pine);
  clip-path: polygon(50% 0, 62% 26%, 84% 26%, 67% 41%, 90% 42%, 69% 58%, 96% 59%, 62% 80%, 60% 100%, 42% 100%, 40% 80%, 4% 59%, 31% 58%, 10% 42%, 33% 41%, 16% 26%, 38% 26%);
}

.mountains {
  right: -20px;
  bottom: 16px;
  width: 190px;
  height: 105px;
  background: linear-gradient(135deg, transparent 45%, #24452e 46% 52%, transparent 53%),
              linear-gradient(45deg, transparent 45%, #2d5338 46% 52%, transparent 53%);
  opacity: .75;
}

.barber-pole {
  left: 25px;
  bottom: 22px;
  width: 34px;
  height: 128px;
  border: 3px solid #222831;
  border-radius: 999px;
  background: repeating-linear-gradient(-28deg, #efe3cf 0 13px, #2c333b 13px 22px);
}

.chair {
  right: 24px;
  bottom: 26px;
  width: 90px;
  height: 94px;
  border: 6px solid #2a2520;
  border-radius: 16px 16px 8px 8px;
}

.chair::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 20px;
  height: 18px;
  background: #2a2520;
}

.rocker {
  left: 36px;
  bottom: 28px;
  width: 78px;
  height: 116px;
  border-left: 8px solid #7a4b23;
  border-right: 8px solid #7a4b23;
  border-bottom: 8px solid #7a4b23;
  border-radius: 20px 20px 4px 4px;
}

.rocker::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 118px;
  height: 34px;
  border-bottom: 7px solid #7a4b23;
  border-radius: 50%;
}

.lantern {
  right: 32px;
  top: 30px;
  width: 32px;
  height: 48px;
  border: 4px solid #a4692f;
  border-radius: 10px;
}

.lantern::before {
  content: "";
  position: absolute;
  left: 5px;
  top: -18px;
  width: 14px;
  height: 18px;
  border: 3px solid #a4692f;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.lighthouse {
  left: 42px;
  bottom: 26px;
  width: 40px;
  height: 132px;
  background: repeating-linear-gradient(165deg, #f3ead9 0 17px, #1f3337 17px 29px);
  clip-path: polygon(35% 0, 65% 0, 86% 100%, 14% 100%);
  border: 2px solid #1f3337;
}

.waves {
  right: 10px;
  bottom: 22px;
  width: 150px;
  height: 58px;
  background: repeating-radial-gradient(ellipse at bottom, transparent 0 15px, #496a73 16px 18px);
  opacity: .7;
}

.simple-pine {
  left: 50%;
  top: 22px;
  width: 86px;
  height: 145px;
  transform: translateX(-50%);
  background: rgba(23,16,11,.4);
  clip-path: polygon(50% 0, 63% 28%, 83% 28%, 66% 43%, 90% 43%, 67% 59%, 97% 60%, 61% 82%, 58% 100%, 42% 100%, 39% 82%, 3% 60%, 33% 59%, 10% 43%, 34% 43%, 17% 28%, 37% 28%);
}

.scent-info {
  padding: 1rem .85rem 1.15rem;
  text-align: center;
}

.scent-info h3 {
  margin-bottom: .3rem;
  padding: .38rem .2rem;
  color: #fff;
  background: currentColor;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.scent-info h3::first-line {
  color: #fff;
}

.scent-info p {
  min-height: 34px;
  margin: .55rem 0 .75rem;
  font-size: .78rem;
  color: #2f241d;
}

.scent-info a {
  display: inline-flex;
  padding: .45rem .65rem;
  background: currentColor;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.tobacco { color: #8a4f24; }
.ridge { color: #17412b; }
.sunday { color: #202b34; }
.porch { color: #b06e28; }
.banks { color: #4b7078; }
.plain { color: #807766; }

.mission-strip {
  display: grid;
  grid-template-columns: 140px .9fr 1.25fr;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem max(1rem, calc((100% - 1240px) / 2));
  background:
    linear-gradient(90deg, rgba(16,9,6,.96), rgba(33,20,12,.96)),
    var(--brown-950);
  border-top: 1px solid rgba(200,155,82,.28);
  border-bottom: 1px solid rgba(200,155,82,.28);
}

.mission-logo {
  width: 108px;
  height: 108px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brass);
  font-size: 2.3rem;
  font-weight: 900;
  background:
    radial-gradient(circle, rgba(200,155,82,.14), transparent 60%),
    #080504;
}

.mission-copy h2,
.ritual-copy h2,
.brotherhood-copy h2,
.founders-section h2 {
  margin-bottom: .8rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.mission-copy p {
  color: rgba(244,234,217,.74);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(200,155,82,.3);
}

.pillar-grid div {
  min-height: 130px;
  padding: 1rem;
  border-right: 1px solid rgba(200,155,82,.3);
  text-align: center;
}

.pillar-icon {
  display: block;
  color: var(--brass);
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: .6rem;
}

.pillar-grid strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .88rem;
}

.pillar-grid small {
  display: block;
  color: rgba(244,234,217,.7);
  font-style: italic;
  margin-top: .35rem;
}

.ritual-section {
  padding: 5.5rem max(1rem, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 3rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(200,155,82,.16), transparent 23rem),
    linear-gradient(135deg, var(--brown-900), var(--brown-800));
}

.ritual-copy p,
.brotherhood-copy p,
.founders-section p {
  color: rgba(244,234,217,.76);
  font-size: 1.08rem;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
}

.ritual-steps article {
  padding: 1.2rem 1rem;
  border: 1px solid rgba(200,155,82,.26);
  background:
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  min-height: 210px;
}

.ritual-steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--brass);
  color: #120b06;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: .78rem;
}

.ritual-steps strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: .55rem;
}

.ritual-steps p {
  margin: 0;
  color: rgba(244,234,217,.7);
  font-size: .92rem;
}

.brotherhood-section {
  display: grid;
  grid-template-columns: .82fr .9fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem max(1rem, calc((100% - 1240px) / 2));
  background:
    linear-gradient(90deg, rgba(8,5,4,.95), rgba(22,13,8,.92)),
    var(--brown-950);
  border-top: 1px solid rgba(200,155,82,.22);
  border-bottom: 1px solid rgba(200,155,82,.22);
}

.campfire-card {
  min-height: 310px;
  border: 1px solid rgba(200,155,82,.24);
  border-radius: .7rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 70%, rgba(209,92,33,.5), transparent 8rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.2)),
    #130b07;
}

.campfire-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.72)),
    repeating-linear-gradient(100deg, rgba(68,42,23,.25) 0 18px, rgba(22,13,8,.25) 18px 36px);
}

.fire {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: 58px;
  height: 82px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffca71, #b6421d);
  clip-path: polygon(50% 0, 66% 25%, 83% 46%, 72% 100%, 28% 100%, 17% 48%, 36% 27%);
  filter: drop-shadow(0 0 32px rgba(230,100,40,.75));
}

.men-circle span {
  position: absolute;
  bottom: 68px;
  width: 42px;
  height: 92px;
  border-radius: 22px 22px 8px 8px;
  background: #0b0806;
  border: 1px solid rgba(200,155,82,.18);
}

.men-circle span:nth-child(1) { left: 45px; transform: rotate(12deg); }
.men-circle span:nth-child(2) { left: 115px; transform: rotate(-6deg); }
.men-circle span:nth-child(3) { right: 112px; transform: rotate(6deg); }
.men-circle span:nth-child(4) { right: 44px; transform: rotate(-12deg); }

.support-card {
  margin: 1.4rem 0 1.6rem;
  padding: 1rem;
  border-left: 3px solid var(--brass);
  background: rgba(255,255,255,.06);
}

.support-card p {
  margin: .45rem 0 0;
  font-size: .98rem;
}

.perks {
  display: grid;
  gap: .8rem;
}

.perks article {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(200,155,82,.25);
  background: rgba(255,255,255,.05);
}

.perks strong {
  display: block;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: .35rem;
}

.perks p {
  margin: 0;
  color: rgba(244,234,217,.7);
  font-size: .92rem;
}

.founders-section {
  padding: 5rem max(1rem, calc((100% - 1100px) / 2));
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 3rem;
  align-items: center;
  background:
    radial-gradient(circle at 10% 30%, rgba(200,155,82,.14), transparent 18rem),
    linear-gradient(135deg, var(--brown-900), #0c0705);
}

.signup-form {
  padding: 1.5rem;
  border: 1px solid rgba(200,155,82,.28);
  background: rgba(255,255,255,.05);
}

.signup-form label {
  display: block;
  margin-bottom: .55rem;
  color: var(--brass);
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 900;
}

input {
  min-height: 54px;
  flex: 1;
  padding: 0 1rem;
  border: 1px solid rgba(200,155,82,.38);
  background: rgba(0,0,0,.34);
  color: var(--cream);
  font-size: 1rem;
  border-radius: .16rem;
}

input::placeholder {
  color: rgba(244,234,217,.45);
}

button[type="submit"] {
  min-height: 54px;
  padding: 0 1.15rem;
  border: 0;
  background: linear-gradient(180deg, #c79b52, #946a31);
  color: #120b06;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
}

#formMessage {
  margin: .8rem 0 0;
  font-size: .9rem;
  color: rgba(244,234,217,.66);
}

.site-footer {
  padding: 2.5rem max(1rem, calc((100% - 1240px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background: #080504;
  border-top: 1px solid rgba(200,155,82,.22);
  color: rgba(244,234,217,.68);
}

.footer-brand {
  margin-bottom: .8rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}

.site-footer nav a {
  color: rgba(244,234,217,.7);
}

.site-footer nav a:hover {
  color: var(--brass);
}

@media (max-width: 1100px) {
  .product-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-strip,
  .brotherhood-section,
  .ritual-section,
  .founders-section {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .ritual-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-logo {
    display: none;
  }
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(16, 9, 6, .98);
    border: 1px solid rgba(200,155,82,.3);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-product {
    justify-self: stretch;
  }

  .scene-card {
    min-height: 470px;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .scent-card {
    min-height: 280px;
  }

  .pillar-grid,
  .ritual-steps {
    grid-template-columns: 1fr;
  }

  .form-line,
  .hero-actions {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-icon {
    width: 42px;
    height: 42px;
    font-size: .95rem;
  }

  .brand-text strong {
    font-size: .95rem;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .scene-card {
    min-height: 420px;
  }

  .bottle-wrap {
    transform: translateX(-50%) scale(.85);
  }

  .hero-props .glass {
    display: none;
  }
}
