:root {
  --navy-950: #070c19;
  --navy-900: #0b1225;
  --navy-800: #11182f;
  --gold: #e4c56a;
  --gold-light: #f5e1a4;
  --text: #f4f1e8;
  --muted: #c9cbd4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--navy-900);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem clamp(1.25rem, 5vw, 4rem);
  background: var(--navy-800);
  border-bottom: 1px solid rgba(228, 197, 106, 0.25);
}

.brand a {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  padding: 0.5rem 0;
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

nav a:hover,
nav a[aria-current="page"] {
  color: #fff;
  border-color: var(--gold);
}

a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

main {
  flex: 1;
}

.hero {
  min-height: clamp(34rem, 72vh, 48rem);
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem;
  text-align: center;
  background:
    linear-gradient(rgba(7, 12, 25, 0.64), rgba(7, 12, 25, 0.82)),
    url("../assets/Brotherhood-banner.jpg") center / cover no-repeat;
}

.hero-content {
  width: min(52rem, 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.hero-copy {
  max-width: 46rem;
  margin: 1.5rem auto 2.5rem;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  color: var(--navy-900);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cta-btn:hover {
  color: var(--gold-light);
  background: transparent;
  transform: translateY(-2px);
}

.home-mission {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: center;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.mission-label span {
  display: block;
  color: rgba(228, 197, 106, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.5rem, 15vw, 11rem);
  font-weight: 700;
  line-height: 0.85;
}

.mission-copy h2,
.benefits-intro h2,
.home-section-top h2,
.home-final-cta h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
}

.mission-copy > p {
  max-width: 47rem;
  margin: 1.35rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.home-pillars {
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 80% 10%, rgba(228, 197, 106, 0.08), transparent 26rem),
    var(--navy-950);
}

.home-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(228, 197, 106, 0.18);
  border-radius: 0.75rem;
  overflow: hidden;
}

.home-pillar-card {
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(17, 24, 47, 0.82);
  border-right: 1px solid rgba(228, 197, 106, 0.18);
  transition: background 180ms ease;
}

.home-pillar-card:last-child {
  border-right: 0;
}

.home-pillar-card:hover {
  background: rgba(228, 197, 106, 0.09);
}

.home-pillar-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.home-pillar-card h3 {
  margin: 5rem 0 0.8rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.home-pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.home-benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.benefits-intro {
  position: sticky;
  top: 2rem;
}

.benefits-intro > p:last-child {
  margin: 1.25rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.benefits-list {
  display: grid;
}

.benefits-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(228, 197, 106, 0.2);
}

.benefits-list article:last-child {
  border-bottom: 1px solid rgba(228, 197, 106, 0.2);
}

.benefits-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.benefits-list h3 {
  margin: 0 0 0.6rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.benefits-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-insights {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--navy-950);
}

.home-section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.home-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-insight-card {
  min-height: 17rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(228, 197, 106, 0.08), transparent 55%),
    var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.16);
  border-radius: 0.7rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.home-insight-card:hover {
  border-color: rgba(228, 197, 106, 0.5);
  transform: translateY(-4px);
}

.home-insight-card h3 {
  margin: auto 0 0.8rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.home-insight-card > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-shop {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.home-shop-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-shop-preview article {
  min-height: 11rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(228, 197, 106, 0.12), transparent 60%),
    var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.2);
  border-radius: 0.75rem;
}

.shop-preview-mark {
  flex: 0 0 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-shop-preview h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.home-conviction {
  padding-block: clamp(5rem, 11vw, 9rem);
}

.home-conviction blockquote {
  width: min(58rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.home-conviction blockquote p {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-style: italic;
  line-height: 1.45;
}

.home-conviction cite {
  display: block;
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-final-cta {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  text-align: center;
  background:
    linear-gradient(rgba(7, 12, 25, 0.74), rgba(7, 12, 25, 0.92)),
    url("../assets/Brotherhood-banner.jpg") center / cover no-repeat;
}

.home-final-cta .section-shell {
  width: min(55rem, calc(100% - 2.5rem));
}

.home-final-cta > div > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.25rem auto 2rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

footer {
  padding: 1.25rem;
  color: var(--gold);
  background: var(--navy-950);
  text-align: center;
}

footer p {
  margin: 0;
}

.section-shell {
  width: min(74rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.about-hero {
  min-height: clamp(27rem, 60vh, 40rem);
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem;
  text-align: center;
  background:
    linear-gradient(rgba(7, 12, 25, 0.58), rgba(7, 12, 25, 0.88)),
    url("../assets/Brotherhood-banner.jpg") center / cover no-repeat;
}

.about-hero-content {
  width: min(52rem, 100%);
}

.about-hero h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.about-hero-content > p:last-child {
  max-width: 43rem;
  margin: 1.4rem auto 0;
  color: var(--text);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.about-story h2,
.section-heading h2,
.about-cta h2,
.shop-intro h2,
.shop-toolbar h2,
.shop-cta h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
}

.about-story-copy > p:not(.eyebrow) {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-quote {
  margin: 0;
  padding: clamp(1.8rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(228, 197, 106, 0.12), transparent),
    var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.28);
  border-left: 0.35rem solid var(--gold);
  border-radius: 0.75rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.24);
}

.about-quote p {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.55;
}

.about-quote cite {
  display: block;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.values-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(228, 197, 106, 0.08), transparent 25rem),
    var(--navy-950);
}

.section-heading {
  max-width: 47rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 37rem;
  margin: 1.1rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.value-card {
  padding: 1.75rem;
  background: var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.16);
  border-radius: 0.7rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.value-card:hover {
  border-color: rgba(228, 197, 106, 0.55);
  transform: translateY(-4px);
}

.value-card span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.value-card h3 {
  margin: 1.6rem 0 0.75rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-block: clamp(4rem, 9vw, 7rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    linear-gradient(120deg, rgba(228, 197, 106, 0.12), transparent 60%),
    var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.28);
  border-radius: 0.9rem;
}

.about-cta > div > p:last-child {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-cta .cta-btn {
  flex: 0 0 auto;
}

.blog-hero {
  padding: clamp(5rem, 11vw, 8rem) 1.25rem;
  text-align: center;
  background:
    linear-gradient(rgba(7, 12, 25, 0.72), rgba(7, 12, 25, 0.94)),
    url("../assets/Brotherhood-banner.jpg") center 40% / cover no-repeat;
}

.blog-hero > div {
  width: min(52rem, 100%);
  margin: 0 auto;
}

.blog-hero h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.blog-hero > div > p:last-child {
  max-width: 44rem;
  margin: 1.4rem auto 0;
  color: var(--text);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.75;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(10rem, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.featured-number {
  color: rgba(228, 197, 106, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 22vw, 16rem);
  font-weight: 700;
  line-height: 0.8;
  text-align: center;
}

.article-meta {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-copy h2,
.blog-cta h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
}

.featured-copy > p:not(.article-meta) {
  max-width: 43rem;
  margin: 1.25rem 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--gold-light);
}

.insights-section {
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 15% 15%, rgba(228, 197, 106, 0.07), transparent 25rem),
    var(--navy-950);
}

.insights-heading {
  margin-inline: 0;
  text-align: left;
}

.insights-heading > p:last-child {
  margin-inline: 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.insight-card {
  padding: 1.75rem;
  background: var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.15);
  border-radius: 0.75rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.insight-card:hover {
  border-color: rgba(228, 197, 106, 0.5);
  transform: translateY(-4px);
}

.article-mark {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.insight-card h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.insight-card > p:last-child {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-cta {
  margin-block: clamp(4rem, 9vw, 7rem);
  padding: clamp(2.5rem, 7vw, 5rem);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(228, 197, 106, 0.13), transparent 60%),
    var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.28);
  border-radius: 0.9rem;
}

.blog-cta > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1rem auto 2rem;
  color: var(--muted);
  line-height: 1.7;
}

.shop-hero {
  padding: clamp(5rem, 11vw, 8rem) 1.25rem;
  text-align: center;
  background:
    linear-gradient(rgba(7, 12, 25, 0.7), rgba(7, 12, 25, 0.93)),
    url("../assets/Brotherhood-banner.jpg") center / cover no-repeat;
}

.shop-hero > div {
  width: min(53rem, 100%);
  margin: 0 auto;
}

.shop-hero h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.shop-hero > div > p:last-child {
  max-width: 42rem;
  margin: 1.4rem auto 0;
  color: var(--text);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
  padding-block: clamp(4rem, 9vw, 6rem);
}

.shop-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.shop-section {
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(228, 197, 106, 0.08), transparent 26rem),
    var(--navy-950);
}

.shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.shop-toolbar > p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card {
  overflow: hidden;
  background: var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.16);
  border-radius: 0.75rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(228, 197, 106, 0.55);
  transform: translateY(-4px);
}

.product-visual {
  min-height: 15rem;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  background: #0e1730;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.product-visual span {
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-visual-shirt::before {
  width: 9rem;
  height: 10.5rem;
  background: var(--gold-light);
  clip-path: polygon(24% 0, 38% 12%, 62% 12%, 76% 0, 100% 20%, 84% 39%, 76% 32%, 76% 100%, 24% 100%, 24% 32%, 16% 39%, 0 20%);
}

.product-visual-shirt span {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.product-visual-cap::before {
  width: 9.5rem;
  height: 5rem;
  top: 5.4rem;
  background: var(--gold-light);
  border-radius: 5rem 5rem 1.2rem 1.2rem;
}

.product-visual-cap::after {
  width: 5.5rem;
  height: 1.15rem;
  top: 10.1rem;
  right: 2.6rem;
  background: var(--gold);
  border-radius: 999px;
}

.product-visual-cap span {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
}

.product-visual-journal::before {
  width: 8.2rem;
  height: 10.5rem;
  background: var(--gold-light);
  border-radius: 0.45rem;
  box-shadow: inset 0.7rem 0 0 rgba(7, 12, 25, 0.18);
}

.product-visual-journal span {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.3rem;
}

.product-visual-band::before {
  width: 10rem;
  height: 4.5rem;
  border: 1.2rem solid var(--gold-light);
  border-radius: 999px;
}

.product-visual-band span {
  min-width: 4.6rem;
  height: 2.5rem;
  padding-inline: 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.25;
}

.product-info > p:not(.article-meta) {
  min-height: 4.9rem;
  margin: 0.85rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(228, 197, 106, 0.16);
}

.product-meta span:first-child {
  color: var(--gold-light);
  font-weight: 800;
}

.product-meta span:last-child {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-block: clamp(4rem, 9vw, 7rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    linear-gradient(120deg, rgba(228, 197, 106, 0.12), transparent 60%),
    var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.28);
  border-radius: 0.9rem;
}

.shop-cta > div > p:last-child {
  max-width: 42rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.shop-cta .cta-btn {
  flex: 0 0 auto;
}

.contact-page {
  padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 10% 15%, rgba(228, 197, 106, 0.08), transparent 28rem),
    var(--navy-900);
}

.contact-intro {
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.contact-intro h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.08;
}

.contact-intro > p:last-child {
  max-width: 43rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.contact-layout {
  width: min(74rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.contact-details h2,
.contact-form-card h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.contact-summary {
  margin: 1.25rem 0 2.25rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-points {
  display: grid;
  gap: 1.25rem;
}

.contact-point {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
  background: rgba(17, 24, 47, 0.72);
  border: 1px solid rgba(228, 197, 106, 0.16);
  border-radius: 0.65rem;
}

.contact-icon {
  flex: 0 0 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-point h3 {
  margin: 0 0 0.35rem;
  color: var(--gold-light);
  font-size: 1rem;
}

.contact-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form-card {
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.3);
  border-radius: 1rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
}

.contact-form-card > p {
  margin: 0.75rem 0 2rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.55rem;
}

.form-group label {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--text);
  background: var(--navy-950);
  border: 1px solid rgba(201, 203, 212, 0.25);
  border-radius: 0.45rem;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-group textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #858998;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(228, 197, 106, 0.15);
}

.form-notice {
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.submit-btn {
  justify-self: start;
  padding: 0.95rem 1.8rem;
  color: var(--navy-950);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 0.45rem;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.submit-btn:hover {
  color: var(--gold-light);
  background: transparent;
  transform: translateY(-2px);
}

.submit-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.success-page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 10vw, 8rem) 1.25rem;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(228, 197, 106, 0.1), transparent 28rem),
    var(--navy-900);
}

.success-card {
  width: min(43rem, 100%);
  padding: clamp(2rem, 7vw, 4.5rem);
  background: var(--navy-800);
  border: 1px solid rgba(228, 197, 106, 0.3);
  border-radius: 1rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
}

.success-mark {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 800;
}

.success-card h1 {
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
}

.success-card > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.25rem auto 2rem;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .home-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-pillar-card:nth-child(2) {
    border-right: 0;
  }

  .home-pillar-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(228, 197, 106, 0.18);
  }

  .home-benefits {
    grid-template-columns: 1fr;
  }

  .benefits-intro {
    position: static;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 66vh;
  }

  .home-mission,
  .home-pillar-grid,
  .home-insight-grid,
  .home-shop-preview,
  .shop-intro {
    grid-template-columns: 1fr;
  }

  .home-pillar-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(228, 197, 106, 0.18);
  }

  .home-pillar-card:nth-child(3) {
    border-bottom: 1px solid rgba(228, 197, 106, 0.18);
  }

  .home-pillar-card:last-child {
    border-bottom: 0;
  }

  .home-pillar-card h3 {
    margin-top: 2.5rem;
  }

  .home-section-top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .featured-article,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .featured-number {
    font-size: 7rem;
    text-align: left;
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-toolbar,
  .shop-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .submit-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
