/* ── Reset & Base ── */
@media (pointer: fine) { html, html *, html *::before, html *::after { cursor: none !important; } }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #1C1A17;
  --surface:     #2A2520;
  --card:        #F5F0E8;
  --text-light:  #E8E0D0;
  --text-dark:   #1C1A17;
  --accent:      #8B7355;
  --accent-light:#C4A882;
  --green:       #4A5240;
  --border:      #3D3530;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --glass-bg:     rgba(245, 240, 232, 0.06);
  --glass-blur:   blur(12px);
  --bevel:        inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.3), 0 4px 24px rgba(0,0,0,0.4);
  --bevel-hover:  inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }
::selection { background: rgba(196, 168, 130, 0.35); color: inherit; }
::-moz-selection { background: rgba(196, 168, 130, 0.35); color: inherit; }

/* ── Page Transition ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-light);
  text-align: justify;
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;

}

/* ── Custom Cursor ── */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 14px;
  line-height: 1;
  color: var(--accent-light);
  text-shadow: 0 0 8px rgba(196, 168, 130, 0.6);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

/* Grain / noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }

main { flex: 1; background: var(--bg); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── Icons (SVG line icons) ── */
.icon { margin-bottom: 1rem; line-height: 0; }
.icon svg { display: block; }

/* ── Container ── */
.container { max-width: 80rem; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }

/* ── Section Divider ── */
.section-divider,
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
  position: relative;
  overflow: visible;
}
.section-divider::after,
hr::after {
  content: '\25C6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  padding: 0 1rem;
  color: var(--accent);
  font-size: .75rem;
  line-height: 1;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 26, 23, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-light);
}
.logo span { color: var(--accent-light); }

.nav-links { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav-link {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--accent-light);
  transition: color .2s, border-color .2s;
  border-bottom: 1px solid transparent;
}
.nav-link:hover {
  color: var(--text-light);
  border-bottom-color: var(--accent-light);
  background: rgba(196, 168, 130, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-link.active {
  color: var(--text-light);
  border-bottom-color: var(--accent-light);
  background: rgba(196, 168, 130, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: .75rem 1.5rem;
  margin-left: .75rem;
  border-radius: 4px;
  border: 1px solid var(--accent-light);
  color: var(--accent-light);
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: rgba(196, 168, 130, 0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.4);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: rgba(196, 168, 130, 0.25);
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.4), 0 6px 20px rgba(0,0,0,0.5);
}

.mobile-toggle {
  display: none;
  padding: .5rem;
  border-radius: 4px;
  transition: background .15s;
}
.mobile-toggle:hover { background: var(--surface); }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; color: var(--accent-light); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: .5rem 1.5rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu .nav-link { display: block; }
.mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin-left: 0;
  margin-top: .5rem;
  box-shadow: none;
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ── Footer ── */
.footer {
  background: var(--surface);
  color: var(--text-light);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Images/Pomona.jpg') center top / cover no-repeat;
  opacity: .10;
  filter: sepia(0.3) contrast(1.1);
  pointer-events: none;
}
.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3.5rem; }
}
.footer h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-light);
}
.footer h3 span { color: var(--accent-light); }
.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer p, .footer li { font-size: .875rem; line-height: 1.7; color: rgba(232, 224, 208, .7); }
.footer ul { margin-top: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.footer a { transition: color .2s; }
.footer a:hover { color: var(--accent-light); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: .75rem;
  color: rgba(232, 224, 208, .5);
}

/* ── Hero (Home) ── */
.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--surface);
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  min-height: 520px;
}
@media (min-width: 768px) { .hero { min-height: 600px; } }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: sepia(0.2) contrast(1.05);
  opacity: .2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,26,23,0.92), rgba(28,26,23,0.6));
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMiIvPjwvZz48L2c+PC9zdmc+");
}
.hero-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}
@media (min-width: 768px) { .hero-content { padding-top: 7rem; padding-bottom: 9rem; } }
@media (min-width: 1024px) { .hero-content { padding-top: 7rem; padding-bottom: 11rem; } }
.hero-inner { max-width: 48rem; text-align: left; }

.badge {
  display: inline-block;
  border-radius: 4px;
  padding: .375rem 1rem;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.badge-hero { background: rgba(196, 168, 130, .12); color: var(--accent-light); border: 1px solid rgba(196, 168, 130, .25); }
.badge-light { background: rgba(196, 168, 130, .12); color: var(--accent-light); border: 1px solid rgba(196, 168, 130, .25); }

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.15;
  color: var(--text-light);
}
@media (min-width: 768px) { .hero h1 { font-size: 3.25rem; white-space: nowrap; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4rem; } }
.hero h1 span { color: var(--accent-light); }

.hero p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: rgba(232, 224, 208, .75);
  line-height: 1.7;
  max-width: 36rem;
}
.hero-blurb {
  text-align: left;
  max-width: 680px;
  font-size: 1.15rem;
}

