/* ==========================================================================
   Tattoo Magic — 5-Page Website Styles
   Ink & Parchment heritage theme
   ========================================================================== */

:root {
  --ink: #131111;
  --charcoal: #201d1c;
  --charcoal-light: #2b2726;
  --parchment: #ede6da;
  --parchment-dim: #c9beac;
  --blood: #b3202c;
  --blood-light: #cc3a42;
  --gold: #b08d4a;
  --gold-light: #cbab6c;
  --border-hairline: rgba(176, 141, 74, 0.35);
  --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.55);
  --radius: 2px;
  --container: 1200px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1em;
}

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

button {
  font-family: inherit;
}

/* ---- Accessibility helpers ---- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.2s ease;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--tight {
  padding: 3.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--parchment);
}

.section-head p {
  color: var(--parchment-dim);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ---- Ornamental rule ---- */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto;
  max-width: 320px;
}

.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hairline), var(--border-hairline), transparent);
}

.rule::before {
  border-top: 1px solid var(--border-hairline);
}

.rule::after {
  border-top: 1px solid var(--border-hairline);
}

.rule span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .btn:hover {
    transform: translateY(-2px);
  }
  .btn:active {
    transform: scale(0.98);
  }
}

.btn--primary {
  background: var(--blood);
  color: var(--parchment);
}

.btn--primary:hover {
  background: var(--blood-light);
  box-shadow: 0 10px 24px rgba(158, 43, 37, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--parchment);
  border-color: var(--border-hairline);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(19, 16, 19, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-hairline);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--parchment);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.brand strong {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--parchment-dim);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

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

.main-nav a[aria-current="page"] {
  color: var(--gold);
  border-color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-hairline);
  color: var(--parchment);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--charcoal);
    border-left: 1px solid var(--border-hairline);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 600;
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .main-nav .header-cta {
    margin-top: 2rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-scrim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 550;
  }

  html.nav-open .nav-scrim {
    display: block;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.42;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 16, 19, 0.55) 0%, rgba(19, 16, 19, 0.88) 68%, var(--ink) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-content {
  max-width: 720px;
}

.hero-content .eyebrow {
  opacity: 0;
  transform: translateY(16px);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin-bottom: 0.6em;
  opacity: 0;
  transform: translateY(16px);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--parchment-dim);
  max-width: 580px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
  opacity: 0;
  transform: translateY(16px);
}

@media (prefers-reduced-motion: no-preference) {
  html.js .hero-content .eyebrow,
  html.js .hero h1,
  html.js .hero-lede,
  html.js .hero-actions {
    animation: fadeUp 0.6s ease-out forwards;
  }

  html.js .hero-content .eyebrow {
    animation-delay: 0.05s;
  }

  html.js .hero h1 {
    animation-delay: 0.18s;
  }

  html.js .hero-lede {
    animation-delay: 0.32s;
  }

  html.js .hero-actions {
    animation-delay: 0.46s;
  }
}

html:not(.js) .hero-content .eyebrow,
html:not(.js) .hero h1,
html:not(.js) .hero-lede,
html:not(.js) .hero-actions {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Stats band ---- */
.stats-band {
  background: var(--charcoal);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  padding: 2.75rem 0;
}

.stats-line {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  color: var(--gold-light);
  margin: 0 0 1.75rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.stat .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--parchment);
}

.stat .stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--parchment-dim);
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---- Reveal on scroll ---- */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
    transition-delay: var(--reveal-delay, 0ms);
  }
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

html:not(.js) .reveal {
  opacity: 1;
  transform: none;
}

/* ---- Gallery / framed work ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.frame {
  position: relative;
  background: #000;
  padding: 10px;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.frame .frame-inner {
  position: relative;
  overflow: hidden;
}

.frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.frame.frame--wide img {
  aspect-ratio: 16 / 10;
}

.frame-overlay {
  position: absolute;
  inset: 10px;
  background: linear-gradient(180deg, rgba(158, 43, 37, 0) 40%, rgba(158, 43, 37, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.frame-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  color: var(--parchment);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .frame:hover img,
  .frame:focus-within img {
    transform: scale(1.03);
  }
}

.frame:hover .frame-overlay,
.frame:focus-within .frame-overlay,
.frame:hover .frame-caption,
.frame:focus-within .frame-caption {
  opacity: 1;
  transform: none;
}

/* ---- Studio strip ---- */
.studio-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.studio-strip .frame {
  margin: 0;
}

.studio-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.studio-copy .rule {
  margin-left: 0;
}

