/* Tathastu Nexus — Gold NEXUS Edition (September 2026).
   Official Brand Palette: Navy #082B5B, Royal Blue #0E4D8B, Gold #D4A017, Deep Gold #8B5E14, Charcoal #1A1A1A, Soft Gray #E5E7EB, Off-white #F8F9FA.
   Typography: Montserrat (headings/body) with Arial/system fallbacks; Playfair Display for editorial accents. */
:root {
  --navy: #082B5B;
  --navy-deep: #08264B;
  --royal-blue: #0E4D8B;
  --gold: #D4A017;
  --gold-deep: #8B5E14;
  --paper: #F8F9FA;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --muted: #53657A;
  --line: #E5E7EB;
  --soft: #F0EEE7;
  --draft-bg: #F7EDDA;
  --draft-ink: #64480E;
  --font: Montserrat, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-editorial: "Playfair Display", Georgia, serif;
  --max: 1240px;
  --gutter: clamp(22px, 4.8vw, 76px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

a:hover {
  text-decoration-thickness: 2px;
}

button {
  font: inherit;
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
  border-radius: 2px;
}

:target {
  scroll-margin-top: 28px;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

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

h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(43px, 5.5vw, 78px);
  margin-bottom: 25px;
}

h2 {
  font-size: clamp(32px, 3.5vw, 49px);
  margin-bottom: 23px;
}

h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
}

small {
  font-size: 13px;
  line-height: 1.6;
}

.container {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section {
  padding-block: clamp(64px, 7.5vw, 110px);
}

.eyebrow {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .19em;
  line-height: 1.6;
  margin: 0 0 22px;
}

.kicker-line {
  display: inline-block;
  width: 33px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}

.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}

.muted {
  color: var(--muted);
}

.flow> :last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  padding: 12px 20px;
  background: var(--navy);
  color: white;
  z-index: 30;
}

.skip-link:focus {
  top: 10px;
}

.draft-bar {
  background: var(--draft-bg);
  color: var(--draft-ink);
  font-size: 12px;
  line-height: 1.5;
  padding: 8px var(--gutter);
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.draft-bar strong {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  z-index: 10;
}

.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-logo {
  width: 220px;
  flex: 0 0 220px;
  display: block;
  padding: 6px 0;
}

.primary-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding-block: 12px;
}

.primary-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px var(--gold);
}

.primary-nav a:hover {
  color: var(--ink);
  box-shadow: inset 0 -2px var(--gold);
}

.primary-nav .nav-contact {
  border: 1px solid var(--navy);
  padding: 12px 20px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--navy);
  min-height: 44px;
  padding: 8px 14px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.menu-icon {
  width: 17px;
  height: 10px;
  border-block: 1px solid currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  transition: background .2s, transform .2s;
}

.button:hover {
  background: #16385c;
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  color: var(--navy);
}

.button.secondary:hover {
  background: var(--soft);
}

.button.light {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}

.button.light:hover {
  background: white;
}

.link-arrow {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  text-decoration: none;
}

.link-arrow .arrow,
.button .arrow {
  font-size: 21px;
  font-weight: 400;
}

.link-arrow:hover .arrow {
  transform: translateX(4px);
}

.arrow {
  display: inline-block;
  transition: transform .2s;
}

.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Homepage */
.hero {
  padding: 66px 0 65px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(48px, 5vw, 72px);
}

.hero .hero-second {
  display: block;
}

.hero .lead {
  max-width: 47ch;
}

.hero-bottom-note {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 0;
}

.hero-bottom-note::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  display: inline-block;
}

.house-panel {
  background: var(--navy);
  color: white;
  min-height: 500px;
  padding: 31px 33px 21px;
  position: relative;
  overflow: hidden;
}

.house-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.house-top p {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d6dee7;
}

.house-top .house-edition {
  color: var(--gold);
}

