:root {
  --gold: #d3b16d;
  --paper: #efe1c3;
  --ink: #070806;
  --seal-red: #9f1f25;
  --seal-red-bright: #c43a40;
  --shop-cream-final: #f7f4ef;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--shop-cream-final);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", serif;
}
body { overflow-x: hidden; overflow-y: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.site-shell,
.site-shell.shop-ritual-shell {
  min-height: 100svh;
  background: var(--shop-cream-final);
}
.header {
  position: fixed;
  z-index: 9999;
  top: clamp(24px, 3vw, 46px);
  left: clamp(26px, 4vw, 76px);
  right: clamp(26px, 4vw, 76px);
  display: grid;
  grid-template-columns: minmax(230px, 300px) 1fr minmax(130px, 160px);
  align-items: center;
  gap: 24px;
  height: 56px;
  padding: 4px 18px;
  border-radius: 14px;
  background: rgba(8, 13, 13, .72);
  border: 1px solid rgba(211, 177, 109, .10);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10), inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: top .28s ease, height .28s ease, padding .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease, border-radius .28s ease;
}
.header.is-scrolled {
  top: 12px;
  height: 48px;
  padding: 3px 16px;
  border-radius: 12px;
  background: rgba(7, 10, 9, .88);
  border-color: rgba(211, 177, 109, .18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .035);
}
.header::before { display: none; }
.brand { display: inline-flex; align-items: center; width: min(300px, 18vw); min-width: 230px; }
.brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 41px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.38));
  transition: max-height .28s ease;
}
.header.is-scrolled .brand img { max-height: 34px; }
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 1.7vw, 30px);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(12px, .76vw, 15px);
  font-weight: 800;
  color: rgba(250,238,211,.90);
  text-shadow: 0 2px 10px rgba(0,0,0,.32);
  white-space: nowrap;
  transition: font-size .28s ease, gap .28s ease;
}
.header.is-scrolled .nav { gap: clamp(14px, 1.55vw, 26px); font-size: clamp(11px, .72vw, 14px); }
.nav a { position: relative; padding: 5px 0 8px; color: rgba(250,238,211,.88); transition: color .25s ease, transform .25s ease; }
.nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--seal-red-bright);
  box-shadow: 0 0 8px rgba(179,38,44,.34);
  transform: translateX(-50%) scale(.45);
  opacity: 0;
  transition: all .25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--seal-red) 0%, var(--gold) 100%);
  transform: translateX(-50%);
  transition: width .25s ease;
}
.nav a:hover, .nav a.active { color: #fff3d4; }
.nav a:hover { transform: translateY(-1px); }
.nav a:hover::before, .nav a.active::before { opacity: 1; transform: translateX(-50%) scale(1); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-icons { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.header-icons button { position: relative; width: 28px; height: 28px; color: rgba(211,177,109,.82); transition: color .25s ease, transform .25s ease; }
.header-icons button:hover { color: #e7b3a8; transform: translateY(-1px); }
.header-icons svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.85; fill: none; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 2px 8px rgba(0,0,0,.28)); }
.shop-ritual-hero {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
}
.shop-ritual-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  margin: 0;
  padding: 0;
  border: 0;
}
.shop-ritual-kicker {
  margin: 0 0 18px;
  color: rgba(225,193,125,.98);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(11px, .85vw, 14px);
  font-weight: 900;
  letter-spacing: .34em;
  line-height: 1.2;
  text-transform: uppercase;
}
.shop-ritual-hero h1 {
  margin: 0;
  color: rgba(255,251,243,.98);
  font-size: clamp(42px, 5.4vw, 88px);
  line-height: .94;
  font-weight: 500;
  letter-spacing: -.062em;
}
.shop-ritual-subtitle {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(255,248,232,.94);
  font-size: clamp(15px, 1.16vw, 19px);
  line-height: 1.52;
  font-weight: 400;
}

.site-footer {
  background: #14110d;
  color: rgba(250,238,211,.92);
  padding: clamp(48px, 5vw, 72px) clamp(20px, 3vw, 48px) 24px;
  border-top: 1px solid rgba(211,177,109,.14);
}
.footer-shell { max-width: 1600px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  gap: clamp(28px, 4vw, 80px);
  padding-bottom: clamp(28px, 3vw, 36px);
  border-bottom: 1px solid rgba(211,177,109,.12);
}
.footer-brand__logo { display: inline-flex; width: min(270px, 70vw); margin-bottom: 20px; }
.footer-brand__logo img { display: block; width: 100%; height: auto; object-fit: contain; }
.footer-brand p { max-width: 360px; margin: 16px 0 0; color: rgba(239,225,195,.66); font-size: 16px; line-height: 1.75; }
.footer-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2vw, 34px); }
.footer-column h4 { margin: 0 0 14px; color: rgba(211,177,109,.92); font-family: Arial, "Helvetica Neue", sans-serif; font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a, .footer-meta a { display: block; color: rgba(250,238,211,.86); text-decoration: none; font-size: 15px; line-height: 1.9; transition: color .2s ease, opacity .2s ease; }
.footer-column a:hover, .footer-meta a:hover { color: #f6ebcf; opacity: .75; }
.footer-bottom { padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-bottom p { margin: 0; color: rgba(239,225,195,.48); font-size: 13px; }
.footer-meta { display: flex; gap: 18px; }
.footer-meta a { font-size: 13px; line-height: 1.2; color: rgba(239,225,195,.58); }

@media (max-width: 1200px) {
  .header { grid-template-columns: minmax(170px, 220px) 1fr minmax(100px, 120px); gap: 12px; }
  .brand { min-width: 170px; }
  .nav { gap: 15px; font-size: 12px; letter-spacing: .08em; }
}
@media (max-width: 900px) {
  .header { display: flex; justify-content: space-between; top: 22px; height: 54px; padding: 4px 14px; }
  .header.is-scrolled { top: 10px; height: 48px; }
  .nav { display: none; }
  .brand { width: 205px; min-width: 0; }
  .brand img { max-height: 36px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .header { left: 18px; right: 18px; height: 50px; border-radius: 14px; padding: 0 12px; }
  .brand { width: 170px; }
  .brand img { max-height: 32px; }
  .header-icons { gap: 10px; }
  .header-icons button { width: 25px; height: 25px; }
  .shop-ritual-kicker { letter-spacing: .20em; margin-bottom: 12px; }
  .shop-ritual-subtitle { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

.page-title-below {
  position: relative;
  z-index: 3;
  background: transparent !important;
  text-align: center;
  padding: clamp(46px, 5vw, 82px) 24px clamp(30px, 3.8vw, 56px);
  color: #33241d;
}

.page-title-below__content {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title-below .shop-ritual-kicker {
  margin: 0 0 12px;
  color: #bc8b31;
  font-size: clamp(11px, .85vw, 14px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.page-title-below h1 {
  margin: 0;
  font-family: var(--font-display, Georgia, 'Times New Roman', serif);
  font-size: clamp(54px, 6.4vw, 118px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: -.055em;
  color: #33241d;
}

.page-title-below .shop-ritual-subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(51, 36, 29, .72);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .page-title-below {
    padding: 36px 18px 34px;
  }
  .page-title-below h1 {
    font-size: clamp(42px, 13vw, 72px);
  }
  .page-title-below .shop-ritual-kicker {
    letter-spacing: .28em;
  }
  .page-title-below .shop-ritual-subtitle br {
    display: none;
  }
}
.page-title-below {
  margin-top: clamp(-96px, -5.4vw, -58px) !important;
  padding-top: clamp(18px, 2vw, 36px) !important;
  padding-bottom: clamp(20px, 2.6vw, 38px) !important;
}

@media (max-width: 1180px) {
  .page-title-below {
    margin-top: -54px !important;
  }
}

@media (max-width: 680px) {
  .page-title-below {
    margin-top: -34px !important;
    padding-top: 24px !important;
  }
}

.temple-archive-section {
  position: relative;
  margin-top: -4px;
  padding: clamp(18px, 2.2vw, 36px) clamp(20px, 4vw, 72px) clamp(82px, 7.8vw, 138px);
  background:
    radial-gradient(circle at 50% 0%, rgba(211, 177, 109, .16), transparent 31%),
    radial-gradient(circle at 8% 34%, rgba(185, 143, 70, .08), transparent 24%),
    radial-gradient(circle at 92% 58%, rgba(185, 143, 70, .07), transparent 28%),
    var(--shop-cream-final);
  color: #34251d;
  overflow: hidden;
}

.temple-archive-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.temple-bg-mark {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  filter: blur(.1px);
}

.temple-bg-mark::before,
.temple-bg-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(120, 94, 54, .16);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-28deg);
}

.temple-bg-mark--left {
  left: min(-170px, -8vw);
  top: 78px;
  width: 340px;
  height: 360px;
}

.temple-bg-mark--left::before {
  left: 0;
  bottom: 28px;
  width: 360px;
  height: 150px;
  border-radius: 44% 56% 0 0;
}

.temple-bg-mark--left::after {
  left: 62px;
  bottom: 78px;
  width: 240px;
  height: 110px;
  border-radius: 48% 52% 0 0;
}

.temple-bg-mark--right {
  right: min(-190px, -9vw);
  bottom: 58px;
  width: 390px;
  height: 360px;
  transform: scaleX(-1);
}

.temple-bg-mark--right::before {
  right: 0;
  bottom: 30px;
  width: 400px;
  height: 160px;
  border-radius: 44% 56% 0 0;
}

.temple-bg-mark--right::after {
  right: 70px;
  bottom: 86px;
  width: 255px;
  height: 118px;
  border-radius: 48% 52% 0 0;
}

.temple-seal-watermark {
  position: absolute;
  z-index: -1;
  right: -46px;
  top: 88px;
  width: 76px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 2px solid rgba(185, 143, 70, .14);
  color: rgba(118, 88, 45, .15);
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  writing-mode: vertical-rl;
  letter-spacing: .10em;
  transform: rotate(-8deg);
}

.temple-heading-ornament {
  width: min(520px, 92vw);
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: #c69b4d;
}

.temple-heading-ornament span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 143, 70, .46));
}

.temple-heading-ornament span:last-child {
  background: linear-gradient(90deg, rgba(185, 143, 70, .46), transparent);
}

.temple-heading-ornament i {
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  opacity: .82;
}

.temple-section-head p:not(.temple-section-kicker) {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(52, 37, 29, .68);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.65;
}

.temple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.temple-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(185, 143, 70, .26);
  background: rgba(255, 252, 246, .72);
  box-shadow: 0 18px 44px rgba(72, 47, 22, .075);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.temple-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 143, 70, .42);
  box-shadow: 0 24px 58px rgba(72, 47, 22, .12);
}

.temple-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3.08 / 1;
  background: #d8c9ab;
}

.temple-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 9, .02), rgba(16, 13, 9, .18));
  pointer-events: none;
}

