/* ========================================
   HSA Plumbing & Heating Merchants
   Aesthetic: Editorial Merchant — refined,
   authoritative, burnt orange on deep navy
   ======================================== */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --navy: #0f1d32;
  --navy-mid: #1a2744;
  --navy-light: #243556;
  --brass: #e97a3d;
  --brass-light: #f09358;
  --brass-pale: #fdf0e8;
  --cream: #faf8f6;
  --white: #ffffff;
  --stone: #e8e4de;
  --charcoal: #2c2c2c;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --text-inv: #e0ddd7;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --header-h: 80px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container: 1280px;
  --radius: 6px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { max-width: 68ch; }

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
  display: block;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: var(--section-pad) 0;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 160px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.site-header.scrolled::before {
  opacity: 1;
}

.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  height: 70px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 2;
}

/* Logo — left aligned, large before scroll, compact on scroll */
.header-logo {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.header-logo img {
  height: 140px;
  width: auto;
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
}

.site-header.scrolled .header-logo img {
  height: 42px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* Hide the split nav wrappers — use main-nav instead */
.nav-left,
.nav-right {
  display: none;
}

/* Main nav — right aligned */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: clamp(24px, 2.5vw, 36px);
  align-items: center;
}

.main-nav a:not(.header-cta) {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
  white-space: nowrap;
}

.main-nav a:not(.header-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width 0.35s var(--ease-out);
}

.main-nav a:not(.header-cta):hover::after,
.main-nav a:not(.header-cta).active::after {
  width: 100%;
}

.main-nav a:not(.header-cta).active {
  color: var(--brass-light);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Header CTA */
.main-nav .header-cta,
.mobile-nav .header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brass);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.2s;
  line-height: 1.3;
}
.main-nav .header-cta:hover,
.mobile-nav .header-cta:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
}
.main-nav .header-cta::after { display: none !important; }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  padding: 100px 40px 40px;
  transition: right 0.4s var(--ease-out);
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  z-index: 999;
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-nav a.active { color: var(--brass-light); }
.mobile-nav a:hover { color: var(--brass-light); }
.mobile-nav .header-cta {
  margin-top: 20px;
  text-align: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav { display: none; }
  .site-header { height: 100px; }
  .header-logo img { height: 70px; }
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(48px, 8vw, 100px);
  overflow: hidden;
}

.hero-compact {
  min-height: 55vh;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(175deg, rgba(15,29,50,0.3) 0%, rgba(15,29,50,0.65) 50%, rgba(15,29,50,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 0.9s var(--ease-out) 0.3s forwards;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-inv);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.9s var(--ease-out) 0.5s forwards;
}

.hero-content .btn {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.9s var(--ease-out) 0.7s forwards;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(233,122,61,0.35);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroReveal 0.9s var(--ease-out) 0.15s forwards;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
  margin-top: 24px;
}

.btn-primary {
  background: var(--brass);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(233,122,61,0.3);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-vt {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--brass);
  color: var(--white);
  background: var(--brass);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  white-space: nowrap;
}
.btn-vt:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  transform: translateY(-1px);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ========================================
   SERVICE CARDS (Homepage)
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,29,50,0.9) 0%, rgba(15,29,50,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 40px);
  transition: background 0.4s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(15,29,50,0.95) 0%, rgba(15,29,50,0.3) 40%, transparent 100%);
}

.service-card-overlay h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.service-card-overlay p {
  color: var(--text-inv);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
  max-width: 30ch;
}

.service-card:hover .service-card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brass-light);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 14px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease) 0.05s;
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
}

.service-card-link span {
  transition: transform 0.3s;
}
.service-card:hover .service-card-link span {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .service-card { aspect-ratio: 4/3; }
  .service-card-overlay p,
  .service-card-link { opacity: 1; transform: translateY(0); }
}

/* ========================================
   WHY CHOOSE HSA
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brass-pale);
  border-radius: 50%;
  color: var(--brass);
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h4 {
  margin-bottom: 10px;
  color: var(--navy);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; max-width: 360px; margin: 48px auto 0; }
}

/* ========================================
   SHOWROOM TEASER
   ======================================== */
