/* ─────────────────────────────────────────
   I Love You Tattoo - Main Stylesheet
   ───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─────────────────────────────────────────
   THEME TOKENS
   Every colour and font on the site resolves
   from this block. The admin theme editor
   (admin/theme.html) writes these same names,
   so anything defined here is editable there.
   Derived values use color-mix() so they track
   the accent automatically.
   ───────────────────────────────────────── */
:root {
  /* ── Typography ── */
  --font-display: 'Playfair Display', serif;   /* headings */
  --font-body:    'DM Sans', sans-serif;       /* UI + body */
  --font-accent:  'Crimson Text', serif;       /* bios, pull quotes */

  /* ── Surfaces (brown) ── */
  --bg:       #1a1208;
  --bg2:      #201508;
  --bg3:      #2c1f0a;
  --bg-deep:  #100b02;   /* footer / bottom bar */
  --shade:    #120a02;   /* nav + gradient scrims */
  --scrim:    #160e04;   /* hero image gradient */

  /* ── Accents ── */
  --accent:      #b8892a;   /* gold - primary */
  --accent-lt:   #d4a94a;
  --accent-dim:  #7a5c1a;
  --accent2:     #62b87a;   /* green - secondary / "open" states */
  --accent2-dim: #3f7d52;

  /* ── Text ── */
  --cream:    #f2e8d0;
  --text:     #e8dcc8;
  --muted:    #9a8a6a;
  --faint:    #5a4e3a;


  /* ── Derived - these follow --accent / --shade automatically ── */
  --border:      color-mix(in srgb, var(--accent) 20%, transparent);
  --border2:     color-mix(in srgb, var(--accent) 45%, transparent);
  --accent-wash: color-mix(in srgb, var(--accent) 8%,  transparent);
  --text-rule:   color-mix(in srgb, var(--text)   35%, transparent);

  /* ── Legacy aliases - older pages still reference --gold* ── */
  --gold:     var(--accent);
  --gold-lt:  var(--accent-lt);
  --gold-dim: var(--accent-dim);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 500;
  padding: 14px 36px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--bg);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 400;
  padding: 13px 36px; letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; color: var(--cream);
  border: 1px solid var(--text-rule); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-1px); }

/* ── NAV ── */
#main-nav {
  position: sticky; top: 0; z-index: 1000;
  background: color-mix(in srgb, var(--shade) 97%, transparent);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo img { height: 56px; width: auto; display: block; mix-blend-mode: lighten; }
.nav-links {
  display: flex; gap: 24px; align-items: center;
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.02em;
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-lt); }
/* current page */
.nav-links a.active, .nav-links .nav-dropdown-trigger.active { color: var(--cream); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  cursor: pointer; transition: color 0.2s;
  display: flex; align-items: center; gap: 4px;
}
.nav-dropdown-trigger:hover { color: var(--gold-lt); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 20px; /* bridges the gap so mouse doesn't lose hover */
  min-width: 160px;
  z-index: 999;
}
.nav-dropdown-menu-inner {
  background: color-mix(in srgb, var(--bg-deep) 98%, transparent);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  backdrop-filter: blur(10px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--gold-lt);
  background: var(--accent-wash);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-right { flex-shrink: 0; display: flex; align-items: center; gap: 16px; }
.nav-social { color: var(--muted); display: flex; align-items: center; transition: color 0.2s; }
.nav-social:hover { color: var(--gold-lt); }
.nav-book {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  padding: 9px 22px; letter-spacing: 0.1em;
  background: var(--gold); color: var(--bg);
  border: none; cursor: pointer;
  text-transform: uppercase; display: inline-block;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--gold-lt); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--muted); transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  background: var(--bg2);
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--scrim) 30%, transparent) 0%,
    color-mix(in srgb, var(--scrim) 10%, transparent) 25%,
    color-mix(in srgb, var(--scrim) 55%, transparent) 65%,
    color-mix(in srgb, var(--scrim) 95%, transparent) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 80px;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 78px; line-height: 1.05;
  font-weight: 700; margin-bottom: 28px;
  color: var(--cream);
}
.hero-title em {
  font-style: italic; font-weight: 400;
  color: var(--gold-lt);
}
.hero-quote {
  font-family: var(--font-accent);
  font-size: 20px; font-style: italic;
  color: var(--muted); margin-bottom: 44px;
  max-width: 560px; line-height: 1.6;
  border-left: 2px solid var(--gold-dim);
  padding-left: 22px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-logo-overlay {
  position: absolute;
  right: -20px; bottom: 30px;
  width: 280px; max-height: 320px;
  object-fit: contain; object-position: center bottom;
  mix-blend-mode: lighten;
  opacity: 0.92; z-index: 3;
  pointer-events: none;
}

/* ── TRUST BAR ── */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.trust-item {
  padding: 30px 20px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--bg3); }