/* Hero rotating text */
.hero-rotating {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 3.5rem;
  color: var(--accent-light);
  letter-spacing: .03em;
  min-height: 1.5em;
  margin-top: 1rem;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-rotating.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) { .hero-rotating { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-rotating { font-size: 5.5rem; } }

.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; max-width: 640px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: 4px;
  border: 1px solid var(--accent-light);
  color: var(--accent-light);
  background: transparent;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
}
.btn-lg { padding: .875rem 2rem; }
.btn-md { padding: .75rem 1.5rem; }
.btn-sm { padding: .625rem 1.25rem; }

.btn:hover { background: rgba(196, 168, 130, .1); color: var(--text-light); }

.btn-primary { border-color: var(--accent-light); color: var(--accent-light); background: transparent; }
.btn-primary:hover { background: rgba(196, 168, 130, .12); color: var(--text-light); }

.btn-white { border-color: var(--text-light); color: var(--text-light); background: transparent; }
.btn-white:hover { background: rgba(232, 224, 208, .08); }

.btn-outline { border: 1px solid rgba(196, 168, 130, .4); color: var(--accent-light); }
.btn-outline:hover { background: rgba(196, 168, 130, .1); color: var(--text-light); }

.btn-accent { border-color: var(--accent-light); color: var(--accent-light); background: transparent; }
.btn-accent:hover { background: rgba(196, 168, 130, .12); }

.btn-ghost { color: var(--accent-light); border-color: transparent; }
.btn-ghost:hover { background: rgba(196, 168, 130, .08); border-color: var(--border); }

.btn:disabled { opacity: .35; cursor: not-allowed; }

/* ── Section Styles ── */
.section { padding: 5rem 0; position: relative; z-index: 1; background: var(--bg); }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-heading { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
@media (min-width: 768px) { .section-heading h2 { font-size: 2.5rem; } }
.section-heading p { margin-top: 1rem; color: rgba(232, 224, 208, .6); line-height: 1.7; }

.section-alt { background: var(--bg); position: relative; z-index: 1; }

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--accent-light);
  margin-bottom: 2rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--accent);
  display: inline-block;
}

/* ── Page Header ── */
.page-header {
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 768px) { .page-header { min-height: 340px; } }
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: sepia(0.15) contrast(1.05);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #1C1A17 35%, rgba(28, 26, 23, 0.93) 60%, rgba(28, 26, 23, 0.7) 100%);
}
@media (min-width: 768px) { .page-header { padding: 7rem 0; } }
.page-header .container { max-width: 80rem; width: 100%; position: relative; z-index: 1; text-align: left !important; }
.page-header h1, .page-header p, .page-header .badge { text-align: left !important; }
.page-header p { max-width: 36rem; }
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
@media (min-width: 768px) { .page-header h1 { font-size: 3.25rem; } }
.page-header p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: rgba(232, 224, 208, .7);
  line-height: 1.7;
}

/* ── Glass Card (shared) ── */
.glass-card,
.service-card,
.value-card,
.form-card,
.success-card,
.summary-card {
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--bevel);
  color: var(--text-light);
  transition: all 0.3s ease;
}
.glass-card:hover,
.service-card:hover,
.value-card:hover,
.form-card:hover,
.success-card:hover,
.summary-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bevel-hover);
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .sessions-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-light);
}
.service-card-link .desc { flex: 1; }
.service-card-link .service-card-footer { justify-content: flex-end; }
@media (min-width: 1024px) { .addons-grid { grid-template-columns: repeat(4, 1fr); } }
.addons-grid .service-card {
  display: flex;
  flex-direction: column;
}
.addons-grid .service-card .desc {
  flex: 1;
}
.addons-grid .service-card-footer {
  justify-content: flex-end;
}

