/* ============ TOKENS ============ */
:root {
  --cream: #faf6f1;
  --cream-dark: #f1ebe1;
  --ink: #1f1a17;
  --ink-soft: #3d332e;
  --muted: #7a6e66;
  --rose: #c9355b;
  --rose-deep: #8b1e3f;
  --gold: #b89651;
  --gold-soft: #c9a961;
  --blush: #f5d4c8;
  --line: rgba(31, 26, 23, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --max: 1240px;
  --radius: 2px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(184, 150, 81, 0.04), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 53, 91, 0.03), transparent 40%);
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}
em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 300;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 30, 63, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-large {
  padding: 1.2rem 2.75rem;
  font-size: 0.85rem;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}
.brand-mark {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}
.nav {
  display: flex;
  gap: 2.25rem;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--ink); }
.header-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.header-cta:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
}
.header-cta-active {
  background: var(--rose-deep);
  border: 1px solid var(--gold-soft);
}
.header-cta-active:hover {
  background: var(--ink);
}

/* ============ SOCIAL ICONS IN HEADER ============ */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.25s ease;
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  color: var(--cream);
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: translateY(-2px);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.mobile-nav a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-nav.open { display: flex; }
.mobile-cta {
  background: var(--ink);
  color: var(--cream) !important;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 1rem;
  border-bottom: none !important;
}

/* ============ HERO ============ */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-ornament {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 212, 200, 0.35), transparent 70%);
  top: -150px;
  right: -100px;
}
.hero-ornament-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 150, 81, 0.15), transparent 70%);
  bottom: -50px;
  left: -50px;
}
.hero-content { position: relative; z-index: 1; }
.hero-content .eyebrow { margin-bottom: 1.5rem; display: inline-block; }
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease-out;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.15s ease-out both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease-out both;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  animation: fadeUp 0.8s 0.45s ease-out both;
}
.meta-item { display: flex; flex-direction: column; gap: 0.3rem; }
.meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}
.hero-visual {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s ease-out;
}
.hero-visual svg { width: 100%; height: auto; max-width: 450px; margin: 0 auto; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ INFO BAR ============ */
.info-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-soft);
}
.info-item svg { color: var(--gold); flex-shrink: 0; }
.info-item > div { display: flex; flex-direction: column; }
.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.info-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  transition: color 0.2s;
}
a.info-value:hover { color: var(--rose-deep); }

/* ============ SECTION HEADER ============ */
.section-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header .eyebrow { margin-bottom: 1.25rem; display: inline-block; }
.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ============ SERVICES PREVIEW ============ */
.services-preview {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.service-card:hover {
  background: #fff;
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 50px rgba(31, 26, 23, 0.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}
.service-card-featured {
  background: linear-gradient(135deg, #fff, var(--cream-dark));
  border-color: var(--gold-soft);
}
.featured-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}
.services-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  color: var(--gold);
  pointer-events: none;
}
blockquote {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 2rem;
}
blockquote footer {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ CTA BANNER ============ */
.cta-banner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 2rem;
  text-align: center;
}
.cta-content {
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
}
.cta-banner p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-brand .brand-mark {
  color: var(--gold);
  font-size: 1.75rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}
.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 246, 241, 0.8);
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 241, 0.1);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250, 246, 241, 0.5);
}

/* ============ PAGE HEADER (subpages) ============ */
.page-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
}
.page-header .eyebrow { margin-bottom: 1.25rem; display: inline-block; }
.page-header h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.25rem;
}
.page-header p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ============ SERVICES PAGE ============ */
.menu-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}
.menu-category {
  margin-bottom: 4rem;
}
.menu-category-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.menu-category-header h2 {
  font-size: 2rem;
}
.menu-category-header .cat-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.menu-items {
  display: grid;
  gap: 1.5rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.5rem 0;
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin-bottom: 0.35rem;
  min-width: 30px;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--rose-deep);
  white-space: nowrap;
}
.menu-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-left: 2px solid var(--gold);
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

.menu-category-note {
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  padding-left: 0.25rem;
}

/* ============ POLICIES SECTION ============ */
.policies-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem;
  border-top: 1px solid var(--line);
}
.policies-section .section-header {
  margin-bottom: 3rem;
}
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}
.policy {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
}
.policy:hover {
  background: #fff;
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.policy h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
}
.policy p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============ ABOUT PAGE ============ */
.about-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  display: grid;
  gap: 2rem;
}
.about-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.about-intro p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.8;
  float: left;
  margin: 0.25rem 0.75rem 0 0;
  color: var(--rose-deep);
  font-style: italic;
}
.values {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(245, 212, 200, 0.2), transparent);
}
.values-grid {
  max-width: 960px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.value {
  text-align: center;
}
.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.value h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.value p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contact-list {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  list-style: none;
}
.contact-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-list svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact-list h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.contact-list p, .contact-list a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.5;
}
.contact-list a:hover { color: var(--rose-deep); }

