/* ============================================
   Hit The Theatre — holding site styles
   Palette + type matched to stagecards.com
   ============================================ */

:root {
  /* Brand palette */
  --red:          #C8102E;
  --red-deep:     #A60D24;
  --red-soft:     #F8E6E9;
  --green:        #1F9D55;
  --green-deep:   #177A41;
  --gold:         #E3B23C;

  /* Neutrals */
  --ink:          #0F172A;
  --ink-soft:     #334155;
  --ink-muted:    #64748B;
  --surface:      #FFFFFF;
  --surface-alt:  #F8FAFC;
  --surface-2:    #F1F4F8;
  --line:         #E2E8F0;
  --line-strong:  #CBD5E1;

  /* Type */
  --font-display: 'Poppins', -apple-system, system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;

  /* Spacing */
  --container:    1200px;
  --container-n:  880px;
  --gutter:       clamp(1.25rem, 3vw, 2.5rem);

  --radius-s:     6px;
  --radius-m:     10px;
  --radius-l:     14px;

  --shadow-sm:    0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md:    0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg:    0 12px 32px rgba(15, 23, 42, 0.08);

  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--red); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--red-deep); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 700; line-height: 1.25; }

p { margin: 0 0 1.2em; }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-s);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-n);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { padding: clamp(3rem, 6.5vw, 5.5rem) 0; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container { position: relative; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand img {
  height: 40px;
  width: auto;
  display: block;
}
.brand:hover img { opacity: 0.85; }

.nav { display: flex; gap: 1.75rem; align-items: center; }
.nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.35rem 0;
  position: relative;
}
.nav a:hover, .nav a.is-active { color: var(--red); }
.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--red);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-s);
  transition: all 0.2s var(--ease);
}
.header-phone:hover { background: var(--red-deep); color: #fff; }
.header-phone svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  margin-left: 0.5rem;
  border-radius: var(--radius-s);
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.menu-toggle:hover { border-color: var(--ink); }
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 880px) {
  .nav { display: none; }
  .header-phone { padding: 0.5rem 0.8rem; font-size: 0.85rem; }
  .menu-toggle { display: inline-flex; }

  /* When menu is expanded, nav becomes an expanded drawer below the header */
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
  }
  .nav.is-open a {
    display: block;
    padding: 0.9rem var(--gutter);
    font-size: 1rem;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open a:last-child { border-bottom: none; }
  .nav.is-open a.is-active::after { display: none; }
  .nav.is-open a.is-active { background: var(--red-soft); color: var(--red); }
}

@media (max-width: 520px) {
  .brand img { height: 34px; }
}

/* Hero */
.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 70%; height: 140%;
  background: radial-gradient(ellipse at center,
    rgba(200, 16, 46, 0.05) 0%,
    rgba(200, 16, 46, 0.02) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { max-width: 16ch; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--red); }
.hero .lede { max-width: 52ch; margin-bottom: 2.25rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }

/* Prominent "Find a show" box — used on home hero and every list page */
.hero-search {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-m);
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: 2rem;
  max-width: 640px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 20;   /* Sit above sibling buttons/chips so the autocomplete
                    dropdown paints on top of anything below. */
}
.hero-search label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
  color: #fff;
}
.hero-search .search-input {
  padding: 0.9rem 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.meta-item .number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.meta-item .label { font-size: 0.85rem; color: var(--ink-muted); font-weight: 500; }

/* Search */
.search-block {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}
.search-wrap { display: flex; flex-direction: column; gap: 0.85rem; max-width: 720px; }
.search-wrap label {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.search-input {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 0.85rem 1.1rem;
  transition: all 0.2s var(--ease);
}
.search-input:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}
.search-input svg { flex-shrink: 0; color: var(--ink-muted); }
.search-input input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
  font-weight: 500;
}
.search-input input::placeholder { color: var(--ink-muted); font-weight: 400; }

/* Autocomplete dropdown */
.search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-lg);
  max-height: 420px;
  overflow-y: auto;
  z-index: 40;
  display: none;
}
.search-suggest.is-open { display: block; }
.search-suggest-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.9rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background 0.15s var(--ease);
}
.search-suggest-item:last-child { border-bottom: 0; }
.search-suggest-item:hover,
.search-suggest-item.is-active { background: var(--surface-alt); color: var(--ink); }
.search-suggest-thumb {
  width: 44px;
  height: 66px;
  background: var(--surface-alt);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.search-suggest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-suggest-text {
  min-width: 0;
  line-height: 1.25;
}
.search-suggest-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggest-venue {
  font-size: 0.82rem;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
}
.search-suggest-kind {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.25rem 0.55rem;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 100px;
  flex-shrink: 0;
}
.search-suggest-empty {
  padding: 1rem 1.1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.search-suggest-empty a { color: var(--red); font-weight: 600; text-decoration: none; }

/* Section head */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-head-text { max-width: 52ch; }
.section-head h2 { margin-bottom: 0.35rem; }
.section-head p { color: var(--ink-muted); margin: 0; font-size: 1rem; }

.filter-count {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: var(--surface-alt);
  border-radius: 100px;
  border: 1px solid var(--line);
}

/* Show grid & cards */
.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 520px) {
  .show-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }
}

.show-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  color: var(--ink);
  position: relative;
}
.show-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
  color: var(--ink);
}