.temple-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.temple-card:hover .temple-card__image img {
  transform: scale(1.055);
}

.temple-card__body {
  padding: 16px 18px 18px;
}

.temple-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.temple-card h3 {
  margin: 0;
  color: #2e211a;
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.025em;
}

.temple-card__location {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 0;
  color: rgba(93, 72, 45, .72);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.temple-card__location::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c69b4d;
  box-shadow: 0 0 0 3px rgba(198, 155, 77, .12);
}

.temple-card__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(185, 143, 70, .36);
  color: #b88b37;
  background: rgba(255,255,255,.52);
  font-family: "Noto Serif SC", "Songti SC", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(96, 61, 22, .06);
}

.temple-card__desc {
  min-height: 40px;
  margin: 10px 0 15px;
  color: rgba(52, 37, 29, .70);
  font-size: 15px;
  line-height: 1.35;
}

.temple-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.temple-card__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(185, 143, 70, .28);
  background: rgba(255, 250, 239, .62);
  color: #9a6e20;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}

.temple-archive-note {
  width: min(1040px, 100%);
  margin: clamp(28px, 3vw, 46px) auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  color: rgba(52, 37, 29, .70);
  text-align: center;
}

.temple-archive-note span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 143, 70, .45));
}

.temple-archive-note span:last-child {
  background: linear-gradient(90deg, rgba(185, 143, 70, .45), transparent);
}