.showroom-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
}

.showroom-teaser-img {
  position: relative;
  overflow: hidden;
}

.showroom-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.showroom-teaser:hover .showroom-teaser-img img {
  transform: scale(1.03);
}

.showroom-teaser-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px);
  color: var(--white);
}

.showroom-teaser-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.showroom-teaser-content p {
  color: var(--text-inv);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .showroom-teaser { grid-template-columns: 1fr; }
  .showroom-teaser-img { min-height: 300px; }
}

/* ========================================
   BRANCHES STRIP
   ======================================== */
.branches-strip {
  background: var(--navy);
  color: var(--white);
}

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: center;
}

.branch-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
}

.branch-item {
  padding: 20px 40px;
  text-align: center;
}

.branch-item h4 {
  color: var(--brass-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.branch-item p {
  font-size: 0.92rem;
  color: var(--text-inv);
  margin: 0 auto;
}

.branch-item a {
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s;
}

.branch-item a:hover {
  color: var(--brass-light);
}

@media (max-width: 700px) {
  .branches-grid { grid-template-columns: 1fr; }
  .branch-divider { width: 60px; height: 1px; margin: 0 auto; }
  .branch-item { padding: 24px 20px; }
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.about-intro-text .lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--brass);
  transition: transform 0.3s var(--ease);
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

.about-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.about-branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
}

.about-branch-card h3 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brass-pale);
}

.about-branch-card .branch-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-branch-card .branch-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brass);
}

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img { order: -1; }
  .about-values { grid-template-columns: 1fr; }
  .about-branches { grid-template-columns: 1fr; }
}

/* ========================================
   PLUMBING PAGE
   ======================================== */
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.product-cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.product-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--brass);
}

.product-cat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--brass-light);
}

.product-cat-icon svg {
  width: 30px;
  height: 30px;
}

.product-cat-card h4 { margin-bottom: 10px; }
.product-cat-card p { font-size: 0.88rem; color: var(--text-light); margin: 0 auto; }

.plumbing-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.plumbing-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.plumbing-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.plumbing-img-card:hover img {
  transform: scale(1.04);
}

.brands-strip {
  background: var(--white);
  text-align: center;
}

.brands-strip p {
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .product-categories { grid-template-columns: 1fr; max-width: 400px; margin: 48px auto 0; }
  .plumbing-images-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner p {
  color: var(--text-inv);
  margin-top: 8px;
  font-size: 1.05rem;
}

.cta-banner .btn { margin-top: 0; }

@media (max-width: 700px) {
  .cta-banner { flex-direction: column; text-align: center; align-items: center; }
}

/* ========================================
   BATHROOM PAGE — Gallery
   ======================================== */

.showroom-visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  margin-bottom: 20px;
}

.showroom-visit-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.showroom-visit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-visit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  color: var(--white);
}

.showroom-visit-content h2 { color: var(--white); margin-bottom: 16px; }
.showroom-visit-content p { color: var(--text-inv); font-size: 1.05rem; margin-bottom: 12px; }

.showroom-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showroom-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-inv);
}

.showroom-feature svg {
  width: 18px;
  height: 18px;
  color: var(--brass-light);
  flex-shrink: 0;
}

/* Gallery */
.bathroom-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item.gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,29,50,0);
  transition: background 0.3s;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(15,29,50,0.15);
}

/* Product category tags */
.bathroom-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.bathroom-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--navy);
  transition: all 0.3s;
}

.bathroom-cat-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.bathroom-cat-tag svg {
  width: 16px;
  height: 16px;
  color: var(--brass);
}

@media (max-width: 900px) {
  .showroom-visit { grid-template-columns: 1fr; }
  .showroom-visit-img { min-height: 280px; }
  .bathroom-gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-item.gallery-tall { grid-row: span 1; aspect-ratio: 4/3; }
}