.studio-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.studio-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--parchment-dim);
}

.studio-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

@media (max-width: 860px) {
  .studio-strip {
    grid-template-columns: 1fr;
  }
}

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--charcoal);
  border: 1px solid var(--border-hairline);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
}

.review-card .quote-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.review-card p {
  color: var(--parchment-dim);
  font-style: italic;
}

.review-card .review-name {
  color: var(--parchment);
  font-weight: 600;
  font-style: normal;
  margin-top: 1rem;
  display: block;
}

.review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  text-align: center;
}

.review-badge .badge-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  display: block;
}

.review-badge .badge-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--parchment-dim);
}

/* ---- Visit / CTA ---- */
.visit-band {
  background: var(--charcoal);
  border-top: 1px solid var(--border-hairline);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.visit-details dt {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

.visit-details dt:first-child {
  margin-top: 0;
}

.visit-details dd {
  margin: 0.35rem 0 0;
  color: var(--parchment);
  font-size: 1.05rem;
}

.addr-note {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.visit-details a {
  text-decoration: none;
  color: var(--parchment);
  border-bottom: 1px solid var(--border-hairline);
}

.visit-details a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.visit-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

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

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border-hairline);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: var(--parchment-dim);
  font-size: 0.92rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.6rem;
}

.footer-grid a {
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-hairline);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--parchment-dim);
  text-align: center;
}

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

/* ---- Mobile call FAB ---- */
.call-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blood);
  color: var(--parchment);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-deep);
  z-index: 400;
  text-decoration: none;
}

.call-fab svg {
  width: 26px;
  height: 26px;
}

@media (prefers-reduced-motion: no-preference) {
  .call-fab:hover {
    transform: translateY(-2px);
  }
  .call-fab:active {
    transform: scale(0.96);
  }
}

@media (max-width: 780px) {
  .call-fab {
    display: flex;
  }
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--border-hairline);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 16, 19, 0.5) 0%, var(--ink) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.page-hero p {
  color: var(--parchment-dim);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--parchment-dim);
  margin-bottom: 1rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

/* ---- Full gallery page ---- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-filters button {
  background: transparent;
  border: 1px solid var(--border-hairline);
  color: var(--parchment-dim);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  min-height: 44px;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  color: var(--gold);
  border-color: var(--gold);
}

.frame-trigger {
  background: transparent;
  border: none;
  padding: 0;
  cursor: zoom-in;
  display: block;
  width: 100%;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 10, 0.92);
  padding: 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  text-align: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border: 10px solid #000;
  box-shadow: var(--shadow-deep);
}

.lightbox-caption {
  color: var(--parchment-dim);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--charcoal);
  border: 1px solid var(--border-hairline);
  color: var(--parchment);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
}

.lightbox-close {
  top: -1.25rem;
  right: -1.25rem;
}

.lightbox-prev {
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .lightbox-close {
    top: -3.25rem;
    right: 0;
  }
  .lightbox-prev {
    left: 0;
    top: auto;
    bottom: -3.25rem;
    transform: none;
  }
  .lightbox-next {
    right: 0;
    top: auto;
    bottom: -3.25rem;
    transform: none;
  }
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ---- Artist cards ---- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.artist-card {
  background: var(--charcoal);
  border: 1px solid var(--border-hairline);
}

.artist-card .frame {
  box-shadow: none;
}

.artist-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.artist-card h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.artist-role {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  margin-bottom: 0.9rem;
}

.artist-card p {
  color: var(--parchment-dim);
  font-size: 0.95rem;
}

/* ---- Policy / accordion (about + booking info) ---- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.policy-card {
  background: var(--charcoal);
  border: 1px solid var(--border-hairline);
  padding: 1.75rem;
  border-radius: var(--radius);
}

.policy-card h3 {
  font-size: 1.1rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.policy-card h3 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.policy-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.policy-card li {
  color: var(--parchment-dim);
  font-size: 0.92rem;
  padding-left: 1rem;
  position: relative;
}

.policy-card li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---- Contact form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  border: 1px solid var(--border-hairline);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-note {
  font-size: 0.85rem;
  color: var(--parchment-dim);
  margin-top: 1rem;
}

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

/* ---- Map link card ---- */
.map-card {
  display: block;
  border: 1px solid var(--border-hairline);
  background: var(--charcoal);
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  transition: border-color 0.18s ease;
}

.map-card:hover {
  border-color: var(--gold);
}

.map-card svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin: 0 auto 0.75rem;
}
