/* ===========================================================
   Photography Portfolio — Design-Inspired Template
   Editable static site. Swap placeholder tiles for real photos.
   =========================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #1c1a17;
  --ink-soft:   #4a463f;
  --muted:      #8a8378;
  --line:       #e7e2d8;
  --paper:      #faf7f1;
  --paper-2:    #f3eee4;
  --cream:      #fffdf8;
  --gold:       #b08d57;
  --gold-deep:  #936f3c;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --gap: clamp(1rem, 3vw, 2.5rem);
  --radius: 2px;
  --shadow: 0 18px 50px -24px rgba(28, 26, 23, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: .2px; }
p { margin: 0 0 1.1rem; }

/* ---------- Utilities ---------- */
.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .eyebrow { color: var(--gold); }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .lead, .lead.center { margin-inline: auto; }
.title-xl { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.title-lg { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.title-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .95rem 1.9rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: transparent; color: var(--gold-deep); border-color: var(--gold-deep); }
.section--ink .btn--ghost { border-color: var(--paper); color: var(--paper); }
.section--ink .btn--ghost:hover { background: var(--paper); color: var(--ink); }

/* ---------- Placeholder photo tiles ----------
   Replace these .ph blocks with <img> tags pointing at real photos. */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c1, #d9c7b0), var(--c2, #b9a584));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.82);
  isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  background: rgba(28,26,23,.12);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.25), transparent 45%),
    radial-gradient(100% 100% at 90% 90%, rgba(0,0,0,.18), transparent 55%);
  z-index: 1;
}
/* tonal variations so galleries feel alive */
.ph--a { --c1:#d8c4a6; --c2:#a98e63; }
.ph--b { --c1:#c9b6a0; --c2:#8c7a66; }
.ph--c { --c1:#bcae9b; --c2:#736857; }
.ph--d { --c1:#d2c0b4; --c2:#9c8576; }
.ph--e { --c1:#cdbfae; --c2:#867556; }
.ph--f { --c1:#b8a78f; --c2:#6f6049; }

/* Real image inside a tile container: fills it, hides the placeholder overlay */
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 2; }
.ph.has-img::before, .ph.has-img::after { display: none; }
.media { width: 100%; object-fit: cover; display: block; }

/* Areas-served link grid */
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 1.5rem; margin: 1.2rem 0; }
.area-list li { border-bottom: 1px solid var(--line); padding: .5rem 0; }
.area-list a { font-size: .98rem; color: var(--ink-soft); }
.area-list a:hover { color: var(--gold-deep); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.brand span {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 1.35rem;
  align-items: center;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: .4rem; }
/* CTA button must beat the generic .nav-links a rules (white text, real button padding, no underline) */
.nav-links a.nav-cta { color: #fff; letter-spacing: .14em; }
.nav-links a.nav-cta::after { content: none; }
.nav-links a.nav-cta:hover { color: var(--gold-deep); }
@media (min-width: 1121px) { .nav-links a.nav-cta { padding: .72rem 1.45rem; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1120px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: .5rem 0;
    transform: translateY(-130%);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 1rem 6vw; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 1rem 6vw; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vh, 3.5rem) 0;
  color: var(--cream);
  background: linear-gradient(135deg, #2a2520, #4a3f33 55%, #6e5b44);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 90% at 78% 25%, rgba(176,141,87,.28), transparent 60%),
    linear-gradient(to right, rgba(20,18,15,.78), rgba(20,18,15,.32) 60%, transparent),
    linear-gradient(to top, rgba(20,18,15,.7), transparent 55%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.07;
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: 1rem;
}
.hero p { font-size: 1.1rem; max-width: 52ch; margin-bottom: 0; color: rgba(255,255,255,.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
/* Hero two-column layout with enquiry form on the right */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; width: min(var(--wrap), 92vw); margin-inline: auto; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-form { max-width: 460px; } }
.hero-form { color: var(--ink); max-width: 440px; margin-left: auto; }
.hero-form .eyebrow { color: var(--gold-deep); margin-bottom: .5rem; }
.hero-form h2 { margin-bottom: .35rem; }
.hero-form p { color: var(--ink-soft); font-size: .95rem; max-width: none; margin: 0 0 .9rem; }
.hero-form .form-row { margin-bottom: .7rem; }
.hero-form .form-row input, .hero-form .form-row textarea { padding: .68rem .85rem; }
.hero-form textarea { min-height: 58px; }
.hero-form .form-disclaimer { margin-top: .7rem; }
.hero .btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.hero .btn--ghost:hover { background: #fff; color: var(--ink); }

.page-hero {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { margin-bottom: .8rem; }
.breadcrumb { font-size: .78rem; color: var(--muted); letter-spacing: .1em; }
.breadcrumb a:hover { color: var(--gold-deep); }

/* ============================================================
   GRIDS & CARDS
   ============================================================ */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2.2rem 1.9rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
/* Whole card clickable when it contains an "Explore" link */
.service-card:has(.more[href]) { cursor: pointer; }
.service-card .more[href]::before { content: ""; position: absolute; inset: 0; z-index: 1; }
.service-card .num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: .1em;
}
.service-card h3 { font-size: 1.5rem; margin: .6rem 0 .7rem; }
.service-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1.1rem; }
.service-card .more {
  font-size: .76rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold-deep);
}
.service-card .more::after { content: " →"; }

/* Gallery tiles */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid .ph { aspect-ratio: 3 / 4; cursor: pointer; transition: transform .5s var(--ease); }
.gallery-grid .ph:hover { transform: scale(1.015); }
.gallery-grid .tall { grid-row: span 2; aspect-ratio: 3 / 5; }

.feature-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.feature-tile .ph { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.feature-tile:hover .ph { transform: scale(1.05); }
.feature-tile .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(to top, rgba(20,18,15,.78), transparent);
  color: #fff;
}
.feature-tile .label h3 { font-size: 1.5rem; font-weight: 500; }
.feature-tile .label span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold); line-height: 1; }
.stat .l { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .6rem; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .ic { color: var(--gold-deep); font-size: 1.4rem; transition: transform .3s var(--ease); flex: none; }
.faq-q[aria-expanded="true"] .ic { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a p { padding: 0 0 1.4rem; color: var(--ink-soft); margin: 0; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2.2rem 2rem;
}
.quote-card .mark { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: .6; }
.quote-card p { font-family: var(--serif); font-size: 1.22rem; font-style: italic; color: var(--ink); margin: .6rem 0 1.4rem; }
.quote-card .who { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 500; max-width: 18ch; margin: 0 auto 1.2rem; }
.cta-band p { max-width: 50ch; margin: 0 auto 2rem; color: rgba(255,255,255,.8); }

/* ---------- Blog ---------- */
.post-card {
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card .ph { aspect-ratio: 16 / 10; }
.post-card .body { padding: 1.5rem 1.5rem 1.8rem; }
.post-card .meta { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.post-card h3 { font-size: 1.35rem; margin: .6rem 0 .6rem; }
.post-card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---------- Services list ---------- */
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.svc-row .name { font-family: var(--serif); font-size: 1.4rem; }
.svc-row .desc { color: var(--ink-soft); font-size: .98rem; }
.svc-row .price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-deep); white-space: nowrap; }
@media (max-width: 640px) {
  .svc-row { grid-template-columns: 1fr; gap: .4rem; }
  .svc-row .price { font-size: 1.2rem; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.info-block { margin-bottom: 1.8rem; }
.info-block .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .35rem; }
.info-block .v { font-size: 1.05rem; color: var(--ink); }
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); }
.form-row textarea { min-height: 140px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }
/* Homepage enquiry form card */
.lead-form { background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow); padding: clamp(1.5rem, 3vw, 2.4rem); }
.lead-form .form-row:last-of-type { margin-bottom: 1.2rem; }
.lead-form textarea { min-height: 110px; }
.form-disclaimer { font-size: .82rem; color: var(--muted); text-align: center; margin: 1rem 0 0; }
.tick-list { margin: 1.5rem 0 0; display: grid; gap: .65rem; }
.tick-list li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); font-size: .98rem; }
.tick-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold-deep); font-weight: 700; }
.map-embed { width: 100%; aspect-ratio: 16 / 9; border: 1px solid var(--line); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand strong { color: #fff; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: .05em; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--gold); }
.site-footer li { margin-bottom: .55rem; font-size: .92rem; }
.socials { display: flex; gap: .8rem; margin-top: 1rem; }
.socials a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; letter-spacing: .05em; border-radius: 50%;
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.8rem; padding-top: 1.6rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,13,11,.92);
  display: none; align-items: center; justify-content: center;
  padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox .frame {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  box-shadow: var(--shadow);
}
.lightbox .frame img { max-width: min(90vw, 1100px); max-height: 88vh; width: auto; height: auto; display: block; }
.lightbox .close {
  position: absolute; top: 4vh; right: 5vw;
  background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1;
}

/* ---------- Reveal on scroll ---------- */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Areas directory (region cards + service pills) ---------- */
.region { margin: 3.2rem 0 0; }
.region:first-of-type { margin-top: 0; }
.region h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.region-rule { display: block; width: 88px; height: 3px; background: var(--gold); margin: .7rem 0 2rem; }
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 920px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card { border: 1px solid var(--line); background: var(--cream); padding: 1.2rem 1.2rem 1.3rem; border-radius: 3px; transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
.loc-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.loc-card h3 { font-size: 1.18rem; margin-bottom: .75rem; }
.loc-card h3 a { color: var(--ink); }
.loc-card h3 a:hover { color: var(--gold-deep); }
.pillset { display: flex; flex-wrap: wrap; gap: .4rem; }
.pill { font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .03em; padding: .34rem .62rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: var(--paper); transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.pill:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.pill--ghost { color: var(--gold-deep); border-color: var(--gold); }