@media (max-width: 540px) {
  .bathroom-gallery { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 40px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.18);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.contact-branches-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}

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

.contact-form-wrap {
  background: var(--white);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(233,122,61,0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-branches {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid rgba(0,0,0,0.04);
  transition: border-color 0.3s;
  overflow: hidden;
}

.contact-branch-card > *:not(.branch-media-row):not(.branch-store-img) {
  padding-left: 32px;
  padding-right: 32px;
}

.contact-branch-card > *:last-child {
  padding-bottom: 32px;
}

.branch-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
}

.branch-store-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.branch-store-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.contact-branch-card:hover .branch-store-img img {
  transform: scale(1.03);
}

.branch-media-row .contact-map {
  height: 100%;
  margin-top: 0;
  border-radius: 0;
  padding: 0;
}

@media (max-width: 540px) {
  .branch-media-row { grid-template-columns: 1fr; height: auto; }
  .branch-media-row .branch-store-img { height: 180px; }
  .branch-media-row .contact-map { height: 160px; }
}

.contact-branch-card:hover {
  border-color: var(--brass);
}

.contact-branch-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-top: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brass-pale);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brass);
}

.contact-detail a {
  color: var(--text);
  transition: color 0.3s;
}
.contact-detail a:hover {
  color: var(--brass);
}

.contact-map {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
  background: var(--stone);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) contrast(1.05);
}

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

/* ========================================
   ABOUT INTRO (HOMEPAGE)
   ======================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about-intro-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 14px;
}

.about-intro-content a {
  color: var(--brass);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.about-intro-content a:hover {
  color: var(--brass-light);
}

.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--stone);
}

.about-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-highlight strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--brass);
  line-height: 1;
}

.about-highlight span {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 4px;
}

@media (max-width: 800px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img { order: -1; }
}

/* ========================================
   FINANCE SECTION (HOMEPAGE)
   ======================================== */
.finance-section {
  padding-top: var(--section-pad) !important;
  padding-bottom: 0 !important;
}

.finance-section + .section {
  padding-top: 25px;
}

.finance-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.finance-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px);
}

.finance-content .section-label {
  color: var(--brass-light);
}

.finance-content h2 {
  color: var(--white);
  margin-top: 4px;
}

.finance-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--brass-light);
  margin-top: 12px;
}

.finance-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.finance-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--text-inv);
}

.finance-features svg {
  width: 20px;
  height: 20px;
  color: var(--brass);
  flex-shrink: 0;
}

.finance-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 12px;
}

.finance-provider {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.finance-logo {
  height: 28px;
  width: auto;
}

.finance-img {
  position: relative;
  overflow: hidden;
}

.finance-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.finance-block:hover .finance-img img {
  transform: scale(1.03);
}

.finance-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 100%;
}

@media (max-width: 800px) {
  .finance-block { grid-template-columns: 1fr; text-align: center; }
  .finance-features { align-items: center; }
  .finance-buttons { justify-content: center; }
  .finance-provider { justify-content: center; }
  .finance-img { min-height: 300px; }
}

/* ========================================
   FOOTER DISCLAIMER
   ======================================== */
.footer-disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--navy);
  color: var(--text-inv);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  color: var(--text-inv);
  max-width: 32ch;
}

.footer-brand img {
  height: 95px;
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-inv);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brass);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ========================================
   PAGE-SPECIFIC INTRO SECTIONS
   ======================================== */
.page-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.page-intro p {
  margin: 16px auto 0;
  font-size: 1.08rem;
  color: var(--text-light);
}

/* Split content block */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .split-content { grid-template-columns: 1fr; }
}

/* ========================================
   LOCATION SELECTOR / LANDING PAGES
   ======================================== */
.location-selector {
  text-align: center;
}

.location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.location-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--brass);
}

.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.location-card:hover img {
  transform: scale(1.03);
}

.location-card-content {
  padding: 24px 28px 28px;
  text-align: left;
}

.location-card-content h3 {
  margin-bottom: 4px;
}