.temple-archive-note p {
  margin: 0;
  position: relative;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.6;
}

.temple-archive-note p::before {
  content: "✣";
  display: inline-block;
  margin-right: 12px;
  color: #b88b37;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .temple-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .temple-seal-watermark { right: 4px; opacity: .7; }
}

@media (max-width: 720px) {
  .temple-archive-section {
    padding: 28px 18px 78px;
  }

  .temple-heading-ornament {
    width: min(360px, 90vw);
    gap: 12px;
  }

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

  .temple-card__image { aspect-ratio: 2.55 / 1; }

  .temple-archive-note {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .temple-archive-note span {
    width: 100%;
  }

  .temple-seal-watermark { display: none; }
}
.page-title-below {
  padding-top: clamp(28px, 3vw, 48px) !important;
  padding-bottom: clamp(34px, 3.6vw, 58px) !important;
}

.page-title-below__content {
  max-width: 1280px;
}

.page-title-below .temple-heading-ornament {
  width: min(760px, 92vw);
  margin: 0 auto 18px;
}

.page-title-below .shop-ritual-kicker {
  margin: 0 0 18px;
  color: #b88b37;
  letter-spacing: .34em;
}

.page-title-below h1 {
  max-width: 1240px;
  font-size: clamp(48px, 6.1vw, 102px);
  line-height: .96;
  letter-spacing: -.05em;
}

.page-title-below .shop-ritual-subtitle {
  max-width: 1100px;
  margin-top: 18px;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.4;
}

.temple-archive-section {
  padding-top: clamp(4px, .8vw, 12px);
  background: transparent !important;
}

@media (max-width: 760px) {
  .page-title-below {
    padding-top: 20px !important;
    padding-bottom: 26px !important;
  }

  .page-title-below .temple-heading-ornament {
    margin-bottom: 14px;
  }

  .page-title-below h1 {
    font-size: clamp(40px, 11.8vw, 64px);
  }

  .page-title-below .shop-ritual-subtitle {
    font-size: 16px;
    line-height: 1.55;
  }
}
.temple-card {
  cursor: pointer;
  outline: none;
}

.temple-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(184, 139, 55, .18), 0 24px 58px rgba(72, 47, 22, .12);
  border-color: rgba(185, 143, 70, .50);
}

.temple-card__open {
  width: fit-content;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(185, 143, 70, .28);
  background: rgba(255, 250, 239, .50);
  color: #7a561d;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .24s ease, border-color .24s ease, transform .24s ease;
}

.temple-card:hover .temple-card__open,
.temple-card:focus-visible .temple-card__open {
  transform: translateY(-1px);
  border-color: rgba(185, 143, 70, .48);
  background: linear-gradient(180deg, rgba(245,216,139,.84), rgba(203,156,66,.78));
  color: #1e160f;
}

.temple-modal-open {
  overflow: hidden;
}

.temple-modal[hidden] {
  display: none !important;
}

.temple-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 48px);
  opacity: 0;
  transition: opacity .22s ease;
}

.temple-modal.is-open {
  opacity: 1;
}

.temple-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 7, .62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.temple-modal__dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(760px, calc(100svh - 36px));
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(360px, 1fr);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(211, 177, 109, .34);
  background:
    radial-gradient(circle at 78% 0%, rgba(211, 177, 109, .16), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 246, .96), rgba(247, 244, 239, .96));
  box-shadow: 0 36px 100px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255,255,255,.72);
  color: #34251d;
  transform: translateY(18px) scale(.985);
  transition: transform .22s ease;
}

.temple-modal.is-open .temple-modal__dialog {
  transform: translateY(0) scale(1);
}

.temple-modal__close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 70, .26);
  background: rgba(255, 252, 246, .72);
  color: #2e211a;
  font: 400 28px/1 Georgia, "Times New Roman", serif;
  box-shadow: 0 12px 28px rgba(72, 47, 22, .10);
  transition: transform .22s ease, background .22s ease;
}

.temple-modal__close:hover {
  transform: rotate(90deg);
  background: rgba(255, 252, 246, .94);
}

.temple-modal__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #d8c9ab;
}

.temple-modal__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 10, 7, .02), rgba(13, 10, 7, .32)),
    linear-gradient(180deg, transparent 60%, rgba(13, 10, 7, .30));
  pointer-events: none;
}

.temple-modal__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.temple-modal__content {
  min-width: 0;
  max-height: min(760px, calc(100svh - 36px));
  overflow-y: auto;
  padding: clamp(30px, 3.2vw, 52px);
}

.temple-modal__kicker {
  margin: 0 0 12px;
  color: #b88b37;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .30em;
  text-transform: uppercase;
}

.temple-modal h2 {
  margin: 0;
  color: #2e211a;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.052em;
}

.temple-modal__location {
  margin: 14px 0 24px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(185, 143, 70, .24);
  background: rgba(255, 250, 239, .54);
  color: #8a6726;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.temple-modal__blocks {
  display: grid;
  gap: 16px;
}

.temple-modal__block {
  padding: 18px 18px 17px;
  border-radius: 18px;
  border: 1px solid rgba(185, 143, 70, .18);
  background: rgba(255, 255, 255, .30);
}

.temple-modal__block span {
  display: block;
  margin-bottom: 8px;
  color: #b88b37;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.temple-modal__block p {
  margin: 0;
  color: rgba(52, 37, 29, .76);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.68;
}