.service-card {
  padding: 2rem;
}
.service-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; letter-spacing: .05em; color: var(--text-light); }
.service-card .desc { margin-top: .5rem; font-size: .875rem; color: rgba(232, 224, 208, .6); line-height: 1.7; }
.service-card-footer { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.service-card-meta { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: rgba(232, 224, 208, .5); }
.service-card-meta .dot { width: .25rem; height: .25rem; border-radius: 50%; background: var(--accent); }
.service-card-meta .price { font-weight: 400; color: var(--accent-light); }
.service-card .book-link { font-size: .875rem; font-weight: 400; color: var(--accent-light); transition: color .15s; }
.service-card .book-link:hover { color: var(--text-light); }

/* ── CTA ── */
.cta { text-align: center; }
.cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
@media (min-width: 768px) { .cta h2 { font-size: 2.5rem; } }
.cta p { margin-top: 1rem; color: rgba(232, 224, 208, .6); max-width: 36rem; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta .btn { margin-top: 2rem; }

/* ── About Hero ── */
.about-hero { position: sticky; top: 0; z-index: 0; overflow: hidden; border-bottom: 1px solid var(--border); min-height: 520px; max-height: 600px; }
@media (min-width: 768px) { .about-hero { min-height: 600px; max-height: 700px; } }
.about-hero .about-portrait img { max-height: 400px; object-fit: cover; }
.about-hero-inner { max-width: 80rem; margin: 0 auto; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .about-hero-inner { padding: 7rem 1.5rem; } }
.about-hero-text { max-width: 42rem; }
.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
@media (min-width: 768px) { .about-hero h1 { font-size: 3.25rem; } }
.about-hero h1 span { color: var(--accent-light); }
.about-hero p { margin-top: 1.5rem; font-size: 1.1rem; color: rgba(232, 224, 208, .7); line-height: 1.7; }

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  padding: 2rem;
  text-align: center;
}
.value-card .icon { display: flex; justify-content: center; }
.value-card h3 { font-family: var(--font-heading); font-weight: 600; letter-spacing: .05em; color: var(--text-light); }
.value-card p { margin-top: .5rem; font-size: .875rem; color: rgba(232, 224, 208, .6); line-height: 1.7; }

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 3rem auto 0;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-member { text-align: center; }
.team-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-light);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin: 0 auto;
}
.team-member h3 { margin-top: 1rem; font-family: var(--font-heading); font-weight: 600; letter-spacing: .05em; color: var(--text-light); }
.team-member p { font-size: .875rem; color: rgba(232, 224, 208, .6); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.contact-info > p { margin-top: 1rem; color: rgba(232, 224, 208, .6); line-height: 1.7; }

.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; }
.contact-row dt { color: var(--accent); width: 4rem; flex-shrink: 0; }
.contact-row dd { color: var(--text-light); font-weight: 400; }

.contact-info .btn { margin-top: 2rem; }

/* ── Forms (on glass cards) ── */
.form-card {
  padding: 2rem;
}
.form-card > * + * { margin-top: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
  margin-bottom: .375rem;
}
.form-group label .optional { font-weight: 300; color: rgba(232, 224, 208, .5); }

.form-input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-light);
  padding: .75rem 1rem;
  font-size: .875rem;
  font-family: var(--font-body);
  font-weight: 300;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-input:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 2px rgba(196, 168, 130, .25);
}
.form-input::placeholder { color: rgba(232, 224, 208, .3); }
textarea.form-input { resize: none; }
.email-error { display: none; font-size: .8rem; color: #c47a6a; margin-top: .35rem; }
.email-error.visible { display: block; }

.form-submit {
  width: 100%;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--accent-light);
  background: transparent;
  color: var(--accent-light);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  letter-spacing: .02em;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.form-submit:hover { background: rgba(196, 168, 130, .1); color: var(--text-light); }

/* ── Success message ── */
.success-card {
  padding: 2rem;
  text-align: center;
}
.success-card .checkmark {
  font-size: 1.875rem;
  margin-bottom: .75rem;
  color: var(--green);
}
.success-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; letter-spacing: .05em; color: var(--text-light); }
.success-card p { margin-top: .5rem; font-size: .875rem; color: rgba(232, 224, 208, .6); }
.success-card .reset-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .875rem;
  font-weight: 400;
  color: var(--accent-light);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.success-card .reset-link:hover { border-bottom-color: var(--accent-light); }

#booking-wizard, #booking-confirmed { position: relative; z-index: 1; background: var(--bg); }

/* ── Bookings Page ── */
.bookings-header { text-align: center; }
.bookings-header h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
@media (min-width: 768px) { .bookings-header h1 { font-size: 2.5rem; } }
.bookings-header p { margin-top: .75rem; color: rgba(232, 224, 208, .6); max-width: 32rem; margin-left: auto; margin-right: auto; }

/* Centred wizard content */
#step-content { max-width: 760px; margin: 0 auto; }
#step-content h2 { text-align: center; margin-bottom: 1.75rem; }

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 28rem;
  margin: 2.5rem auto 3rem;
}
.step { display: flex; flex-direction: column; align-items: center; gap: .5rem; flex: 1; }
.step-circle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-indent: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.step-circle.done { background: var(--accent); color: var(--text-light); border: 1px solid var(--accent); }
.step-circle.active { background: transparent; color: var(--accent-light); border: 2px solid var(--accent-light); }
.step-circle.pending { background: transparent; color: rgba(232, 224, 208, .3); border: 1px solid var(--border); }
.step-label {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .05em;
}
.step-label.done { color: var(--accent); }
.step-label.active { color: var(--accent-light); }
.step-label.pending { color: rgba(232, 224, 208, .3); }
.step-clickable { cursor: pointer; }
.step-clickable:hover .step-circle.done { background: var(--accent-light); }
.step-clickable:hover .step-label.done { color: var(--accent-light); }

/* Step content */
.step-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1rem;
  color: var(--text-light);
}
.step-content h2 .sub { font-size: .875rem; font-weight: 300; color: rgba(232, 224, 208, .5); margin-left: .5rem; }

/* Service selection — single centred column */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: .75rem;
  max-width: 760px;
  margin: 0 auto;
}