.trust-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--gold-lt); line-height: 1; margin-bottom: 6px;
}
.trust-label { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ── SECTIONS ── */
.section-wrap { padding: 72px 80px; }
.section-wrap.bordered { border-bottom: 1px solid var(--border); }

.section-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 44px; gap: 20px;
}
.section-eyebrow {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 400; color: var(--cream);
}
.section-link {
  font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border2); padding-bottom: 2px;
  white-space: nowrap; align-self: flex-end;
  transition: color 0.2s;
}
.section-link:hover { color: var(--gold-lt); }

/* ── TATTOO SHOWCASE GRID ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0;
}
.showcase-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; display: block;
  background: var(--bg3);
}
.showcase-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.showcase-item:hover img { transform: scale(1.05); }
.showcase-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(to top, color-mix(in srgb, var(--shade) 85%, transparent), transparent);
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cream);
}

/* ── ARTISTS GRID ── */
.artists-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.artist-card {
  background: var(--bg2); display: block;
  cursor: pointer; transition: background 0.2s;
  text-decoration: none; color: inherit;
}
.artist-card:hover { background: var(--bg3); }
.artist-photo {
  height: 200px; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--gold-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
  overflow: hidden; position: relative;
}
.artist-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 15%;
  transition: transform 0.4s ease;
}
.artist-card:hover .artist-photo img { transform: scale(1.04); }
.artist-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--scrim) 65%, transparent) 0%, transparent 55%);
  pointer-events: none;
}
.artist-photo span {
  font-family: var(--font-display);
  font-size: 15px; color: var(--muted);
}
.artist-info { padding: 18px 20px 24px; }
.artist-name {
  font-family: var(--font-display);
  font-size: 18px; color: var(--cream); margin-bottom: 5px;
}
.artist-style { font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; margin-bottom: 10px; }
.artist-cta {
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.artist-card:hover .artist-cta { color: var(--gold-lt); border-color: var(--gold); }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 80px; text-align: center;
}
.big-quote {
  font-family: var(--font-display);
  font-size: 28px; font-style: italic; font-weight: 400;
  color: var(--cream); line-height: 1.55;
  max-width: 720px; margin: 0 auto;
}
.big-quote::before {
  content: '\201C'; color: var(--gold); font-size: 52px;
  line-height: 0; vertical-align: -18px; margin-right: 4px;
}
.big-quote::after {
  content: '\201D'; color: var(--gold); font-size: 52px;
  line-height: 0; vertical-align: -18px; margin-left: 4px;
}
.quote-attr {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-top: 26px;
}

/* ── REVIEWS ── */
/* One review at a time, sliding. The track holds every card side by
   side and is shifted with translateX; JS only sets the offset. */
.reviews-slider { position: relative; }
.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 46px 56px;
  text-align: center;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--border2); }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 4px; margin-bottom: 20px; }
.review-text {
  font-family: var(--font-accent);
  font-size: 21px; line-height: 1.65; color: var(--text);
  font-style: italic; margin: 0 auto 22px;
  max-width: 58ch;
}
.review-author { font-size: 13px; font-weight: 500; color: var(--cream); letter-spacing: 0.04em; }
.review-source { font-size: 11px; color: var(--gold-dim); margin-top: 4px; letter-spacing: 0.06em; }

/* controls */
.reviews-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 24px;
}
.rev-arrow {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  width: 38px; height: 38px; font-size: 17px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.rev-arrow:hover { color: var(--gold-lt); border-color: var(--gold); }
.rev-dots { display: flex; gap: 9px; }
/* dots don't scale past a handful - swap to a counter for long lists */
.rev-counter {
  font-size: 12px; letter-spacing: 0.1em; color: var(--muted);
  min-width: 74px; text-align: center; font-variant-numeric: tabular-nums;
}
.rev-counter b { color: var(--gold-lt); font-weight: 500; }

/* reviewer meta */
.review-head {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 16px;
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--bg3); border: 1px solid var(--border);
}
.review-date { font-size: 11.5px; color: var(--faint); letter-spacing: 0.05em; margin-top: 3px; }