.poster {
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: #fff;
  background: var(--ink);
}
.poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Poster source is 2:3 portrait — matched by the container — so this
     effectively shows the whole image with no crop. */
}
.poster-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  max-width: 90%;
}
.poster-kind {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
}

/* Placeholder poster colour themes */
.poster-theme-1 { background: linear-gradient(135deg, #C8102E 0%, #7A0B1E 100%); }
.poster-theme-2 { background: linear-gradient(135deg, #1E3A8A 0%, #0B1F5E 100%); }
.poster-theme-3 { background: linear-gradient(135deg, #E3B23C 0%, #A57E1F 100%); }
.poster-theme-4 { background: linear-gradient(135deg, #1F9D55 0%, #0F5D2F 100%); }
.poster-theme-5 { background: linear-gradient(135deg, #6B21A8 0%, #3B0F65 100%); }
.poster-theme-6 { background: linear-gradient(135deg, #EA580C 0%, #9A3410 100%); }
.poster-theme-7 { background: linear-gradient(135deg, #0F766E 0%, #064E46 100%); }
.poster-theme-8 { background: linear-gradient(135deg, #BE185D 0%, #7A0F3C 100%); }

.poster.has-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.22) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.show-card-body {
  padding: 0.85rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.show-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.show-card .venue {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.show-card .book {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
}
.show-card .book::after { content: '→'; transition: transform 0.25s var(--ease); display: inline-block; }
.show-card:hover .book::after { transform: translateX(4px); }
.show-card:hover .book { color: var(--red-deep); }

/* Deal price pill rendered on cards when a show is in the offers feed. */
.offer-badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 100px;
}

.show-grid-empty {
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* Category filter chips */
.cat-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.cat-chip {
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.cat-chip:hover { border-color: var(--ink); color: var(--ink); }
.cat-chip.is-active { background: var(--red); border-color: var(--red); color: #fff; }

/* 404 page */
.notfound {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--surface);
  text-align: center;
}
.notfound .container { max-width: 760px; }
.notfound-seats {
  max-width: 520px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}
.notfound-seats svg { width: 100%; height: auto; display: block; }
.notfound .eyebrow { margin-bottom: 0.4rem; }
.notfound h1 { max-width: 22ch; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.notfound .lede { max-width: 56ch; margin: 0 auto 2.25rem; }
.notfound .hero-ctas { justify-content: center; margin-bottom: 0; }

/* Deals block */
.deals-block {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.deals-block .eyebrow { margin-bottom: 0.6rem; }
.deals-block h2 { margin-bottom: 0.5rem; }

/* Why book block */
.why-block {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.why-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.75rem;
  transition: all 0.25s var(--ease);
}
.why-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.why-item .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-s);
  background: var(--red-soft);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.why-item .icon svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--ink); }
.why-item p { color: var(--ink-soft); margin: 0; line-height: 1.55; font-size: 0.95rem; }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center,
    rgba(200, 16, 46, 0.25) 0%,
    transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-bottom: 1rem; font-weight: 800; }
.cta-band h2 .accent { color: var(--red); }
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.cta-phone { display: inline-flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.cta-phone .number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.cta-phone .number svg { color: var(--red); width: clamp(24px, 3vw, 32px); height: clamp(24px, 3vw, 32px); }
.cta-phone .number:hover { color: var(--red); }
.cta-phone .number:hover svg { color: #fff; }
.cta-phone .hours { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; font-weight: 500; }

/* Page hero / content */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); max-width: 22ch; margin-bottom: 0.85rem; }
.page-hero .lede { max-width: 58ch; }

.prose { max-width: 66ch; font-size: 1.02rem; line-height: 1.65; color: var(--ink-soft); }
.prose h2 { margin-top: 2.5rem; margin-bottom: 0.9rem; color: var(--ink); font-size: 1.55rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.1em; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose a { color: var(--red); font-weight: 600; border-bottom: 1px solid rgba(200, 16, 46, 0.3); }
.prose a:hover { border-bottom-color: var(--red); }
.prose .pull {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  border-left: 4px solid var(--red);
  padding: 0.15rem 0 0.15rem 1.25rem;
  margin: 2.25rem 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.75rem;
  transition: all 0.25s var(--ease);
}
.contact-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.contact-card .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.contact-card .value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: block;
}
.contact-card a.value:hover { color: var(--red); }
.contact-card .note { font-size: 0.9rem; color: var(--ink-muted); margin-top: 0.75rem; line-height: 1.5; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.75rem;
  background: var(--surface-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand-wrap { grid-column: 1 / -1; margin-bottom: 0.5rem; }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
}
.footer-brand img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-tag { font-size: 0.9rem; color: var(--ink-muted); max-width: 32ch; line-height: 1.5; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a, .footer-col li { color: var(--ink-soft); font-size: 0.9rem; font-weight: 500; }
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* Animation */
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise > * { opacity: 0; animation: rise 0.6s var(--ease) forwards; }
.rise > *:nth-child(1) { animation-delay: 0.05s; }
.rise > *:nth-child(2) { animation-delay: 0.15s; }
.rise > *:nth-child(3) { animation-delay: 0.25s; }
.rise > *:nth-child(4) { animation-delay: 0.35s; }
.rise > *:nth-child(5) { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .rise > * { animation: none; opacity: 1; }
  * { transition: none !important; }
}