.service-option {
  text-align: left;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--bevel);
  color: var(--text-light);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}
.service-option:hover { transform: translateY(-2px); box-shadow: var(--bevel-hover); border-color: var(--accent); }
.service-option.selected { border-color: var(--accent-light); background: rgba(196, 168, 130, .08); }
.service-option-header { display: flex; align-items: flex-start; justify-content: space-between; }
.service-option-header .icon { margin-bottom: 0; }
.service-option-header .price { font-size: .875rem; font-weight: 400; color: var(--accent-light); }
.service-option h3 { margin-top: .75rem; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; letter-spacing: .05em; color: var(--text-light); }
.service-option .duration { margin-top: .25rem; font-size: .75rem; color: rgba(232, 224, 208, .45); }
.service-option .desc { margin-top: .5rem; font-size: .875rem; color: rgba(232, 224, 208, .55); line-height: 1.7; }
.svc-more-info {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 300;
  color: var(--accent);
  text-align: right;
  margin-top: -.4rem;
  transition: color .2s;
}
.svc-more-info:hover { color: var(--accent-light); }

/* ── Custom Calendar ── */
.cal {
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--bevel);
  padding: 1.5rem;
  max-width: 420px;
  margin: 0 auto;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.cal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition: background .2s;
}
.cal-nav:hover { background: rgba(196, 168, 130, .12); }

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: .5rem;
}
.cal-dayname {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 400;
  color: rgba(232, 224, 208, .45);
  text-align: center;
  padding: .375rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 300;
  text-align: center;
  padding: .5rem .25rem;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.cal-empty { visibility: hidden; }
.cal-past { color: rgba(232, 224, 208, .2); }
.cal-day:not(.cal-past) { color: var(--text-light); }
button.cal-day:not(.cal-past):hover { background: rgba(196, 168, 130, .12); }
.cal-today { border-bottom: 2px solid var(--accent-light); }
.cal-selected {
  background: var(--accent) !important;
  color: var(--text-light) !important;
  font-weight: 400;
}

/* ── Time Pills ── */
.time-section {
  max-width: 420px;
  margin: 1.5rem auto 0;
}
.time-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
  margin-bottom: .75rem;
  text-align: center;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}
.time-pill {
  border-radius: 20px;
  padding: .625rem .75rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 300;
  text-align: center;
  color: var(--text-light);
  border: 1px solid var(--border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.time-pill:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.4);
  background: rgba(196, 168, 130, .08);
}
.time-pill.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-light);
  font-weight: 400;
}
.time-hint { font-size: .875rem; color: rgba(232, 224, 208, .4); padding: 1rem 0; }

/* ── Add-ons (booking step 2) ── */
.addons-section {
  max-width: 420px;
  margin: 2rem auto 0;
}
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.addon-pill {
  text-align: left;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.3);
  color: var(--text-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  position: relative;
}
.addon-pill:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.4);
}
.addon-pill.selected {
  border-color: var(--accent-light);
  background: rgba(139, 115, 85, 0.15);
}
.framing-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(42, 37, 32, 0.95);
  color: var(--accent-light);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 300;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(139, 115, 85, 0.3);
  width: 260px;
  text-align: center;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.framing-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(42, 37, 32, 0.95);
}
.addon-toggle.selected:hover .framing-tooltip {
  display: block;
}
.addon-name {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-light);
}
.addon-desc {
  font-size: .75rem;
  font-weight: 300;
  color: rgba(232, 224, 208, .5);
  line-height: 1.4;
}
.addon-price {
  margin-top: .25rem;
  font-size: .8rem;
  color: var(--accent-light);
}