.temple-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.temple-modal__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(185, 143, 70, .28);
  background: linear-gradient(180deg, rgba(245,216,139,.64), rgba(203,156,66,.42));
  color: #5f4316;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.temple-modal__note {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(185, 143, 70, .18);
  color: rgba(52, 37, 29, .54);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .temple-modal__dialog {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 28px);
  }

  .temple-modal__image {
    min-height: 260px;
    max-height: 320px;
  }

  .temple-modal__content {
    max-height: calc(100svh - 300px);
  }
}

@media (max-width: 560px) {
  .temple-card__open {
    width: 100%;
    justify-content: center;
  }

  .temple-modal {
    padding: 12px;
  }

  .temple-modal__dialog {
    border-radius: 22px;
  }

  .temple-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .temple-modal__image {
    min-height: 220px;
  }

  .temple-modal__content {
    padding: 24px 18px 22px;
    max-height: calc(100svh - 260px);
  }

  .temple-modal h2 {
    font-size: 38px;
  }
}
.temple-card__image {
  aspect-ratio: 3.09 / 1 !important;
  background: #d8c9ab !important;
}

.temple-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

.temple-card:hover .temple-card__image img {
  transform: scale(1.035) !important;
}

.temple-modal__dialog {
  width: min(1160px, calc(100vw - 36px)) !important;
  max-height: min(820px, calc(100svh - 36px)) !important;
  grid-template-columns: minmax(380px, .82fr) minmax(420px, 1fr) !important;
}

.temple-modal__image {
  align-self: center !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  margin: clamp(24px, 2.8vw, 38px) 0 clamp(24px, 2.8vw, 38px) clamp(24px, 2.8vw, 38px) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(211, 177, 109, .26) !important;
  box-shadow: 0 24px 58px rgba(26, 17, 8, .16) !important;
  background: #d8c9ab !important;
}

.temple-modal__image::after {
  background: linear-gradient(180deg, rgba(13, 10, 7, .02), rgba(13, 10, 7, .16)) !important;
}

.temple-modal__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.temple-modal__content {
  max-height: min(820px, calc(100svh - 36px)) !important;
}

@media (max-width: 900px) {
  .temple-modal__dialog {
    grid-template-columns: 1fr !important;
  }

  .temple-modal__image {
    width: auto !important;
    margin: clamp(18px, 3vw, 26px) clamp(18px, 3vw, 26px) 0 !important;
    aspect-ratio: 16 / 8.8 !important;
  }

  .temple-modal__content {
    max-height: calc(100svh - 330px) !important;
  }
}

@media (max-width: 560px) {
  .temple-modal__dialog {
    width: calc(100vw - 24px) !important;
  }

  .temple-modal__image {
    margin: 12px 12px 0 !important;
    border-radius: 18px !important;
    aspect-ratio: 16 / 9 !important;
  }

  .temple-modal__content {
    max-height: calc(100svh - 260px) !important;
  }
}
.temple-modal__dialog {
  width: min(980px, calc(100vw - 36px)) !important;
  max-height: min(860px, calc(100svh - 36px)) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  border-radius: 30px !important;
}

.temple-modal__image {
  width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 5.7 !important;
  margin: clamp(22px, 2.4vw, 30px) clamp(22px, 2.4vw, 30px) 0 !important;
  align-self: auto !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(211, 177, 109, .26) !important;
  background: #d8c9ab !important;
  box-shadow: 0 18px 42px rgba(26, 17, 8, .13) !important;
}

.temple-modal__image::after {
  background:
    linear-gradient(180deg, rgba(13, 10, 7, .02), rgba(13, 10, 7, .18)) !important;
}

.temple-modal__image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.temple-modal__content {
  max-height: none !important;
  overflow: visible !important;
  padding: clamp(24px, 2.8vw, 38px) clamp(26px, 3.2vw, 48px) clamp(32px, 3.6vw, 54px) !important;
}

.temple-modal h2 {
  max-width: 820px !important;
  font-size: clamp(42px, 5.2vw, 76px) !important;
}

.temple-modal__blocks {
  grid-template-columns: 1fr !important;
}

@media (min-width: 980px) {
  .temple-modal__blocks {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
  }

  .temple-modal__block {
    display: grid !important;
    align-content: start !important;
  }
}

@media (max-width: 760px) {
  .temple-modal {
    padding: 12px !important;
  }

  .temple-modal__dialog {
    width: calc(100vw - 24px) !important;
    max-height: calc(100svh - 24px) !important;
    border-radius: 22px !important;
  }

  .temple-modal__image {
    margin: 12px 12px 0 !important;
    aspect-ratio: 16 / 8.6 !important;
    border-radius: 17px !important;
  }

  .temple-modal__content {
    padding: 22px 18px 26px !important;
  }

  .temple-modal h2 {
    font-size: clamp(36px, 10.5vw, 52px) !important;
  }
}
.mobile-nav-toggle,
.mobile-search-toggle,
.mobile-panel-backdrop,
.mobile-drawer {
  display: none !important;
}

.footer-accordion-toggle {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(211,177,109,.92);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: left;
}

.footer-accordion-toggle i {
  display: none;
  font-style: normal;
}

.footer-column-links {
  display: block;
}

