/* =========================================================
   Desert Dust — shared stylesheet
   Theme: purple canvas throughout (header to footer), product
   art and photography overlaid on it rather than boxed in white.
   ========================================================= */

:root {
  --gold: #d9a62e;
  --gold-dark: #b3841a;
  --purple: #3b1f4d;
  --purple-deep: #241030;
  --purple-deeper: #180a20;
  --green: #7cbf6a;
  --cream: #faf3e1;
  --cream-dark: #f0e4c4;
  --ink: #2a1b1f;
  --white: #ffffff;

  --text: #ece3ef;       /* primary body copy on the purple canvas */
  --text-muted: #c3aecb; /* secondary / small text on the purple canvas */

  --surface: rgba(255, 255, 255, 0.05);        /* card / panel glass */
  --surface-hover: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(217, 166, 46, 0.3);   /* gold-tinted card edge */

  --font-display: "Rye", serif;
  --font-heading: "Playfair Display", serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  --radius: 10px;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--purple-deep);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--cream);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

.display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1em;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid var(--gold-dark);
  background: var(--purple);
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: var(--purple-deeper);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold-dark);
  color: var(--purple-deep);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--purple-deep);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.product-body .btn-block + .btn-block {
  margin-top: 10px;
}

.btn[disabled],
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- Top notice bar ---------- */
.notice-bar {
  background: var(--purple-deeper);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

/* ---------- Header / nav ---------- */
header.site-header {
  background: var(--purple-deep);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream-dark);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart-link {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  color: var(--cream);
  font-family: var(--font-heading);
}

.cart-count {
  background: var(--gold);
  color: var(--purple-deep);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 1px 7px;
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--cream);
  cursor: pointer;
}

@media (max-width: 820px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--purple-deep);
    border-bottom: 3px solid var(--gold);
    display: none;
  }
  nav.main-nav.open {
    display: block;
  }
  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
  }
  nav.main-nav ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-toggle {
    display: block;
  }
}

/* ---------- Sidebar nav (Home page) ---------- */
.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sidebar-toggle {
  background: none;
  border: 2px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  padding: 7px 11px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-toggle:hover {
  background: var(--gold);
  color: var(--purple-deep);
}

.brand-name-lg {
  font-size: 3.6rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .brand-name-lg {
    font-size: 2.6rem;
  }
}

@media (max-width: 640px) {
  .brand-name-lg {
    font-size: 1.9rem;
  }
}

@media (max-width: 400px) {
  .brand-name-lg {
    font-size: 1.5rem;
  }
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 20, 0.65);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}

.sidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 82vw;
  background: var(--purple-deep);
  border-right: 3px solid var(--gold);
  z-index: 95;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.sidebar-nav.open {
  transform: translateX(0);
}