/* Additional photos counter */
.addon-counter {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.addon-counter.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.counter-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid var(--accent) !important;
  background: rgba(196, 168, 130, 0.08);
  color: var(--accent-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.counter-btn:hover {
  background: rgba(196, 168, 130, 0.2);
  border-color: var(--accent-light) !important;
}
.counter-val {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 400;
  color: var(--text-light);
  min-width: 1.25rem;
  text-align: center;
}

.calendly-inline-widget {
  transition: opacity 0s;
}
.calendly-inline-widget .calendly-spinner { display: none !important; }

/* ── Add-on reveal (post-Calendly) ── */
.addons-reveal-wrap {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(60px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.addons-reveal-wrap.revealed {
  opacity: 1;
  transform: translateY(0);
  max-height: none;
  overflow: visible;
  pointer-events: auto;
}
.addons-reveal-wrap.no-transition {
  transition: none;
  opacity: 1;
  transform: translateY(0);
  max-height: none;
  overflow: visible;
  pointer-events: auto;
}

/* Confirmed banner (inserted by JS above add-ons) */
.calendly-confirmed-banner {
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}
.confirmed-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 24px;
  color: #C4A882;
  letter-spacing: .02em;
}
.confirmed-session {
  margin-top: .75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}
.confirmed-datetime {
  margin-top: .35rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  color: rgba(232, 224, 208, .6);
}

/* Add-on toggle indicator */
.addon-toggle { position: relative; }
.addon-check {
  position: absolute;
  top: .6rem;
  right: .7rem;
  font-size: .7rem;
  color: var(--accent-light);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.addon-toggle.selected .addon-check {
  opacity: 1;
  transform: scale(1);
}

/* Add to Cart & Continue button */
.addons-continue {
  display: block;
  margin: 2rem auto 0;
}

/* Details form (on dark bg) */
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid .full-width { grid-column: 1 / -1; }
}

/* Summary */
.summary-card {
  padding: 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.summary-card > * + * { margin-top: 1rem; }
.summary-row { display: flex; align-items: flex-start; gap: 1rem; }
.summary-row .label { font-size: .875rem; color: rgba(232, 224, 208, .5); width: 5rem; flex-shrink: 0; }
.summary-row .value { font-size: .875rem; font-weight: 400; color: var(--text-light); }
.summary-divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.summary-divider::after { display: none; }

/* Step navigation */
.step-nav {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.inline-back {
  margin-bottom: 1rem;
}

/* Booking confirmed */
.booking-confirmed {
  max-width: 36rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}
.booking-confirmed .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(74, 82, 64, .2);
  color: var(--green);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--green);
}
.booking-confirmed h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.booking-confirmed p { margin-top: 1rem; color: rgba(232, 224, 208, .6); line-height: 1.7; }
.booking-confirmed p .highlight { font-weight: 400; color: var(--accent-light); }
.booking-confirmed .note { margin-top: .5rem; font-size: .875rem; color: rgba(232, 224, 208, .4); }
.booking-confirmed .btn { margin-top: 2rem; }

/* ── Gallery Tabs ── */
.gallery-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
  margin: 0 auto;
  padding-bottom: .5rem;
}
@media (max-width: 640px) { .gallery-tabs { gap: 1rem; } }
.gallery-tab {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(232, 224, 208, 0.4);
  padding: .5rem 0;
  cursor: pointer;
  transition: color .3s ease;
  position: relative;
}
.gallery-tab:hover { color: rgba(232, 224, 208, 0.7); }
.gallery-tab.active { color: var(--text-light); }
.gallery-tab-underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--accent-light);
  transition: left .4s cubic-bezier(.4, 0, .2, 1), width .4s cubic-bezier(.4, 0, .2, 1);
  border-radius: 1px;
}
@media (max-width: 640px) {
  .gallery-tabs { gap: 1.5rem; }
  .gallery-tab { font-size: 1.1rem; }
}
.gallery-section { padding-top: 2rem; padding-bottom: 2rem; }
@media (min-width: 768px) { .gallery-section { padding-top: 3rem; padding-bottom: 2rem; } }
.gallery-panel, .about-panel { display: none; }
.gallery-panel.active, .about-panel.active { display: block; }

/* About page tabs — underline style */
.about-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
  margin: 0 auto;
  padding-bottom: .5rem;
}
@media (max-width: 640px) { .about-tabs { gap: 1rem; } }
.about-tab {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(232, 224, 208, 0.4);
  padding: .5rem 0;
  cursor: pointer;
  transition: color .3s ease;
  position: relative;
}
.about-tab:hover { color: rgba(232, 224, 208, 0.7); }
.about-tab.active { color: var(--text-light); }
.about-tab-underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--accent-light);
  transition: left .4s cubic-bezier(.4, 0, .2, 1), width .4s cubic-bezier(.4, 0, .2, 1);
  border-radius: 1px;
}
@media (max-width: 640px) {
  .about-tabs { gap: 1.5rem; }
  .about-tab { font-size: 1.1rem; }
}
.gallery-empty {
  background: rgba(139, 115, 85, 0.04);
  border: 1px dashed rgba(139, 115, 85, 0.15);
  border-radius: 12px;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.gallery-item {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--bevel);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--bevel-hover);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) contrast(1.05);
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* Gallery hover overlay */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: rgba(28, 26, 23, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 0 0 11px 11px;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}
.gallery-caption span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
  opacity: 0;
  transition: opacity 0.3s ease 0.25s;
}
.gallery-item:hover .gallery-caption span {
  opacity: 1;
}
.gallery-item { position: relative; }
.gallery-placeholder {
  color: var(--accent);
  font-size: 1.5rem;
  opacity: .4;
}

/* About page section headings on dark bg */
.text-center {
  text-align: center;
  color: var(--text-light);
}

/* ── Site Images (antique treatment) ── */
.antique-img {
  border-radius: 4px;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 1px var(--border), 0 4px 20px rgba(0,0,0,.4);
  filter: sepia(0.15) contrast(1.05);
}

/* ── About Page: Content Grid ── */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .about-content-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.about-portrait {
  border-radius: 12px;
  border: 1px solid var(--accent);
  overflow: hidden;
  box-shadow: var(--bevel);
}
.about-portrait img {
  width: 100%;
  display: block;
  filter: sepia(0.15) contrast(1.05);
}