.house-emblem {
  position: relative;
  height: 221px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.house-emblem::before,
.house-emblem::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(187, 144, 66, .42);
  width: 290px;
  height: 290px;
  border-radius: 50%;
}

.house-emblem::after {
  width: 360px;
  height: 360px;
  border-color: rgba(187, 144, 66, .22);
}

.emblem-paper {
  z-index: 1;
  width: 135px;
  height: 159px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 16px 16px 0 rgba(255, 255, 255, .055);
}

.emblem-paper img {
  width: 78px;
  height: auto;
}

.house-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  background: var(--navy);
}

.house-list li {
  border-top: 1px solid #38506b;
}

.house-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  font-size: 16px;
}

.house-list a:hover {
  color: #e3bc79;
}

.house-list small {
  color: #afbdd0;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
}

.house-list .arrow {
  color: var(--gold);
  font-size: 21px;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 25px;
}

.category-strip div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 19px;
  border-right: 1px solid var(--line);
}

.category-strip div:last-child {
  border-right: 0;
}

.category-strip small {
  color: var(--muted);
  font-size: 11px;
}

.category-strip span {
  font-size: 14px;
}

.split-intro {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 10%;
  align-items: start;
}

.split-intro .copy {
  max-width: 53ch;
  color: var(--muted);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}

.section-header h2 {
  margin-bottom: 0;
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

.brands-section {
  padding-top: 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.brand-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: white;
  transition: transform .22s, box-shadow .22s;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px #08264b08;
}

.brand-art {
  position: relative;
  height: 247px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
}

.brand-art .art-index {
  position: absolute;
  top: 19px;
  left: 22px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
}

.brand-art .art-label {
  position: absolute;
  bottom: 17px;
  left: 22px;
  right: 22px;
  text-align: right;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.spiritual-art {
  background: #f5efe4;
}

.spiritual-art::before {
  content: "";
  position: absolute;
  border: 1px solid #e0d5bd;
  border-radius: 50%;
  width: 206px;
  height: 206px;
}

.spiritual-art img {
  width: 76%;
  position: relative;
  padding: 14px 0;
}

.perfume-art img {
  width: 58%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 10px 0;
  filter: brightness(0) invert(1);
}

.brand-hero .perfume-art img {
  width: 54%;
  max-width: 320px;
}

.perfume-art {
  background: var(--navy);
  color: var(--paper);
}

.perfume-art::before,
.perfume-art::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 260px;
  border: 1px solid #6b694f;
  border-radius: 100px 100px 0 0;
  transform: rotate(24deg);
  right: -38px;
  top: 5px;
}

.perfume-art::after {
  right: -13px;
  top: -11px;
}

.perfume-art .art-index,
.perfume-art .art-label {
  color: #c5d0df;
}

.art-word {
  font-size: 45px;
  letter-spacing: -.055em;
  font-weight: 450;
  line-height: 1.06;
  z-index: 1;
  position: relative;
}

.gifting-art img {
  width: 65%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 10px 0;
}

.brand-hero .gifting-art img {
  width: 60%;
  max-width: 340px;
}

.gifting-art {
  background: #ede6d8;
}

.gifting-art::before,
.gifting-art::after {
  content: "";
  position: absolute;
  width: 165px;
  height: 165px;
  border: 1px solid #bfaa7f;
  transform: rotate(45deg);
  right: -100px;
  top: 35px;
}

.gifting-art::after {
  right: -70px;
}

.gifting-art .art-word {
  font-size: 37px;
  margin-left: -35px;
}

.brand-copy {
  padding: 25px 26px 24px;
}

.brand-copy .eyebrow {
  font-size: 10px;
  margin-bottom: 13px;
}

.brand-copy h3 {
  font-size: 24px;
}

.brand-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  min-height: 77px;
  margin-bottom: 13px;
}

.brand-copy .domain {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .015em;
  padding-top: 17px;
  margin-top: 15px;
  border-top: 1px solid var(--line);
  display: block;
}