/* photos the reviewer attached */
.review-photos {
  display: flex; gap: 7px; justify-content: center;
  flex-wrap: wrap; margin: 18px 0 4px;
}
.review-photos img {
  width: 64px; height: 64px; object-fit: cover; cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.review-photos img:hover { transform: scale(1.06); border-color: var(--gold); }

.reviews-foot {
  text-align: center; margin-top: 18px;
  font-size: 12.5px; color: var(--muted);
}
.reviews-foot a { color: var(--gold-lt); border-bottom: 1px solid var(--border2); }
.reviews-foot a:hover { color: var(--cream); }
.rev-dot {
  width: 8px; height: 8px; padding: 0;
  border-radius: 50%; cursor: pointer;
  background: var(--border2); border: none;
  transition: background 0.25s, transform 0.25s;
}
.rev-dot:hover { background: var(--gold-dim); }
.rev-dot[aria-current="true"] { background: var(--gold); transform: scale(1.3); }

@media (prefers-reduced-motion: reduce) {
  .reviews-track { transition: none; }
}

/* ── INFO + HOURS ── */
.info-split {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.info-col {
  padding: 64px 80px;
  border-right: 1px solid var(--border);
}
.info-col:last-child { border-right: none; }
.info-eyebrow {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.info-address {
  font-size: 15.5px; line-height: 2.1; color: var(--muted);
}
.info-address strong { color: var(--cream); display: block; font-weight: 500; margin-top: 18px; }
.info-address a { color: inherit; transition: color 0.2s; }
.info-address a:hover { color: var(--gold-lt); }
.social-links { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.social-link {
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: 8px 18px; transition: all 0.2s;
}
.social-link:hover { color: var(--gold-lt); border-color: var(--border2); }

.hours-table { width: 100%; font-size: 14.5px; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 12px 0; }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.hours-table tr.open td { color: var(--cream); }
.hours-table tr.open td:last-child { color: var(--accent2); }
.hours-table tr.closed td { color: var(--faint); }
.hours-table tr.today td { color: var(--gold-lt) !important; font-weight: 500; }
.hours-table tr.today td:first-child::after {
  content: ' (today)'; font-size: 11px; color: var(--gold-dim);
}

/* ── VALUES SECTION ── */
.values-section { background: var(--bg3); border-bottom: 1px solid var(--border); }
.values-layout {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 1px; background: var(--border);
}
.values-header-col {
  background: var(--bg3); padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.value-card { background: var(--bg3); padding: 48px 36px; display: flex; align-items: center; }
.value-body { flex: 1; display: flex; flex-direction: column; }
.value-title-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px; }
.value-icon { font-size: 22px; color: var(--gold-lt); flex-shrink: 0; position: relative; top: -2px; }
.value-title { font-family: var(--font-display); font-size: 22px; color: var(--cream); }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.8; text-align: center; }

/* ── QUOTE BAND ── */
.quote-band { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 80px; text-align: center; }
.quote-bird { width: 480px; height: auto; mix-blend-mode: normal; display: block; margin: 0 auto 28px; }
.big-quote { font-family: var(--font-display); font-size: 22px; font-style: italic; font-weight: 400; color: var(--cream); line-height: 1.55; max-width: none; margin: 0 auto; white-space: nowrap; }
.big-quote::before { content: '\201C'; color: var(--gold); font-size: 52px; line-height: 0; vertical-align: -18px; margin-right: 4px; }
.big-quote::after  { content: '\201D'; color: var(--gold); font-size: 52px; line-height: 0; vertical-align: -18px; margin-left: 4px; }
.quote-attr { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 26px; }

/* ── COMBINED BOTTOM SECTION ── */
.bottom-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; background: var(--bg3);
  border-top: 1px solid var(--border);
}
.bottom-cta {
  padding: 72px 80px; border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.bottom-cta-inner {
  display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  gap: 40px; width: 100%;
}
.cta-title { font-family: var(--font-display); font-size: 64px; font-weight: 400; line-height: 1.2; color: var(--cream); flex-shrink: 0; }
.bottom-info { display: flex; gap: 64px; padding: 72px 80px; align-items: center; justify-content: center; }
.bottom-col { flex: 0 0 auto; }
.bottom-bar {
  display: flex; justify-content: center; align-items: center; gap: 40px;
  padding: 16px 80px; background: var(--bg-deep);
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--faint);
}
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-btns { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--bg-deep); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.footer-col { padding: 52px 56px; border-right: 1px solid var(--border); }
.footer-col:last-child { border-right: none; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px; color: var(--gold-lt); margin-bottom: 6px;
}
.footer-est {
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 18px;
}
.footer-tagline { font-size: 13.5px; color: var(--muted); line-height: 1.75; }
.footer-heading {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13.5px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 56px;
  font-size: 12px; color: var(--faint);
}

/* ── PAGE TEMPLATE (inner pages) ── */
.page-hero {
  padding: 80px 80px 64px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.page-hero-eyebrow {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700; color: var(--cream); line-height: 1.1;
}
.page-hero-title em { font-style: italic; font-weight: 400; color: var(--gold-lt); }
.page-hero-sub {
  font-size: 16px; color: var(--muted); margin-top: 16px;
  max-width: 560px; line-height: 1.7;
}

.page-content { padding: 72px 80px; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--border);
}
.gallery-item {
  aspect-ratio: 1; overflow: hidden;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-placeholder {
  font-size: 12px; color: var(--gold-dim);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; font-size: 12.5px; }
  .hero-title { font-size: 64px; }
  .section-wrap { padding: 60px 48px; }
  .info-col { padding: 52px 48px; }
  .cta-banner { padding: 60px 48px; }
  .footer-col { padding: 44px 40px; }
  .footer-bottom { padding: 18px 40px; }

  /* These had no responsive treatment at all and were overflowing.
     A folded phone and an unfolded foldable both land in here. */
  .values-layout { grid-template-columns: 1fr 1fr; }
  .values-header-col { grid-column: 1 / -1; padding: 40px 44px 32px; }
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .bottom-cta, .bottom-info { padding: 56px 48px; }
  .bottom-info { gap: 40px; }
  .bottom-bar { padding: 16px 48px; gap: 24px; }
  .cta-title { font-size: 48px; }
  .quote-band { padding: 20px 48px; }
  .quote-bird { width: min(360px, 72%); }
  /* the quote is 74 characters - nowrap only survives on wide screens */
  .big-quote { white-space: normal; }
  .hero-logo-overlay { width: 210px; right: -10px; }
}

@media (max-width: 900px) {
  #main-nav { padding: 0 28px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: color-mix(in srgb, var(--shade) 99%, transparent); padding: 20px 28px; border-bottom: 1px solid var(--border); gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-right { display: none; }
  .hero-content { padding: 0 28px 60px; }
  .hero-title { font-size: 52px; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { padding: 34px 24px; }
  .review-text { font-size: 18px; }
  .info-split { grid-template-columns: 1fr; }
  .info-col { border-right: none; border-bottom: 1px solid var(--border); padding: 44px 28px; }
  .info-col:last-child { border-bottom: none; }
  .cta-banner { flex-direction: column; text-align: center; padding: 52px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 28px; }
  .footer-col:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 18px 28px; }
  .section-wrap { padding: 52px 28px; }
  .quote-band { padding: 52px 28px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--border); }
  .page-hero { padding: 52px 28px 44px; }
  .page-content { padding: 44px 28px; }
  .page-hero-title { font-size: 40px; }

  /* single column from here down */
  .values-layout { grid-template-columns: 1fr; }
  .values-header-col { padding: 40px 28px 28px; text-align: center; align-items: center; }
  .value-card { padding: 36px 28px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }

  .bottom-section { grid-template-columns: 1fr; }
  .bottom-cta {
    border-right: none; border-bottom: 1px solid var(--border);
    padding: 48px 28px;
  }
  .bottom-cta-inner { flex-direction: column; gap: 26px; text-align: center; }
  .cta-title { font-size: 38px; }
  .cta-btns { justify-content: center; }
  .bottom-info {
    flex-direction: column; align-items: flex-start;
    gap: 32px; padding: 44px 28px;
  }
  .bottom-bar {
    flex-direction: column; gap: 8px;
    text-align: center; padding: 16px 28px;
  }
  .quote-bird { width: min(260px, 70%); }
  /* the logo overlay fights the hero copy on small screens */
  .hero-logo-overlay { display: none; }
}

@media (max-width: 540px) {
  .hero-title { font-size: 40px; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .cta-title { font-size: 32px; }
  .big-quote { font-size: 19px; }
  .section-title { font-size: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* buttons go full width rather than overflowing their row */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-gold, .hero-ctas .btn-outline { text-align: center; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn-gold, .cta-btns .btn-outline { text-align: center; }
  .btn-gold, .btn-outline { padding: 13px 20px; font-size: 11.5px; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .quote-bird { width: min(200px, 66%); }
  .quote-band { padding: 36px 20px; }
  .section-wrap { padding: 44px 20px; }
  .bottom-cta, .bottom-info { padding: 40px 20px; }
  .trust-num { font-size: 30px; }
}