/* ── Craft Layout (image left, list right) ── */
.craft-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .craft-layout { grid-template-columns: 1fr 1fr; }
}
.craft-image { }
@media (min-width: 768px) { .craft-image { position: sticky; top: 6rem; } }
.craft-list { display: flex; flex-direction: column; gap: 2.5rem; }
.craft-item h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--accent-light);
  margin-bottom: .5rem;
}
.craft-item p {
  font-size: .925rem;
  color: rgba(232, 224, 208, .7);
  line-height: 1.8;
}

/* ── Process Grid (2x2) ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

.process-card {
  padding: 2rem;
}
.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--accent-light);
  margin-bottom: .75rem;
}
.process-card p {
  font-size: .925rem;
  color: rgba(232, 224, 208, .7);
  line-height: 1.7;
}

/* ── Pullquote ── */
.pullquote {
  max-width: 52rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-left: 3px solid var(--accent);
}
.pullquote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .03em;
  line-height: 1.85;
  color: rgba(232, 224, 208, .8);
}
@media (min-width: 768px) { .pullquote p { font-size: 1.25rem; } }
.pullquote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--accent-light);
  font-style: normal;
}

/* ── Recognition ── */
.recognition-text {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.recognition-text p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: rgba(232, 224, 208, .7);
  line-height: 1.7;
}
.recognition-img {
  display: block;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--accent);
  overflow: hidden;
  box-shadow: var(--bevel);
}
.recognition-img img {
  width: 100%;
  display: block;
  filter: sepia(0.15) contrast(1.05);
}

/* ── Section with bg image ── */
.section-bg-accent {
  position: relative;
}
.section-bg-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: sepia(0.2) contrast(1.05);
  opacity: .08;
  pointer-events: none;
}

/* ── Product Cards ── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--bevel);
  color: var(--text-light);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bevel-hover);
}
.product-thumb {
  aspect-ratio: 4 / 3;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb .gallery-placeholder {
  color: var(--accent);
  font-size: 1.5rem;
  opacity: .4;
}
.product-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.product-price {
  margin-top: .5rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 400;
  color: var(--accent-light);
}
.product-desc {
  margin-top: .75rem;
  font-size: .9rem;
  color: rgba(232, 224, 208, .6);
  line-height: 1.7;
  flex: 1;
}
.product-body .btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}
.product-actions .btn { margin-top: 0; }

/* Product actions row */
.product-actions {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.size-select {
  padding: .5rem .75rem;
  border-radius: 4px;
  border: 1px solid var(--accent-light);
  background: transparent;
  color: var(--accent-light);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 300;
  letter-spacing: .02em;
  outline: none;
  transition: border-color .2s;
  appearance: auto;
}
.size-select:focus { border-color: var(--accent-light); }
.size-select option { background: var(--bg); color: var(--text-light); }
.variant-price-display {
  padding: .5rem .75rem;
  border-radius: 4px;
  border: 1px solid var(--accent-light);
  background: rgba(196, 168, 130, 0.08);
  color: var(--accent-light);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .02em;
  min-width: 60px;
  text-align: center;
  white-space: nowrap;
}

.products-footnote {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .95rem;
  color: rgba(232, 224, 208, .6);
  line-height: 1.7;
}

/* ── Prints & Plates Page ── */
.prints-list { display: flex; flex-direction: column; gap: 0; }
.prints-list hr { margin: 2.5rem 0; }

.print-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .print-row { grid-template-columns: 1fr 1fr; }
}

.print-image-wrap {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--accent);
  overflow: hidden;
  box-shadow: var(--bevel);
}
.print-image-wrap img {
  width: 100%;
  display: block;
  filter: sepia(0.15) contrast(1.05);
}

.print-badges {
  position: absolute;
  top: .75rem;
  right: .75rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: flex-end;
}
.print-badge {
  display: inline-block;
  padding: .3rem .7rem;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--text-light);
  background: rgba(139, 115, 85, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 168, 130, 0.3);
  white-space: nowrap;
}

.print-info { padding-top: .5rem; }
.print-info h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.print-info p {
  margin-top: .75rem;
  font-size: .95rem;
  color: rgba(232, 224, 208, .65);
  line-height: 1.7;
}
.print-info .btn {
  margin-top: 1.25rem;
}

/* ── Portrait Detail Page ── */
.portrait-back {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  color: var(--accent-light);
  margin-top: 1.5rem;
  transition: color .2s;
}
.portrait-back:hover { color: var(--text-light); }

.portrait-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .portrait-layout { grid-template-columns: 1fr 1fr; }
}

.portrait-section.img-hover { z-index: 9999 !important; }