@media (max-width: 900px) {
  body.mobile-panel-open {
    overflow: hidden !important;
  }

  .header,
  .header.is-scrolled {
    left: 16px !important;
    right: 16px !important;
    top: 24px !important;
    height: 60px !important;
    padding: 0 12px !important;
    display: grid !important;
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px 34px !important;
    align-items: center !important;
    gap: 7px !important;
    border-radius: 18px !important;
    background: rgba(7, 12, 12, .88) !important;
    border: 1px solid rgba(211, 177, 109, .16) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
  }

  .header.is-scrolled {
    top: 12px !important;
    height: 54px !important;
  }

  .mobile-nav-toggle,
  .mobile-search-toggle {
    display: grid !important;
    place-items: center !important;
    width: 34px !important;
    height: 34px !important;
    color: rgba(222, 192, 132, .96) !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
  }

  .mobile-nav-toggle {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .mobile-search-toggle {
    grid-column: 2 !important;
    justify-self: start !important;
  }

  .mobile-nav-toggle span {
    display: block !important;
    width: 20px !important;
    height: 1.7px !important;
    margin: 2.8px 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    box-shadow: 0 1px 7px rgba(0,0,0,.24) !important;
  }

  .mobile-search-toggle svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    fill: none !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }

  .header .brand {
    grid-column: 3 !important;
    justify-self: center !important;
    width: min(43vw, 190px) !important;
    min-width: 0 !important;
    max-width: 190px !important;
  }

  .header .brand img,
  .header.is-scrolled .brand img {
    width: 100% !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }

  .header .nav {
    display: none !important;
  }

  .header-icons {
    display: contents !important;
  }

  .desktop-search-btn {
    display: none !important;
  }

  .mobile-panel-backdrop {
    display: block !important;
    position: fixed !important;
    z-index: 10000 !important;
    inset: 0 !important;
    background: rgba(0,0,0,.42) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .28s ease !important;
  }

  .mobile-panel-backdrop.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer {
    display: block !important;
    position: fixed !important;
    z-index: 10001 !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: min(86vw, 360px) !important;
    padding: 22px 22px 28px !important;
    background: #14110d !important;
    color: rgba(250,238,211,.92) !important;
    border-right: 1px solid rgba(211,177,109,.18) !important;
    box-shadow: 22px 0 46px rgba(0,0,0,.34) !important;
    transform: translateX(-105%) !important;
    transition: transform .32s cubic-bezier(.2,.72,.2,1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .mobile-drawer.is-open {
    transform: translateX(0) !important;
  }

  .mobile-search-drawer {
    width: min(92vw, 420px) !important;
  }

  .mobile-drawer__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid rgba(211,177,109,.14) !important;
  }

  .mobile-drawer__head img {
    width: 185px !important;
    max-width: 70% !important;
    height: auto !important;
    display: block !important;
  }

  .mobile-drawer__head strong {
    color: #f6ebcf !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer-close {
    width: 36px !important;
    height: 36px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211,177,109,.2) !important;
    background: rgba(255,255,255,.035) !important;
    color: rgba(250,238,211,.92) !important;
    font-size: 26px !important;
    line-height: 1 !important;
  }

  .mobile-drawer__links {
    display: grid !important;
    gap: 0 !important;
    padding: 18px 0 !important;
  }

  .mobile-drawer__links a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 48px !important;
    color: rgba(250,238,211,.92) !important;
    text-decoration: none !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(211,177,109,.10) !important;
  }

  .mobile-drawer__links a::after {
    content: "→" !important;
    color: rgba(211,177,109,.82) !important;
  }

  .mobile-drawer__cta a,
  .mobile-search-form button {
    display: inline-grid !important;
    place-items: center !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #dec084 0%, #cfa860 100%) !important;
    color: #171108 !important;
    text-decoration: none !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
    border: 0 !important;
  }

  .mobile-search-form {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .mobile-search-form input {
    min-width: 0 !important;
    height: 44px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211,177,109,.22) !important;
    background: rgba(255,255,255,.055) !important;
    color: rgba(250,238,211,.96) !important;
    outline: none !important;
  }

  .mobile-search-form input::placeholder {
    color: rgba(250,238,211,.46) !important;
  }

  .mobile-search-suggestions {
    display: grid !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .mobile-search-suggestions a {
    color: rgba(250,238,211,.86) !important;
    text-decoration: none !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(211,177,109,.10) !important;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 34px 20px 22px !important;
  }

  .footer-shell {
    max-width: 100% !important;
  }

  .footer-top {
    display: block !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(211,177,109,.12) !important;
  }

  .footer-brand {
    text-align: center !important;
    margin-bottom: 24px !important;
  }

  .footer-brand__logo {
    display: inline-block !important;
  }

  .footer-brand__logo img {
    width: min(58vw, 220px) !important;
    margin: 0 auto !important;
  }

  .footer-brand p {
    max-width: 320px !important;
    margin: 16px auto 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: rgba(239,225,195,.66) !important;
  }

  .footer-links {
    display: block !important;
  }

  .footer-column {
    border-top: 1px solid rgba(211,177,109,.14) !important;
  }

  .footer-column:last-child {
    border-bottom: 1px solid rgba(211,177,109,.14) !important;
  }

  .footer-accordion-toggle {
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: rgba(222,192,132,.96) !important;
    cursor: pointer !important;
  }

  .footer-accordion-toggle i {
    display: block !important;
    font-size: 18px !important;
    color: rgba(250,238,211,.72) !important;
    transition: transform .22s ease !important;
  }

  .footer-column.is-open .footer-accordion-toggle i {
    transform: rotate(45deg) !important;
  }

  .footer-column-links {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    padding: 0 !important;
    transition: max-height .28s ease, opacity .22s ease, padding .22s ease !important;
  }

  .footer-column.is-open .footer-column-links {
    max-height: 260px !important;
    opacity: 1 !important;
    padding: 0 0 16px !important;
  }

  .footer-column-links a {
    display: block !important;
    padding: 5px 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .footer-bottom {
    padding-top: 18px !important;
    align-items: center !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .footer-meta {
    justify-content: center !important;
    gap: 14px !important;
  }
}
@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }

  .mobile-nav-toggle span {
    width: 16px !important;
    height: 1.15px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: rgba(224, 190, 118, .92) !important;
    box-shadow: none !important;
    opacity: .96 !important;
  }
}
@media (max-width: 900px) {
  body.mobile-panel-open {
    overflow: hidden !important;
  }

  .header {
    position: fixed !important;
    top: max(16px, calc(env(safe-area-inset-top, 0px) + 10px)) !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 9999 !important;

    height: 64px !important;
    min-height: 64px !important;
    padding: 0 18px !important;
    border-radius: 18px !important;

    display: grid !important;
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px 34px !important;
    align-items: center !important;
    gap: 10px !important;

    background: rgba(5, 10, 9, .92) !important;
    border: 1px solid rgba(211, 177, 109, .16) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header.is-scrolled {
    top: max(12px, calc(env(safe-area-inset-top, 0px) + 8px)) !important;
    height: 60px !important;
    min-height: 60px !important;
    padding: 0 17px !important;
    border-radius: 17px !important;
  }

  .header::before,
  .header::after {
    display: none !important;
    content: none !important;
  }

  .nav {
    display: none !important;
  }

  .brand {
    grid-column: 3 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 180px !important;
  }

  .brand img {
    display: block !important;
    width: auto !important;
    height: 34px !important;
    max-width: 180px !important;
    object-fit: contain !important;
  }

  .mobile-nav-toggle,
.mobile-search-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #d9b76a !important;
  }

  .mobile-nav-toggle {
    grid-column: 1 !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .mobile-nav-toggle span {
    display: block !important;
    width: 17px !important;
    height: 1.4px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    margin: 0 !important;
    opacity: .92 !important;
  }

  .mobile-search-toggle {
    grid-column: 2 !important;
  }

  .mobile-search-toggle svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.75 !important;
    fill: none !important;
  }

  .header-icons {
    display: contents !important;
  }

  .desktop-search-btn {
    display: none !important;
  }

  .mobile-panel-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9997 !important;
    display: block !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: rgba(0, 0, 0, .42) !important;
    transition: opacity .24s ease !important;
  }

  .mobile-panel-backdrop.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 9998 !important;
    width: min(86vw, 360px) !important;
    padding: max(22px, calc(env(safe-area-inset-top, 0px) + 18px)) 22px 26px !important;
    background: #120f0b !important;
    color: #f3e6c8 !important;
    box-shadow: 20px 0 50px rgba(0, 0, 0, .35) !important;
    transform: translateX(-104%) !important;
    transition: transform .28s ease !important;
    overflow-y: auto !important;
  }

  .mobile-search-drawer {
    width: min(92vw, 400px) !important;
  }

  .mobile-drawer.is-open {
    transform: translateX(0) !important;
  }

  .mobile-drawer__head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(211, 177, 109, .18) !important;
  }

  .mobile-drawer__head img {
    width: 148px !important;
    height: auto !important;
    display: block !important;
  }

  .mobile-drawer__head strong {
    color: #d9b76a !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer-close {
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #d9b76a !important;
    border: 1px solid rgba(211, 177, 109, .24) !important;
    border-radius: 999px !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .mobile-drawer__links {
    display: grid !important;
    gap: 0 !important;
    padding: 18px 0 !important;
  }

  .mobile-drawer__links a,
  .mobile-search-suggestions a {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    border-bottom: 1px solid rgba(211, 177, 109, .10) !important;
    color: #f4ead0 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-drawer__cta a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    margin-top: 10px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #e5c676, #b88932) !important;
    color: #171008 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }

  .mobile-search-form {
    display: grid !important;
    gap: 12px !important;
    padding: 22px 0 16px !important;
  }

  .mobile-search-form input {
    width: 100% !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211, 177, 109, .22) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #f4ead0 !important;
    outline: 0 !important;
  }

  .mobile-search-form button {
    min-height: 46px !important;
    border-radius: 999px !important;
    background: #d9b76a !important;
    color: #171008 !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 38px 22px 28px !important;
    background: #120f0b !important;
    color: #f3e6c8 !important;
  }

  .footer-shell {
    width: 100% !important;
    max-width: none !important;
  }

  .footer-top {
    display: block !important;
  }

  .footer-brand {
    margin-bottom: 24px !important;
  }

  .footer-brand__logo img,
  .footer-brand img {
    width: 150px !important;
    height: auto !important;
  }

  .footer-brand p {
    margin: 16px 0 0 !important;
    max-width: 330px !important;
    color: rgba(243, 230, 200, .78) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .footer-links {
    display: block !important;
  }

  .footer-column {
    border-top: 1px solid rgba(211, 177, 109, .16) !important;
    padding: 0 !important;
  }

  .footer-column:last-child {
    border-bottom: 1px solid rgba(211, 177, 109, .16) !important;
  }

  .footer-accordion-toggle {
    width: 100% !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    color: #d9b76a !important;
    font-family: Arial, "Helvetica Neue", sans-serif !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .22em !important;
    text-transform: uppercase !important;
  }

  .footer-accordion-toggle i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    font-style: normal !important;
    transition: transform .22s ease !important;
  }

  .footer-column.is-open .footer-accordion-toggle i {
    transform: rotate(45deg) !important;
  }

  .footer-column-links {
    display: none !important;
    padding: 0 0 18px !important;
  }

  .footer-column.is-open .footer-column-links {
    display: grid !important;
    gap: 12px !important;
  }

  .footer-column-links a {
    color: #f4ead0 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .footer-bottom {
    display: block !important;
    margin-top: 24px !important;
    padding-top: 18px !important;
    border-top: 0 !important;
    color: rgba(243, 230, 200, .58) !important;
    font-size: 12px !important;
  }

  .footer-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px 18px !important;
    margin-top: 12px !important;
  }
}