.sidebar-close {
  background: none;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
  margin-bottom: 28px;
  transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-close:hover {
  background: var(--gold);
  color: var(--purple-deep);
}

.sidebar-nav nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-nav nav ul li a {
  display: block;
  padding: 16px 4px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.sidebar-nav nav ul li a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.sidebar-nav nav ul li.sidebar-wellness-parent {
  border-bottom: none;
}

.sidebar-wellness {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-nav .sidebar-wellness li {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-nav .sidebar-wellness li:last-child {
  border-bottom: none;
}

.sidebar-wellness li a {
  margin-bottom: 6px;
}

.sidebar-blurb {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0 0 16px;
}

/* ---------- Sidebar: permanent on web, hamburger overlay on mobile ---------- */
@media (min-width: 901px) {
  body.has-sidebar .sidebar-toggle {
    display: none;
  }
  body.has-sidebar .sidebar-overlay {
    display: none !important;
  }
  body.has-sidebar .sidebar-close {
    display: none;
  }
  body.has-sidebar .sidebar-nav {
    transform: none;
    box-shadow: 6px 0 24px rgba(0, 0, 0, 0.35);
  }
  body.has-sidebar > .notice-bar,
  body.has-sidebar > .site-header,
  body.has-sidebar > section,
  body.has-sidebar > .site-footer {
    margin-left: 300px;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--purple-deep);
  color: var(--cream);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.3em;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: inline-block;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--cream-dark);
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  max-width: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--surface-border);
}

@media (max-width: 820px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero p.lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Sections ---------- */
section {
  padding: 72px 0;
  background: transparent;
}

section.alt {
  background: var(--purple);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head p {
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
}

/* ---------- Feature grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  border-left: 1px solid var(--surface-border);
  border-right: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  backdrop-filter: blur(6px);
}

.feature-card p {
  color: var(--text-muted);
}

.feature-card h3 {
  font-size: 1.15rem;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, border-color 0.15s ease;
  backdrop-filter: blur(6px);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.product-card .product-img {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--purple-deeper);
  color: var(--cream);
  text-decoration: none;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .product-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(160deg, var(--purple-deeper), var(--purple-deep));
}

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

.product-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  margin: 0 6px 10px 0;
}

.product-tag.age {
  background: var(--gold);
  color: var(--purple-deeper);
  border-color: var(--gold-dark);
}

.product-body h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.product-body h3 a:hover {
  color: var(--gold);
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
}

.price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gold);
}

.price .sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
}

/* ---------- Callout / banner ---------- */
.callout {
  background: var(--purple-deeper);
  border: 1px solid var(--surface-border);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.callout h2 {
  color: var(--cream);
  margin-bottom: 4px;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--purple-deeper);
  border-top: 3px solid var(--gold);
  color: var(--cream-dark);
  padding: 56px 0 28px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

footer h4 {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer li {
  margin-bottom: 8px;
}

footer a {
  text-decoration: none;
  color: var(--cream-dark);
}

footer a:hover {
  color: var(--gold);
}

.footer-brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 243, 225, 0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #b6a7ac;
}

.disclaimer {
  font-size: 0.78rem;
  color: #a89ba0;
  max-width: 900px;
  margin-top: 18px;
  line-height: 1.6;
}

/* ---------- Page header (non-home pages) ---------- */
.page-header {
  background: linear-gradient(180deg, var(--purple-deeper), var(--purple-deep));
  color: var(--cream);
  padding: 56px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--cream);
  margin-bottom: 8px;
}

.page-header p {
  color: var(--cream-dark);
  max-width: 60ch;
  margin: 0 auto;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--surface-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--cream);
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 166, 46, 0.3);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.field-row {
  margin-bottom: 18px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 22px;
}

fieldset legend {
  color: var(--gold);
}

/* ---------- Checkout layout ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th, .cart-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: var(--text);
}

.cart-table th {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.cart-item-name {
  font-weight: 700;
  color: var(--cream);
}

.qty-input {
  width: 64px;
  padding: 6px 8px;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff8a8a;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.summary-row.total {
  border-top: 2px solid var(--gold);
  margin-top: 8px;
  padding-top: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.gateway-note {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold-dark);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--purple-deep);
  margin-top: 18px;
}

.age-gate-banner {
  background: var(--gold);
  color: var(--purple-deeper);
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.confirmation {
  text-align: center;
  padding: 40px 10px;
}

.confirmation .big-check {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 12px;
}

/* ---------- About page ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}

.split p {
  color: var(--text-muted);
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--surface-border);
}

/* ---------- Wellness pages ---------- */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 760px) {
  .wellness-grid { grid-template-columns: 1fr; }
}

.wellness-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wellness-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-deeper);
  border: 1px solid var(--surface-border);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.wellness-product-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  background: var(--purple-deeper);
}

.wellness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

@media (max-width: 760px) {
  .product-detail-meta { grid-template-columns: 1fr; }
}

.product-detail-meta .tile {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 16px;
}

.product-detail-meta .label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-meta .value {
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 4px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 820px) {
  .timeline { grid-template-columns: 1fr 1fr; }
}

.timeline-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(6px);
}

.timeline-item p {
  color: var(--text-muted);
}

.timeline-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-item .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
  border: 1px solid var(--surface-border);
  width: 100%;
  height: 260px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--purple-deeper);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 100;
  border-left: 4px solid var(--gold);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Section labels (review mode — off by default) ---------- */
/* Toggle with the "Show Section Labels" button (bottom-left). Not shown
   to normal visitors; used so Andrew can point at a code like "H03" or
   "P04" when requesting edits, instead of describing a section in prose. */
.section-label {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--purple-deeper);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 0 0 8px 0;
  z-index: 40;
  letter-spacing: 0.04em;
  pointer-events: none;
}

body.labels-on [data-label] {
  position: relative;
  outline: 2px dashed var(--gold-dark);
  outline-offset: -2px;
}

body.labels-on .section-label {
  display: inline-block;
}

.label-toggle-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  background: var(--purple-deeper);
  color: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.label-toggle-btn:hover {
  background: var(--purple);
}