.portrait-image-wrap {
  border-radius: 12px;
  border: 1px solid var(--accent);
  overflow: visible;
  box-shadow: var(--bevel);
  position: relative;
  width: fit-content;
}
.portrait-image-wrap img {
  width: auto;
  height: auto;
  max-height: calc(100vh - 180px);
  max-width: 50vw;
  display: block;
  filter: sepia(0.15) contrast(1.05);
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  position: relative;
}
.portrait-image-wrap:hover img,
.portrait-image-wrap.enlarged img {
  transform: scale(1.2) translateX(8%);
  box-shadow: 0 0 0 200vmax rgba(28, 26, 23, 0.75), 0 0 60px 30px rgba(0, 0, 0, 0.5);
  filter: none;
  z-index: 9998;
  position: relative;
}

.portrait-info {
  padding-top: 1rem;
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.portrait-section.img-hover .portrait-info {
  opacity: 0;
}
.portrait-hover-text {
  position: fixed;
  right: 12%;
  top: 22%;
  transform: translateX(10px);
  z-index: 9999;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
  max-width: 320px;
}
.portrait-hover-text.visible {
  opacity: 1;
  transform: translateX(0);
}
.portrait-hover-text .hover-name {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.portrait-hover-text .hover-blurb {
  margin-top: .75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  color: rgba(232, 224, 208, .65);
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}
.portrait-hover-text.visible .hover-blurb {
  opacity: 1;
}
.hover-back {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--accent-light);
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
  pointer-events: none;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.portrait-hover-text.visible .hover-back {
  opacity: 1;
  pointer-events: auto;
}
.portrait-info h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.portrait-blurb {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(232, 224, 208, .65);
  line-height: 1.75;
}

/* ── Cart Icon ── */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: .75rem;
  padding: .5rem;
  border-radius: 4px;
  transition: background .2s;
}
.cart-btn:hover { background: rgba(196, 168, 130, .1); }
.cart-btn:hover svg { stroke: var(--text-light); }
.cart-btn svg { transition: stroke 0.3s ease; }
.cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.cart-pulse { animation: cartPulse 0.4s ease; }

/* ── Cart Overlay ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Cart Drawer ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100vh;
  z-index: 100;
  background: rgba(28, 26, 23, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: -4px 0 32px rgba(0,0,0,0.6), inset 1px 0 0 rgba(255,255,255,0.06);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
}
.cart-drawer-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.cart-close {
  font-size: 1.5rem;
  color: var(--accent-light);
  line-height: 1;
  padding: .25rem;
  transition: color .2s;
}
.cart-close:hover { color: var(--text-light); }

.cart-divider {
  margin: 0 1.5rem;
  border: none;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: visible;
}
.cart-divider::after {
  content: '\25C6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(28, 26, 23, 0.97);
  padding: 0 .75rem;
  color: var(--accent);
  font-size: .65rem;
  line-height: 1;
}

.cart-items {
  flex: 1;
  padding: 1.25rem 1.5rem;
}
.cart-empty {
  font-family: var(--font-body);
  font-style: italic;
  font-size: .95rem;
  color: var(--accent);
  text-align: center;
  padding: 3rem 0;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { display: flex; flex-direction: column; gap: .2rem; }
.cart-item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.cart-item-price {
  font-size: .8rem;
  color: rgba(232, 224, 208, .5);
}
.cart-item-remove {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  color: var(--accent);
  background: none;
  border: none;
  transition: color .2s;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: .15rem;
}
.cart-item-remove:hover { color: var(--accent-light); }

.cart-footer {
  padding: 1rem 1.5rem 1.5rem;
}

/* ── Checkout Page ── */
.checkout-layout { }
.checkout-items { display: flex; flex-direction: column; }
.checkout-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-info { display: flex; flex-direction: column; gap: .2rem; }
.checkout-item-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-light);
}
.checkout-item-price {
  font-size: .8rem;
  color: rgba(232, 224, 208, .5);
}
.checkout-form { margin-top: 1.5rem; }

/* ══════════════════════════════════════
   ── Mobile Responsive Fixes ──
   ══════════════════════════════════════ */

/* ── Before Your Session Carousel ── */
.prep-carousel {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.prep-carousel .carousel-arrow { margin-top: 200px; }
.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
}
.carousel-img-wrap {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
}
@media (max-width: 640px) { .carousel-img-wrap { max-width: 260px; } }
.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) contrast(1.05);
}
.carousel-caption {
  padding: 1.5rem .5rem;
  text-align: center;
}
.carousel-caption p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(42, 37, 32, .6);
  color: var(--accent-light);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.carousel-arrow:hover {
  background: rgba(139, 115, 85, .15);
  border-color: var(--accent);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: none;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--accent-light);
  border-color: var(--accent-light);
}
@media (max-width: 640px) {
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
  .prep-carousel .carousel-arrow { margin-top: 150px; }
  .carousel-caption p { font-size: .9rem; }
}