@media (max-width: 420px) {
  .header {
    left: 12px !important;
    right: 12px !important;
    height: 60px !important;
    min-height: 60px !important;
    padding: 0 14px !important;
    grid-template-columns: 30px 30px minmax(0, 1fr) 30px 30px !important;
    gap: 8px !important;
    border-radius: 16px !important;
  }

  .brand img {
    height: 30px !important;
    max-width: 150px !important;
  }

  .mobile-nav-toggle,
.mobile-search-toggle {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .mobile-search-toggle svg {
    width: 20px !important;
    height: 20px !important;
  }

  .mobile-nav-toggle span {
    width: 16px !important;
  }
}
[aria-label="Cart"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.header-icons {
  justify-content: flex-end !important;
}

@media (max-width: 900px) {
  .header {
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px !important;
  }
}

@media (max-width: 420px) {
  .header {
    grid-template-columns: 30px 30px minmax(0, 1fr) 30px !important;
  }
}
.desktop-search-btn,
.mobile-search-toggle,
.mobile-search-drawer,
[aria-label="Cart"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.header.header-chat-icons .header-social-icon,
.header.header-chat-icons .header-whatsapp-btn.header-social-icon,
.header.header-chat-icons .desktop-messenger-link.header-social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(211, 177, 109, .34) !important;
  background: rgba(8, 13, 13, .26) !important;
  color: #d9b76a !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035) !important;
  text-decoration: none !important;
  transition: color .22s ease, border-color .22s ease, transform .22s ease, background .22s ease !important;
}

.header.header-chat-icons .header-social-icon:hover,
.header.header-chat-icons .header-whatsapp-btn.header-social-icon:hover,
.header.header-chat-icons .desktop-messenger-link.header-social-icon:hover {
  color: #f3d8c9 !important;
  border-color: rgba(211, 177, 109, .58) !important;
  background: rgba(211, 177, 109, .08) !important;
  transform: translateY(-1px) !important;
}

.header.header-chat-icons .header-social-icon svg,
.header.header-chat-icons .header-whatsapp-btn.header-social-icon svg,
.header.header-chat-icons .desktop-messenger-link.header-social-icon svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  stroke: none !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .24)) !important;
}