.approach-band {
  background: var(--navy);
  color: var(--paper);
}

.approach-band .eyebrow {
  color: #c0ccdc;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 12%;
}

.approach-points {
  margin-top: 4px;
}

.approach-point {
  border-top: 1px solid #405570;
  padding: 22px 0 8px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
}

.approach-point>span {
  color: #e3bc79;
  font-size: 11px;
  margin-top: 5px;
}

.approach-point h3 {
  font-size: 21px;
  letter-spacing: -.02em;
}

.approach-point p {
  font-size: 15px;
  color: #c6d1df;
}

.support-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.support-band h2 {
  margin-bottom: 15px;
}

.support-band p {
  color: var(--muted);
  max-width: 57ch;
  margin-bottom: 0;
}

/* Interior pages */
.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  padding-top: 30px;
  margin-bottom: 42px;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-intro {
  padding-bottom: 49px;
}

.page-intro h1 {
  font-size: clamp(40px, 5vw, 68px);
  max-width: 900px;
}

.page-intro .lead {
  max-width: 65ch;
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.about-frame {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  background: white;
  margin-bottom: 68px;
}

.about-logo {
  display: grid;
  place-items: center;
  background: var(--soft);
  padding: 70px;
}

.about-logo img {
  width: 130px;
}

.about-copy {
  padding: clamp(30px, 5vw, 72px);
}

.about-copy p {
  color: var(--muted);
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.text-grid h3 {
  font-size: 23px;
}

.text-grid p {
  font-size: 16px;
  color: var(--muted);
}

.text-grid .eyebrow {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.brand-directory {
  display: grid;
  gap: 36px;
}

.brand-directory .directory-item {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border: 1px solid var(--line);
  background: white;
}

.directory-item .brand-art {
  height: auto;
  min-height: 330px;
}

.directory-item .brand-art .art-word {
  font-size: 60px;
}

.directory-copy {
  padding: 40px 45px;
}

.directory-copy h2 {
  font-size: 35px;
}

.directory-copy p {
  color: var(--muted);
  font-size: 16px;
}

.directory-copy .eyebrow {
  margin-bottom: 14px;
}

.domain-label {
  display: inline-block;
  font-size: 13px;
  padding: 7px 0;
  color: var(--muted);
  letter-spacing: .02em;
  overflow-wrap: anywhere;
}

.status-note {
  color: var(--draft-ink);
  background: var(--draft-bg);
  border-left: 3px solid var(--gold);
  padding: 17px 21px;
  font-size: 14px;
  line-height: 1.65;
  margin-block: 24px;
}

.status-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: .02em;
}

.brand-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
  align-items: center;
  padding-bottom: 70px;
}

.brand-hero h1 {
  font-size: clamp(43px, 5.3vw, 73px);
}

.brand-hero .brand-art {
  height: 465px;
}

.brand-hero .spiritual-art img {
  width: 72%;
}

.brand-hero .spiritual-art::before {
  width: 335px;
  height: 335px;
}

.brand-hero .art-word {
  font-size: clamp(62px, 6.6vw, 92px);
}

.brand-hero .gifting-art .art-word {
  font-size: clamp(52px, 5.2vw, 75px);
}

.brand-hero .perfume-art::before,
.brand-hero .perfume-art::after {
  width: 290px;
  height: 490px;
  border-radius: 160px 160px 0 0;
}

.brand-hero .brand-art .art-label {
  font-size: 10px;
  bottom: 25px;
}

.brand-content {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 10%;
}

.brand-content h2 {
  font-size: 34px;
}

.brand-content p {
  color: var(--muted);
}

.brand-facts {
  background: white;
  border: 1px solid var(--line);
  padding: 30px;
  align-self: start;
}

.brand-facts h2 {
  font-size: 22px;
}

.fact {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.fact dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 5px;
}

.fact dd {
  margin: 0;
  font-size: 15px;
}

.brand-next {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.info-card {
  border: 1px solid var(--line);
  padding: 30px;
  background: white;
}

.info-card h2 {
  font-size: 28px;
}

.info-card p {
  font-size: 16px;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  padding-bottom: 70px;
}

.contact-grid h2 {
  font-size: 30px;
}

.contact-grid>div {
  min-width: 0;
}

.contact-block {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.contact-block h3 {
  font-size: 18px;
  letter-spacing: -.01em;
}

.contact-block p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.business-details {
  background: white;
  padding: 33px;
  border: 1px solid var(--line);
}

.business-details dl {
  margin: 0;
}

.placeholder {
  display: inline;
  background: var(--draft-bg);
  color: var(--draft-ink);
  border-bottom: 1px dashed #957125;
  padding: 2px 4px;
  font-family: var(--font);
  font-size: .85em;
  line-height: 1.8;
  overflow-wrap: anywhere;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Policy pages: every clause is visible without JavaScript. */
.policy-head {
  padding-bottom: 30px;
}

.policy-head h1 {
  font-size: clamp(36px, 4.5vw, 61px);
}

.policy-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 13px;
  padding-top: 10px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 70px;
  padding-bottom: 90px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 24px;
}

.policy-nav {
  border-top: 1px solid var(--navy);
  padding-top: 15px;
}

.policy-nav p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 13px;
}

.policy-nav a {
  display: block;
  font-size: 13px;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}

.policy-nav a:hover {
  text-decoration: underline;
}

.policy-nav a[aria-current="page"] {
  font-weight: 650;
}

.policy-sidebar .policy-help {
  margin-top: 25px;
  font-size: 13px;
}

.policy-body {
  max-width: 800px;
  color: var(--ink);
}

.policy-body>section {
  margin-bottom: 38px;
}

.policy-body h2 {
  font-size: 28px;
  margin-bottom: 17px;
  color: var(--navy);
}

.policy-body h3 {
  font-size: 21px;
  margin-top: 25px;
  color: var(--navy);
}

.policy-body p,
.policy-body li {
  font-size: 16px;
  line-height: 1.85;
}

.policy-body li {
  margin-bottom: 10px;
}

.policy-body ul {
  padding-left: 24px;
}

.policy-body .policy-brand {
  border: 1px solid var(--line);
  background: white;
  padding: 28px;
  margin-bottom: 25px;
}

.policy-brand .domain-label {
  padding: 0;
  margin-bottom: 18px;
}

.policy-brand h3 {
  margin: 0 0 5px;
  font-size: 24px;
}

.policy-fields {
  margin: 0;
}

.policy-fields>div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 19px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.policy-fields dt {
  font-size: 13px;
  color: var(--muted);
}

.policy-fields dd {
  margin: 0;
  font-size: 15px;
}

.policy-end {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 14px;
}

.faq-list {
  max-width: 850px;
  padding-bottom: 80px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 35px 22px 0;
  cursor: pointer;
  font-size: 19px;
  line-height: 1.5;
}

.faq-list details p {
  padding: 0 20px 8px 0;
  font-size: 16px;
  color: var(--muted);
}

.faq-list details[open] summary {
  font-weight: 600;
}

.error-page {
  text-align: center;
  padding: 65px 20px 95px;
  max-width: 750px;
  margin: auto;
}

.error-number {
  font-size: clamp(110px, 22vw, 210px);
  font-weight: 350;
  letter-spacing: -.075em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 20px;
}

.error-page h1 {
  font-size: 38px;
}

.error-page .actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 53px;
  background: #f0eee7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1.05fr;
  gap: 65px;
  padding-bottom: 38px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 23px;
}

.footer-intro p {
  font-size: 13px;
  color: var(--muted);
  max-width: 30ch;
}

.footer-links h2 {
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .17em;
  line-height: 1.6;
  margin-bottom: 17px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #d0d2d0;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 55px;
  font-size: 12px;
  color: var(--muted);
}

.footer-legal p {
  margin-bottom: 8px;
}

.footer-legal strong {
  font-weight: 600;
  color: var(--navy);
}

.footer-base {
  border-top: 1px solid #d0d2d0;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
}

.footer-base a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 1500px) {
  .hero {
    padding-block: 82px;
  }
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 19px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .house-panel {
    padding-inline: 25px;
  }

  .brand-copy {
    padding-inline: 20px;
  }

  .brand-copy h3 {
    font-size: 22px;
  }

  .footer-grid {
    gap: 38px;
  }

  .policy-layout {
    gap: 42px;
    grid-template-columns: 200px minmax(0, 1fr);
  }
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 86px;
    flex-wrap: wrap;
    gap: 0;
  }

  .header-logo {
    flex-basis: 170px;
    width: 170px;
  }

  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding: 0 0 18px;
  }

  .primary-nav a {
    font-size: 14px;
  }

  .primary-nav .nav-contact {
    padding: 8px 16px;
  }

  .site-header.menu-ready .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-ready .primary-nav {
    display: none;
    padding: 18px 0 24px;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-ready.is-open .primary-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-header.menu-ready.is-open .primary-nav a {
    padding: 12px 6px;
  }

  .site-header.menu-ready.is-open .primary-nav .nav-contact {
    padding-left: 15px;
    margin-top: 8px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 39px;
  }

  .hero h1 {
    font-size: clamp(45px, 7.8vw, 62px);
  }

  .hero h1 .hero-second {
    display: inline;
  }

  .hero .lead {
    max-width: 56ch;
  }

  .hero-bottom-note {
    margin-top: 23px;
  }

  .house-panel {
    max-width: 650px;
    width: 100%;
    min-height: 430px;
  }

  .house-emblem {
    height: 170px;
  }

  .house-emblem::before {
    width: 245px;
    height: 245px;
  }

  .house-emblem::after {
    width: 305px;
    height: 305px;
  }

  .emblem-paper {
    width: 111px;
    height: 128px;
  }

  .emblem-paper img {
    width: 66px;
  }

  .category-strip {
    padding-block: 17px;
  }

  .category-strip div {
    padding: 0 10px;
    gap: 9px;
  }

  .category-strip span {
    font-size: 12px;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .split-intro .copy {
    max-width: 65ch;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .brand-card {
    display: grid;
    grid-template-columns: .8fr 1fr;
  }

  .brand-art {
    height: 100%;
    min-height: 260px;
  }

  .brand-copy p {
    min-height: auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .approach-grid h2 {
    max-width: 19ch;
  }

  .support-band {
    align-items: start;
    flex-direction: column;
    gap: 26px;
  }

  .brand-hero {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .brand-hero .brand-art {
    height: 385px;
  }

  .brand-hero .art-word {
    font-size: 80px;
  }

  .brand-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .brand-facts {
    padding: 25px;
  }

  .directory-copy {
    padding: 30px;
  }

  .brand-directory .directory-item {
    grid-template-columns: .85fr 1.15fr;
  }

  .directory-item .brand-art .art-word {
    font-size: 39px;
  }

  .about-logo {
    padding: 36px;
  }

  .about-copy {
    padding: 30px;
  }

  .text-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .policy-sidebar {
    position: static;
  }

  .policy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .policy-nav p {
    width: 100%;
    margin-bottom: 0;
  }

  .policy-nav a {
    padding: 7px 0;
    font-size: 12px;
  }

  .policy-sidebar .policy-help {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-intro p {
    max-width: 60ch;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .draft-bar {
    gap: 2px 12px;
    font-size: 11px;
    padding-inline: 16px;
  }
}

@media (max-width: 520px) {
  .hero .actions {
    gap: 16px;
  }

  .hero .button {
    gap: 20px;
  }

  .hero .actions .link-arrow {
    font-size: 13px;
  }

  .house-panel {
    padding-inline: 23px;
  }

  .house-top p {
    font-size: 9px;
  }

  .house-list a {
    font-size: 15px;
  }

  .category-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-strip div {
    justify-content: space-between;
    border: 0;
    padding: 0;
  }

  .category-strip span {
    font-size: 13px;
  }

  .section-header {
    display: block;
  }

  .section-header .link-arrow {
    margin-top: 18px;
  }

  .brand-card {
    display: block;
  }

  .brand-art {
    min-height: 0;
    height: 250px;
  }

  .brand-copy {
    padding: 25px;
  }

  .brand-copy p {
    font-size: 15px;
  }

  .brand-copy h3 {
    font-size: 25px;
  }

  .brand-directory .directory-item {
    grid-template-columns: 1fr;
  }

  .directory-item .brand-art {
    height: 275px;
    min-height: 0;
  }

  .directory-item .brand-art .art-word {
    font-size: 53px;
  }

  .brand-hero .brand-art {
    height: 330px;
  }

  .brand-hero .spiritual-art::before {
    width: 245px;
    height: 245px;
  }

  .brand-hero .gifting-art .art-word {
    font-size: 53px;
    margin-left: -14px;
  }

  .brand-hero .art-word {
    font-size: 72px;
  }

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

  .about-logo {
    padding: 50px;
  }

  .about-logo img {
    width: 110px;
  }

  .about-copy {
    padding: 27px;
  }

  .business-details {
    padding: 25px;
  }

  .policy-fields>div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .policy-brand {
    padding: 21px !important;
  }

  .policy-meta {
    gap: 7px;
    flex-direction: column;
  }

  .policy-layout {
    padding-bottom: 50px;
  }

  .page-intro {
    padding-bottom: 30px;
  }

  .breadcrumbs {
    padding-top: 22px;
    margin-bottom: 31px;
  }

  .footer-base {
    flex-direction: column;
    gap: 3px;
  }

  .brand-next {
    flex-direction: column;
  }
}

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

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

  .button:hover,
  .brand-card:hover,
  .product-card:hover,
  .link-arrow:hover .arrow {
    transform: none;
  }
}

/* ==========================================================================
   Product Showcase & Grid Components
   ========================================================================== */

.product-showcase-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 6vw, 76px);
  margin-top: 24px;
}

.product-showcase-header {
  margin-bottom: clamp(32px, 4.5vw, 52px);
  max-width: 820px;
}

.product-showcase-header h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(8, 38, 75, 0.08), 0 4px 12px rgba(8, 38, 75, 0.04);
  border-color: var(--gold);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f5f0;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(8, 38, 75, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #faf9f6;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
  border: 1px solid rgba(187, 144, 66, 0.45);
}

.product-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.product-title {
  font-size: 20px;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.spec-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--navy);
  background: var(--soft);
  padding: 4px 10px;
  border-radius: 4px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--soft);
  margin-top: auto;
}

.product-pricing {
  display: flex;
  flex-direction: column;
}

.price-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.price-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.button-sm {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 13px;
  gap: 12px;
  white-space: nowrap;
}

.product-showcase-notice {
  background: var(--soft);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 13.5px;
  color: var(--muted);
}

.product-showcase-notice p {
  margin: 0;
}

.product-showcase-notice a {
  color: var(--navy);
  font-weight: 600;
}


@media print {
  body {
    background: white;
    color: #08264b;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .policy-sidebar,
  .actions,
  .skip-link {
    display: none !important;
  }

  .draft-bar {
    border: 1pt solid #64480e;
  }

  .container {
    width: 100%;
  }

  .policy-layout {
    display: block;
  }

  .policy-body {
    max-width: none;
  }

  .policy-brand,
  section {
    break-inside: avoid;
  }

  h1 {
    font-size: 28pt;
  }

  a {
    text-decoration: underline;
  }
}