/* ── Session Prep Fullscreen Viewer ── */
.prep-viewer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(28, 26, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.prep-viewer.open {
  opacity: 1;
  pointer-events: auto;
}
.prep-viewer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
}
.prep-viewer-img-wrap {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
}
.prep-viewer-img-wrap img {
  width: 100%;
  display: block;
  filter: sepia(0.15) contrast(1.05);
  transition: opacity 0.35s ease;
}
.prep-viewer-img-wrap img.fading { opacity: 0; }
.viewer-dots { margin-top: 1rem; }
.prep-viewer-caption {
  padding: 1.5rem 1rem;
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 560px;
  transition: opacity 0.35s ease;
}
.prep-viewer-caption.fading { opacity: 0; }
.prep-viewer-back {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(28, 26, 23, 0.7);
  border: none;
  color: var(--accent-light);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  cursor: pointer;
  transition: color .2s, background .2s;
  padding: .4rem .75rem;
  border-radius: 6px;
  z-index: 9999;
}
.prep-viewer-back:hover { color: #E8E0D0; background: rgba(28, 26, 23, 0.9); }
.prep-viewer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(42, 37, 32, .6);
  color: var(--accent-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  z-index: 2;
}
.prep-viewer-arrow:hover {
  background: rgba(139, 115, 85, .15);
  border-color: var(--accent);
}
.prep-viewer-prev { left: calc(50% - 270px); }
.prep-viewer-next { right: calc(50% - 270px); }
@media (max-width: 640px) {
  .prep-viewer-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
  .prep-viewer-prev { left: .5rem; }
  .prep-viewer-next { right: .5rem; }
  .prep-viewer-caption { font-size: .9rem; }
}

/* ── While You Wait Grid ── */
.wait-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) { .wait-grid { grid-template-columns: 1fr; } }
.wait-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wait-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.wait-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.wait-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.wait-card:hover .wait-card-img img { transform: scale(1.03); }
.wait-card-body {
  padding: 1.25rem;
}
.wait-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: .5rem;
}
.wait-card-body p {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232, 224, 208, .65);
}

/* ── Post-checkout Popup ── */
.checkout-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.checkout-popup.show { display: flex; }
.checkout-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.checkout-popup-card {
  position: relative;
  max-width: 420px;
  width: 90vw;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  text-align: center;
  color: var(--text-light);
}
.checkout-popup-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.checkout-popup-card p {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232, 224, 208, .75);
}
.checkout-popup-card strong {
  color: var(--text-light);
  font-weight: 400;
}

/* ── Touch devices: show gallery captions by default ── */
@media (hover: none) {
  .gallery-caption { transform: translateY(0); }
  .gallery-caption span { opacity: 1; }
}

/* ── Small screens (< 480px) ── */
@media (max-width: 479px) {
  .logo { font-size: 1.25rem; }
  .hero-rotating { font-size: 1.5rem; }
  .hero-content { padding: 3.5rem 1.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero-blurb { font-size: 1rem; }
  .page-header { min-height: 180px; padding: 3rem 0; }
  .page-header h1 { font-size: 1.75rem; }
  .about-hero { min-height: auto; max-height: none; }
  .about-hero h1 { font-size: 1.75rem; }
  .stepper { max-width: 100%; }
  .step-label { font-size: .65rem; }
  .cal { max-width: 100%; padding: 1rem; }
  .time-section { max-width: 100%; }
  .addons-section { max-width: 100%; }
  .addon-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-drawer { width: 85vw; }
  .pullquote { padding: 2rem 1rem; }
  .pullquote p { font-size: 1rem; }
}

/* ── Medium mobile (< 768px) ── */
@media (max-width: 767px) {
  body { text-align: left; }
  .hero { min-height: auto; }
  .hero-rotating { min-height: 1.3em; font-size: 2.25rem; }
  .cart-close { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .cart-item-remove { padding: .5rem 0; }
  .about-hero { min-height: auto; max-height: none; }
  .about-hero .about-portrait img { max-height: 280px; }
  .page-header { min-height: 200px; }
  .section { padding: 3.5rem 0; }
  .craft-layout { gap: 2rem; }
  .craft-item h3 { font-size: 1.15rem; }
  .portrait-image-wrap { width: auto; }
  .portrait-image-wrap img { max-width: 100%; }
  .portrait-image-wrap:hover img,
  .portrait-image-wrap.enlarged img { transform: scale(1.05); }
  .portrait-image-wrap img { max-height: calc(100vh - 120px); }
  .portrait-hover-text {
    position: static;
    max-width: 100%;
    text-align: left;
    padding: 1.5rem;
    transform: none;
  }
  .portrait-hover-text.visible { transform: none; }
  .portrait-hover-text .hover-name { font-size: 1.75rem; }
  .portrait-hover-text .hover-blurb { font-size: .85rem; }
  .print-info h2 { font-size: 1.35rem; }
  .recognition-img { width: 100% !important; height: auto !important; max-width: 250px !important; }
  .recognition-img img { height: auto !important; }
}

/* ── Portrait page: allow scroll on mobile ── */
@media (max-width: 767px) {
  .portrait-section { padding-top: 1rem !important; }
}

/* ── Utilities ── */
.hidden { display: none !important; }