.hours-table {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  padding: 2.5rem;
}
.hours-table h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.hours-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1rem;
}
.hours-list li.today {
  color: var(--rose-deep);
  font-weight: 500;
}
.hours-day {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.hours-time {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.map-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.map-wrap {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============ HERO IMAGE ============ */
.hero-image-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  animation: fadeIn 1.2s ease-out;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(31, 26, 23, 0.15);
  position: relative;
  z-index: 2;
}
.hero-image-accent {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--gold-soft);
  z-index: 1;
  pointer-events: none;
}

/* ============ GALLERY ============ */
/*
  The gallery uses "auto-fill" which means it automatically creates as many
  columns as will fit. On large screens: 3 across. Medium: 2 across. Mobile: 1 across.
  Add or remove .gallery-item figures in the HTML and the layout will adjust itself.

  Gallery subsections: to add a new artist section, copy a .gallery-subsection div
  and update the subtitle and grid contents. Sections are separated by a subtle divider.
*/
.gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.gallery .section-header { margin-bottom: 3.5rem; }
.gallery-subsection {
  margin-bottom: 4rem;
}
.gallery-subsection:last-child {
  margin-bottom: 0;
}
.gallery-subsection + .gallery-subsection {
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}
.gallery-subtitle {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  text-align: center;
}
.gallery-subtitle em {
  color: var(--rose-deep);
}
.gallery-subtitle-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-subtitle + .gallery-grid {
  margin-top: 2.5rem;
}
.gallery-empty {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  text-align: center;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.3);
}
.gallery-empty p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
/* Mobile: show 2 columns instead of stacking 1 at a time — much easier to scroll */
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .gallery-item figcaption {
    font-size: 0.8rem;
    padding: 0.75rem;
  }
  /* On mobile, keep captions visible since hover doesn't really work on touch screens */
  .gallery-item figcaption {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(31, 26, 23, 0.75), transparent 80%);
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(31, 26, 23, 0.85), transparent);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ============ ARTIST FEATURE (About page) ============ */
.artist-feature {
  max-width: var(--max);
  margin: 3rem auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(245, 212, 200, 0.15), transparent);
}
.artist-image {
  position: relative;
}
.artist-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--gold-soft);
  z-index: 0;
}
.artist-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(31, 26, 23, 0.12);
}
.artist-content .eyebrow { margin-bottom: 1rem; display: inline-block; }
.artist-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.artist-content p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.artist-quote {
  margin-top: 2rem !important;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.5);
}
.artist-quote span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ============ MENU CATEGORY WITH IMAGE ============ */
.menu-category-with-image {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.menu-category-image {
  position: sticky;
  top: 100px;
}
.menu-category-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-meta { flex-direction: column; gap: 1rem; }
  .meta-divider { width: 40px; height: 1px; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .info-bar { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .service-card { padding: 1.5rem 1.25rem; }
  .service-card h3 { font-size: 1.3rem; }
  .service-card p { font-size: 0.85rem; }
  .service-num { font-size: 0.8rem; margin-bottom: 1rem; }
  .services-preview { padding: 3rem 1.5rem; }
  .gallery .section-header { margin-bottom: 2rem; }
  .gallery-subsection { margin-bottom: 2.5rem; }
  .gallery-subsection + .gallery-subsection { padding-top: 2.5rem; }
  .section-header { margin-bottom: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .values-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; padding: 1rem 1.5rem 3rem; gap: 2.5rem; }
  .nav, .header-cta { display: none; }
  .social-links { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner { padding: 1rem 1.5rem; }
  .cta-banner { padding: 4rem 1.5rem; }
  .testimonial { padding: 4rem 1.5rem; }
  .page-header { padding: 3rem 1.5rem 2rem; }
  .menu-section { padding: 1rem 1.5rem 3rem; }
  .menu-item { flex-wrap: wrap; }
  .hours-table { padding: 1.75rem; }
  .gallery { padding: 3rem 1.5rem 4rem; }
  .hero-image-accent { top: 16px; left: 16px; right: -16px; bottom: -16px; }
  .artist-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
    margin: 2rem auto;
  }
  .artist-image { max-width: 340px; margin: 0 auto; }
  .menu-category-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .menu-category-image {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
  .policies-section { padding: 3rem 1.5rem; }
  .policies-grid { gap: 1rem; }
  .policy { padding: 1.5rem 1.5rem; }
}

@media (max-width: 500px) {
  .btn { padding: 0.85rem 1.5rem; font-size: 0.75rem; }
  .hero-actions .btn { width: 100%; }
}