@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) minmax(300px, 360px) !important;
    min-height: 76px !important;
    height: 76px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
    column-gap: clamp(18px, 2.2vw, 42px) !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    display: none !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .header.header-chat-icons .brand img {
    display: block !important;
    max-height: 44px !important;
    width: auto !important;
  }

  .header.header-chat-icons .nav {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 92px !important;
    height: 40px !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr) minmax(104px, 150px) !important;
  }

  .header.header-chat-icons .nav {
    gap: clamp(14px, 1.8vw, 24px) !important;
    font-size: clamp(12px, 1.25vw, 14px) !important;
    letter-spacing: .10em !important;
  }

  .header.header-chat-icons .brand img {
    max-height: 38px !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 82px !important;
    grid-template-rows: 1fr !important;
    column-gap: 8px !important;
    align-items: center !important;
    min-height: 64px !important;
    height: 64px !important;
    padding: 0 16px !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .header.header-chat-icons .brand img {
    display: block !important;
    max-height: 34px !important;
    width: auto !important;
  }

  .header.header-chat-icons .nav {
    display: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 82px !important;
    min-width: 82px !important;
    height: 34px !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(211, 177, 109, .30) !important;
    background: rgba(8, 13, 13, .20) !important;
    box-shadow: none !important;
    color: #d9b76a !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 19px !important;
    height: 19px !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 38px minmax(0, 1fr) 72px !important;
    min-height: 60px !important;
    height: 60px !important;
    padding: 0 14px !important;
    column-gap: 6px !important;
  }

  .header.header-chat-icons .header-icons {
    width: 72px !important;
    min-width: 72px !important;
    gap: 6px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 31px !important;
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .header.header-chat-icons .brand img {
    max-height: 31px !important;
  }
}
@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    box-sizing: border-box !important;
    padding-left: clamp(48px, 4.2vw, 88px) !important;
    padding-right: clamp(48px, 4.2vw, 88px) !important;
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr) minmax(250px, 360px) !important;
    align-items: center !important;
  }

  .header.header-chat-icons .brand {
    justify-self: start !important;
    margin-left: 0 !important;
  }

  .header.header-chat-icons .nav {
    justify-self: center !important;
  }

  .header.header-chat-icons .header-icons {
    justify-self: end !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    box-sizing: border-box !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (min-width: 901px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) minmax(220px, 280px) !important;
    column-gap: clamp(22px, 2.4vw, 46px) !important;
    align-items: center !important;
    box-sizing: border-box !important;
    height: 76px !important;
    min-height: 76px !important;
    padding-left: clamp(56px, 4.2vw, 86px) !important;
    padding-right: clamp(56px, 4.2vw, 86px) !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
    background: transparent !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    display: block !important;
    width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header.header-chat-icons .nav {
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon svg,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 170px minmax(0, 1fr) 170px !important;
    column-gap: 16px !important;
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  .header.header-chat-icons .brand {
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    width: 170px !important;
    max-width: 170px !important;
    max-height: 38px !important;
  }

  .header.header-chat-icons .nav {
    gap: 16px !important;
  }

  .header.header-chat-icons .nav a {
    font-size: 12px !important;
    letter-spacing: .12em !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 36px !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}

@media (max-width: 900px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 82px !important;
    grid-template-rows: 1fr !important;
    column-gap: 8px !important;
    align-items: center !important;
    box-sizing: border-box !important;
    height: 64px !important;
    min-height: 64px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header.header-chat-icons .mobile-nav-toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .header.header-chat-icons .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    display: flex !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    display: block !important;
    width: auto !important;
    max-width: min(44vw, 190px) !important;
    height: auto !important;
    max-height: 34px !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .header.header-chat-icons .nav {
    display: none !important;
  }

  .header.header-chat-icons .header-icons {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 82px !important;
    min-width: 82px !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    margin: 0 !important;
  }
}

@media (max-width: 420px) {
  .header.header-chat-icons,
  .header.header-chat-icons.is-scrolled {
    grid-template-columns: 34px minmax(0, 1fr) 72px !important;
    height: 60px !important;
    min-height: 60px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .header.header-chat-icons .brand img,
  .header.header-chat-icons.is-scrolled .brand img {
    max-width: min(42vw, 165px) !important;
    max-height: 31px !important;
  }

  .header.header-chat-icons .header-icons {
    width: 72px !important;
    min-width: 72px !important;
    gap: 6px !important;
  }

  .header.header-chat-icons .desktop-messenger-link.header-social-icon,
  .header.header-chat-icons .header-whatsapp-btn.header-social-icon {
    flex-basis: 31px !important;
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
  }
}

/* === Premium temples arrow refresh === */
.temple-card__open > span {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: rgba(185, 143, 70, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
  font-size: 0 !important;
  line-height: 0;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.temple-card__open > span::before {
  content: "↗";
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.temple-card__open:hover > span {
  transform: translateX(2px) translateY(-1px);
  box-shadow: 0 10px 20px rgba(60, 42, 24, 0.08), inset 0 1px 0 rgba(255,255,255,.30);
}

/* === DAO SIGIL premium temples icons === */
.temple-card__open > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  margin-left: 8px !important;
  border-radius: 999px !important;
  border: 1px solid currentColor !important;
  background: rgba(185,143,70,0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transition: transform .24s ease, box-shadow .24s ease !important;
}
.temple-card__open > span::before {
  content: "↗";
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}
.temple-card__open:hover > span {
  transform: translateX(2px) translateY(-1px);
  box-shadow: 0 10px 18px rgba(46,32,16,0.08), inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

/* === DAO SIGIL About / Temples section restoration === */
.about-dao-sigil-section {
  position: relative;
  padding: clamp(34px, 4.2vw, 70px) clamp(20px, 4vw, 72px) clamp(30px, 3.6vw, 54px);
  color: #34251d;
  background: transparent;
}

.about-dao-sigil-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: center;
}

.about-dao-sigil-copy {
  max-width: 720px;
}

.about-dao-sigil-kicker {
  margin: 0 0 14px;
  color: #b57d20;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .30em;
  text-transform: uppercase;
}

.about-dao-sigil-copy h2 {
  margin: 0 0 22px;
  color: #2c1d17;
  font-size: clamp(40px, 4.15vw, 66px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.045em;
}

.about-dao-sigil-lead {
  margin: 0;
  color: rgba(52, 37, 29, .78);
  font-size: clamp(16px, 1.24vw, 20px);
  line-height: 1.65;
}

.about-dao-sigil-note {
  margin: 18px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(151, 108, 45, .18);
  color: rgba(52, 37, 29, .58);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 12px;
  line-height: 1.65;
}

.about-dao-sigil-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(151, 108, 45, .20);
  background: #e8dfd2;
  box-shadow: 0 24px 58px rgba(76, 49, 25, .12);
}

.about-dao-sigil-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-dao-sigil-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(35, 22, 15, .68));
  pointer-events: none;
}

.about-dao-sigil-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 20px;
  margin: 0;
  color: #fff9eb;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-dao-sigil-process {
  width: min(1280px, 100%);
  margin: clamp(28px, 3.2vw, 46px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(151, 108, 45, .22);
  border-bottom: 1px solid rgba(151, 108, 45, .22);
}

.about-dao-sigil-process article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  min-width: 0;
  padding: 25px clamp(18px, 2.4vw, 34px);
}

.about-dao-sigil-process article + article {
  border-left: 1px solid rgba(151, 108, 45, .18);
}

.about-dao-sigil-process article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #8c611e;
  border: 1px solid rgba(184, 139, 55, .35);
  background: #fbf5e8;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.about-dao-sigil-process h3 {
  margin: 0 0 6px;
  color: #33221a;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 500;
}

.about-dao-sigil-process p {
  margin: 0;
  color: rgba(52, 37, 29, .66);
  font-size: 14px;
  line-height: 1.5;
}

.temple-archive-section {
  padding-top: 0 !important;
}

@media (max-width: 900px) {
  .about-dao-sigil-shell {
    grid-template-columns: 1fr;
  }

  .about-dao-sigil-copy {
    max-width: 820px;
  }

  .about-dao-sigil-visual {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 16 / 9.4;
  }

  .about-dao-sigil-process {
    grid-template-columns: 1fr;
  }

  .about-dao-sigil-process article + article {
    border-left: 0;
    border-top: 1px solid rgba(151, 108, 45, .18);
  }
}

@media (max-width: 620px) {
  .about-dao-sigil-section {
    padding: 28px 18px 30px;
  }

  .about-dao-sigil-shell {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .about-dao-sigil-copy {
    width: 100%;
    max-width: none;
  }

  .about-dao-sigil-kicker {
    margin-bottom: 10px;
    color: #a96f13;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: .24em;
  }

  .about-dao-sigil-copy h2 {
    margin-bottom: 15px;
    color: #2c1d17;
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.08;
    letter-spacing: -.035em;
  }

  .about-dao-sigil-lead {
    color: rgba(52, 37, 29, .82);
    font-size: 15px;
    line-height: 1.58;
  }

  .about-dao-sigil-note {
    margin-top: 14px;
    padding-top: 13px;
    color: rgba(52, 37, 29, .62);
    font-size: 11px;
    line-height: 1.55;
  }

  .about-dao-sigil-visual {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(76, 49, 25, .10);
  }

  .about-dao-sigil-visual img {
    object-position: center 52%;
  }

  .about-dao-sigil-visual figcaption {
    left: 16px;
    right: 16px;
    bottom: 14px;
    font-size: 8px;
    line-height: 1.4;
    letter-spacing: .12em;
  }

  .about-dao-sigil-process {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    border: 0;
  }

  .about-dao-sigil-process article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(151, 108, 45, .17) !important;
    border-radius: 16px;
    background: rgba(255, 252, 246, .78);
    box-shadow: 0 8px 22px rgba(76, 49, 25, .045);
  }

  .about-dao-sigil-process article + article {
    border-top: 1px solid rgba(151, 108, 45, .17) !important;
  }

  .about-dao-sigil-process article > span {
    width: 32px;
    height: 32px;
    font-size: 8px;
  }

  .about-dao-sigil-process h3 {
    margin-bottom: 4px;
    color: #33221a;
    font-size: 17px;
    line-height: 1.25;
  }

  .about-dao-sigil-process p {
    color: rgba(52, 37, 29, .68);
    font-size: 12.5px;
    line-height: 1.48;
  }
}