.location-card-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.location-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brass);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 14px;
}

.location-card-link span {
  transition: transform 0.3s;
}

.location-card:hover .location-card-link span {
  transform: translateX(4px);
}

/* Location landing page — store hero */
.location-hero-store {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: -40px;
}

.location-hero-store img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.location-hero-store-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(15,29,50,0.85), transparent);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-hero-store-overlay svg {
  width: 20px;
  height: 20px;
  color: var(--brass-light);
  flex-shrink: 0;
}

.location-hero-store-overlay span {
  font-size: 0.95rem;
}

/* Location card — image + map top, details below (like a branch card) */
.location-bar {
  padding: var(--section-pad) 0;
}

.location-bar-card {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.location-bar-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.location-bar-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 320px;
}

.location-bar-img {
  overflow: hidden;
}

.location-bar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-bar-map {
  min-height: 100%;
}

.location-bar-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-bar-details {
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}

.location-bar-details h3 {
  font-size: 1.3rem;
  margin: 0;
  padding-right: clamp(16px, 3vw, 40px);
  border-right: 2px solid var(--brass-pale);
}

.location-bar-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
}

.location-bar-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brass);
}

.location-bar-detail a {
  color: var(--text);
  transition: color 0.3s;
}

.location-bar-detail a:hover {
  color: var(--brass);
}

@media (max-width: 700px) {
  .location-bar-media { grid-template-columns: 1fr; height: auto; }
  .location-bar-img { height: 220px; }
  .location-bar-map { min-height: 200px; }
  .location-cards { grid-template-columns: 1fr; max-width: 440px; margin: 32px auto 0; }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 48px; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

/* ========================================
   GALLERY PREVIEW GRID
   ======================================== */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-preview-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-preview-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   GALLERY VIEW MORE TILE
   ======================================== */
.gallery-view-more {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-view-more img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.5);
  transform: scale(1.1);
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-view-more:hover img {
  filter: blur(4px) brightness(0.4);
  transform: scale(1.15);
}

.gallery-view-more-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
  text-align: center;
  gap: 8px;
}

.gallery-view-more-overlay span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.gallery-view-more-overlay svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s var(--ease);
}

.gallery-view-more:hover .gallery-view-more-overlay svg {
  transform: translateX(4px);
}

/* ========================================
   VIRTUAL TOUR MODAL
   ======================================== */
.vt-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.vt-modal.active {
  opacity: 1;
  visibility: visible;
}

.vt-modal-inner {
  position: relative;
  width: 92vw;
  height: 85vh;
  max-width: 1400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
}

.vt-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vt-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.vt-modal-close:hover {
  background: var(--brass);
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: var(--navy);
  color: var(--text-inv);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  padding: 22px 26px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 420px;
  min-width: 280px;
}

.cookie-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.cookie-banner-text p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-inv);
  margin: 0;
}

.cookie-banner-text a {
  color: var(--brass-light);
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #fff;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  letter-spacing: 0.2px;
}

.btn-cookie-reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-cookie-reject:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

.btn-cookie-accept {
  background: var(--brass);
  color: #fff;
}

.btn-cookie-accept:hover {
  background: var(--brass-light);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px 20px;
  }

  .cookie-banner-inner {
    gap: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column-reverse;
  }

  .btn-cookie {
    width: 100%;
  }
}

/* ========================================
   Legal / Privacy Policy content
   ======================================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.7;
}

.legal-content .legal-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stone);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 40px 0 14px;
  letter-spacing: 0.3px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
  font-size: 1rem;
}

.legal-content ul {
  margin: 0 0 20px 22px;
  padding: 0;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal-content a {
  color: var(--brass);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--brass-light);
}

.legal-content code {
  background: var(--brass-pale);
  color: var(--navy);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.footer-legal-links {
  display: inline-flex;
  gap: 20px;
}

.footer-legal-links a {
  color: inherit;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}

.footer-legal-links a:hover {
  opacity: 1;
  color: var(--brass-light);
}
