/* =============================================
   LANIGAN'S FUNERAL DIRECTORS – MAIN STYLESHEET
   ============================================= */

:root {
  --burgundy:       #6B1A2A;
  --burgundy-dark:  #4E1120;
  --burgundy-mid:   #8C2235;
  --burgundy-light: #A8293F;
  --burgundy-pale:  #F9F1F3;
  --white:          #FFFFFF;
  --off-white:      #F8F5F5;
  --light-gray:     #F2EDED;
  --mid-gray:       #9E8E8E;
  --dark-gray:      #3A3030;
  --text:           #2C2020;
  --border:         #E8DEDE;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 4px rgba(107,26,42,.08);
  --shadow-md:  0 4px 16px rgba(107,26,42,.12);
  --shadow-lg:  0 8px 32px rgba(107,26,42,.16);
  --transition: .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--burgundy-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }

p { font-size: .975rem; color: var(--dark-gray); }

/* ── UTILITIES ── */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--burgundy-light);
  margin-bottom: .75rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header p {
  margin-top: .75rem;
  max-width: 540px;
  font-size: 1rem;
}

.section-header.center { text-align: center; }
.section-header.center p { margin-inline: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline-dark:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--burgundy-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .5rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--white); }

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.top-bar-item svg { flex-shrink: 0; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-block: .9rem;
}

.header-inner > * {
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0;
  margin-left: 0;
  justify-self: start;
}

.logo img {
  height: 25px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex: 0 1 auto;
  min-width: 0;
  justify-content: center;
  overflow: hidden;
}

.nav-links a {
  padding: .5rem .7rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy);
  background: var(--burgundy-pale);
}

/* Dropdown */
.nav-item { position: relative; }

.nav-item > a {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.nav-item > a svg { transition: transform var(--transition); }
.nav-item:hover > a svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 200;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: .6rem .9rem;
  font-size: .85rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--text);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--burgundy-pale);
  color: var(--burgundy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  margin-left: 0;
  padding-left: 0;
  justify-self: end;
}

.header-phone {
  display: none;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 1200;
  flex-direction: column;
  isolation: isolate;
}

.mobile-nav.open { display: flex; }

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 0;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100dvh;
  background: var(--white);
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1;
}

body.mobile-menu-open .site-header,
body.mobile-menu-open .announcement,
body.mobile-menu-open .top-bar {
  visibility: hidden;
}

.mobile-nav-close {
  display: flex;
  justify-content: flex-end;
}

.mobile-nav-close button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--burgundy);
  padding: .25rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mobile-nav-links a {
  display: block;
  padding: .8rem 1rem;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav-links a:hover { color: var(--burgundy); background: var(--burgundy-pale); }
.mobile-nav-links a.sub { padding-left: 2rem; font-size: .875rem; color: var(--dark-gray); }

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: high-quality;
  image-rendering: crisp-edges;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.42) 55%,
    rgba(0,0,0,.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-block: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-badge span { width: 6px; height: 6px; background: #E8A0AE; border-radius: 50%; flex-shrink: 0; }

.hero h1 {
  color: var(--white);
  font-family: var(--font-serif);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero p {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
}

.trust-item svg { color: #E8A0AE; flex-shrink: 0; }

/* ── SECTION PADDING ── */
.section { padding-block: 5rem; }
.section-sm { padding-block: 3.5rem; }
.section-lg { padding-block: 7rem; }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--burgundy-pale);
  border-top: 3px solid var(--burgundy);
  border-bottom: 3px solid var(--burgundy);
  padding-block: 3rem;
}

.intro-band-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.intro-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--burgundy);
  line-height: 1.1;
}

.intro-stat span {
  font-size: .85rem;
  color: var(--dark-gray);
}

.divider-v { background: var(--border); align-self: stretch; min-height: 60px; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--burgundy-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--burgundy-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--burgundy);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .875rem;
  line-height: 1.65;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--burgundy);
  transition: gap var(--transition);
}

.service-card:hover .card-link { gap: .6rem; }

/* ── PRODUCT CATALOG ── */
.catalog-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.catalog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.catalog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.catalog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.catalog-card-body {
  padding: 1rem 1rem 1.1rem;
}

.catalog-card h3 {
  font-size: 1.02rem;
  margin-bottom: .2rem;
}

.catalog-card p {
  font-size: .84rem;
  color: var(--mid-gray);
}

.service-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-link-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-link-card h3 {
  font-size: 1.08rem;
  margin-bottom: .5rem;
}

.service-link-card p {
  font-size: .88rem;
  margin-bottom: .9rem;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--burgundy-dark); }

.how-it-works .section-label { color: rgba(232,160,174,.85); }
.how-it-works h2 { color: var(--white); }
.how-it-works p { color: rgba(255,255,255,.75); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}

.step h3 { color: var(--white); font-size: 1.15rem; }

/* ── LOCATIONS ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.location-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.location-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.location-card-body {
  padding: 1.75rem;
}

.location-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: .25rem;
}

.location-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--burgundy-pale);
  padding: .25rem .6rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

.location-address {
  font-size: .875rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.location-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}

.location-manager {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.manager-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.manager-info strong { display: block; font-size: .875rem; }
.manager-info span { font-size: .78rem; color: var(--mid-gray); }

.location-actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* ── DEATH NOTICES ── */
.notices-section { background: var(--off-white); }

.notices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.notice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--burgundy);
}

.notice-card h3 {
  font-size: 1.05rem;
  margin-bottom: .25rem;
}

.notice-meta {
  font-size: .8rem;
  color: var(--mid-gray);
  margin-bottom: .75rem;
}

.notice-card p {
  font-size: .85rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.notices-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── GUIDANCE ── */
.guidance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.guidance-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.guidance-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--burgundy-light);
  transform: translateY(-2px);
}

.guidance-icon {
  width: 48px;
  height: 48px;
  background: var(--burgundy-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.guidance-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }

.guidance-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--burgundy);
  transition: gap var(--transition);
}

.guidance-card:hover .card-link { gap: .6rem; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  padding-block: 5rem;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 500px; margin-inline: auto; margin-bottom: 2rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── ASSOCIATIONS ── */
.assoc-band {
  background: var(--burgundy-pale);
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}

.assoc-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.assoc-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--burgundy-dark);
}

.assoc-badge {
  width: 42px;
  height: 42px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--burgundy-dark);
  color: rgba(255,255,255,.75);
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--white); }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }

.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-location {
  margin-bottom: 1.5rem;
}

.footer-location strong {
  display: block;
  font-size: .875rem;
  color: var(--white);
  margin-bottom: .3rem;
}

.footer-location p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}

.footer-location a {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-location a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  padding-block: 4rem;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../lanigans_hero.png') center/contain no-repeat;
  opacity: 0.15;
}

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

.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.8); }

/* ── ABOUT PAGE ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-img img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  background: #f5f5f5;
}

.about-text .section-label { margin-bottom: .75rem; }

.about-text p + p { margin-top: 1rem; }

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.value-icon {
  width: 36px;
  height: 36px;
  background: var(--burgundy-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.value-item strong { display: block; font-size: .875rem; font-weight: 600; color: var(--burgundy-dark); }
.value-item span { font-size: .82rem; color: var(--dark-gray); }

.staff-section { background: var(--off-white); }

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.staff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.staff-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--burgundy-light);
  transform: translateY(-2px);
}

.staff-avatar {
  width: 120px;
  height: 160px;
  border-radius: 8px;
  background: var(--burgundy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin: 0 auto 1rem;
  border: 3px solid var(--burgundy-pale);
  overflow: hidden;
}

.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card h3 { font-size: 1rem; margin-bottom: .2rem; }
.staff-card span { font-size: .8rem; color: var(--mid-gray); }
.staff-office {
  display: inline-block;
  margin-top: .6rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--burgundy-pale);
  padding: .2rem .55rem;
  border-radius: 999px;
}

/* ── SERVICES PAGE ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-block: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.service-detail-text h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.service-detail-text p + p { margin-top: .75rem; }
.service-detail-text .btn { margin-top: 1.5rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.office-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--burgundy);
}

.office-card h3 { margin-bottom: .75rem; font-size: 1.2rem; }

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--dark-gray);
  margin-bottom: .6rem;
}

.office-detail svg { color: var(--burgundy); margin-top: 2px; flex-shrink: 0; }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.contact-form-wrap h3 { margin-bottom: 1.5rem; }

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

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

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,26,42,.12);
}

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

.form-submit { width: 100%; padding: .875rem; font-size: 1rem; margin-top: .5rem; }

/* ── MAP EMBED ── */
.map-section { background: var(--off-white); }

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

.map-card-label {
  padding: 1rem 1.25rem;
  background: var(--white);
  font-size: .875rem;
  font-weight: 600;
  color: var(--burgundy-dark);
}

/* ── LOCATION DETAIL PAGE ── */
.location-detail-hero {
  position: relative;
  height: 600px;
  overflow: visible;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 600px;
}

.location-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78,17,32,.7), transparent 60%);
}

.location-detail-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── SECTION TITLE UTILITY ── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--burgundy-dark);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

/* ── CONTACT PAGE (contact.html) ── */
.contact-form-wrapper {
  min-width: 0;
}

.contact-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-office-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--burgundy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.contact-office-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--burgundy-dark);
}

.contact-office-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--burgundy);
  padding: .2rem .55rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--dark-gray);
  margin-bottom: .6rem;
  line-height: 1.5;
}

.contact-detail svg { flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: var(--burgundy); font-weight: 500; }
.contact-detail a:hover { text-decoration: underline; }

/* ── GUIDANCE PAGE (guidance.html) ── */
.guidance-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.guidance-sidebar {
  position: sticky;
  top: 90px;
}

.guidance-sidebar-card {
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.guidance-sidebar-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .75rem; }
.guidance-sidebar-card p { color: rgba(255,255,255,.8); font-size: .875rem; margin-bottom: 1.25rem; }
.guidance-sidebar-card .btn {
  width: 100%;
  justify-content: center;
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  margin-bottom: .75rem;
}
.guidance-sidebar-card .btn:last-child {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.4);
  margin-bottom: 0;
}

.guidance-article { max-width: 780px; }
.guidance-article h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.guidance-article h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.guidance-article h3 { margin-top: 1.5rem; margin-bottom: .5rem; font-size: 1.15rem; }
.guidance-article p { margin-bottom: .85rem; }
.guidance-article ul { margin: .85rem 0 .85rem 1.5rem; list-style: disc; }
.guidance-article ul li { font-size: .975rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: .3rem; }

.guidance-toc {
  background: var(--burgundy-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--burgundy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 3rem;
}
.guidance-toc h4 { margin-bottom: 1rem; font-size: .8rem; color: var(--burgundy); }
.guidance-toc ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.guidance-toc ul a { font-size: .875rem; color: var(--burgundy-dark); font-weight: 500; transition: color var(--transition); }
.guidance-toc ul a:hover { color: var(--burgundy-light); }

/* ── PRIVACY PAGE ── */
.privacy-article {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-article h2 {
  font-size: 1.4rem;
  margin-top: 2.75rem;
  margin-bottom: .75rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--border);
}

.privacy-article h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.privacy-article p { margin-bottom: .85rem; color: var(--dark-gray); }
.privacy-article ul { margin: .75rem 0 .75rem 1.5rem; list-style: disc; }
.privacy-article ul li { font-size: .975rem; color: var(--dark-gray); line-height: 1.7; margin-bottom: .3rem; }
.privacy-article a { color: var(--burgundy); text-decoration: underline; }

.privacy-meta {
  background: var(--burgundy-pale);
  border-left: 4px solid var(--burgundy);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: .875rem;
  color: var(--dark-gray);
}

/* ── MAP CARD LABEL ── */
.map-card h3 {
  padding: 1rem 1.25rem .25rem;
  font-size: 1rem;
  color: var(--burgundy-dark);
}
.map-card > p {
  padding: 0 1.25rem 1rem;
  font-size: .85rem;
  color: var(--dark-gray);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--burgundy);
  color: rgba(255,255,255,.92);
  text-align: center;
  font-size: .82rem;
  padding: .6rem 1rem;
  font-weight: 500;
}

.announcement a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 50;
}

#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--burgundy-dark); }

/* ══════════════════════════════════════════
   RESPONSIVE — ENTERPRISE GRADE
   Breakpoints: 1200 · 1024 · 768 · 640 · 480 · 380
   ══════════════════════════════════════════ */

/* ── 1200px – hide phone number to give CTA room ── */
@media (max-width: 1320px) {
  .header-phone { display: none; }
}

@media (max-width: 1240px) {
  .nav-links { display: none !important; }
  .header-phone { display: none !important; }
  .header-actions .btn { display: none !important; }
  .hamburger { display: flex !important; }
}

@media (max-width: 1200px) {
  .nav-links a { padding: .45rem .6rem; font-size: .82rem; }
  .header-actions .btn { padding: .65rem 1rem; font-size: .82rem; }
}

/* ── 1024px – tablets / small laptops: hamburger takes over ── */
@media (max-width: 1024px) {
  /* Header: full hamburger mode */
  .nav-links { display: none !important; }
  .header-phone { display: none !important; }
  .hamburger { display: flex !important; }
  .header-actions .btn { display: none !important; }
  .header-inner { gap: 1rem; }
  .logo { margin-right: 0; }
  .header-actions { padding-left: 0; }

  /* Layout grids → single column */
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .location-detail-content { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse { direction: ltr; }
  .guidance-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .guidance-sidebar { position: static; }
  .maps-grid { grid-template-columns: 1fr 1fr; }

  /* Intro band → 2 cols */
  .intro-band-inner { grid-template-columns: 1fr 1fr; }
  .divider-v:last-of-type { display: none; }

  /* Footer → 2 cols */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Location detail hero shorter */
  .location-detail-hero { height: 320px; }
  .about-img img { height: 340px; }
}

/* ── 768px – tablets portrait ── */
@media (max-width: 768px) {
  .top-bar { display: none; }

  .section { padding-block: 3rem; }
  .section-lg { padding-block: 4rem; }
  .section-sm { padding-block: 2rem; }
  .section-header { margin-bottom: 2rem; }

  .hero { min-height: 85vh; }
  .hero-content { padding-block: 4rem 3rem; }
  .hero-trust { gap: .75rem; margin-top: 2.5rem; padding-top: 2rem; }
  .trust-item { font-size: .78rem; }

  .intro-band-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .divider-v { display: none; }
  .intro-band { padding-block: 2rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-links-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .guidance-grid { grid-template-columns: 1fr; }
  .maps-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }

  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img img { height: 280px; }
  .about-values { grid-template-columns: 1fr; }
  .service-detail-img img { height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .guidance-layout { grid-template-columns: 1fr; }
  .guidance-sidebar { position: static; }
  .guidance-article { max-width: 100%; }
  .location-detail-hero { height: 260px; }
  .location-photo-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cta-band { padding-block: 3.5rem; }
  .cta-band p { max-width: 100%; }
  .page-hero { padding-block: 3.5rem 2.5rem; }
  .announcement { font-size: .78rem; padding: .5rem .75rem; }
}

/* ── 640px – large phones landscape ── */
@media (max-width: 640px) {
  .container { padding-inline: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .notices-grid { grid-template-columns: 1fr; }
  .location-card-img { height: 180px; }
  .header-actions .btn { padding: .6rem 1rem; font-size: .82rem; }
  .logo img { height: 20px; }
  .hero-actions .btn { padding: .7rem 1.25rem; font-size: .875rem; }
  .footer-logo img { height: 44px; }
  .guidance-toc { padding: 1.25rem; }
  .section-header { margin-bottom: 1.5rem; }
}

/* ── 480px – phones portrait ── */
@media (max-width: 480px) {
  .header-inner { padding-block: .7rem; }
  .mobile-nav-drawer {
    width: 100vw;
    max-width: 100vw;
    padding: 1.1rem;
  }
  .mobile-nav-links a.sub { padding-left: 1.25rem; }
  .hero { min-height: 100svh; }
  .hero-content { padding-block: 3rem 2.5rem; }
  .hero-trust { flex-direction: column; gap: .6rem; margin-top: 2rem; padding-top: 1.5rem; }
  .hero-badge { font-size: .72rem; padding: .35rem .85rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; justify-content: center; }

  .staff-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .about-img img { height: 220px; }
  .service-detail-img img { height: 200px; }
  .page-hero { padding-block: 2.5rem 2rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .location-detail-hero { height: 200px; }
  .map-card iframe { height: 240px; }
  .guidance-article h2 { font-size: 1.3rem; padding-top: 2rem; margin-top: 2rem; }
  .footer-bottom-links { flex-direction: column; gap: .4rem; }
  .footer-bottom { font-size: .75rem; }
  .section { padding-block: 2.5rem; }
  .section-lg { padding-block: 3rem; }
  .intro-stat strong { font-size: 1.65rem; }
  .announcement { font-size: .75rem; line-height: 1.5; }
}

/* ── 380px – very small phones (iPhone SE etc.) ── */
@media (max-width: 380px) {
  .container { padding-inline: .85rem; }
  .logo img { height: 18px; }
  .mobile-nav-drawer { padding: 1rem .9rem; }
  .header-actions .btn { padding: .55rem .85rem; font-size: .78rem; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero p { font-size: .9rem; }
  .service-card { padding: 1.5rem 1.25rem; }
  .service-card h3 { font-size: 1rem; }
  .btn { padding: .65rem 1.15rem; font-size: .82rem; }
  .cta-band { padding-block: 2.5rem; }
  .cta-band h2 { font-size: 1.5rem; }
  .footer-grid { gap: 1.5rem; }
  .section { padding-block: 2rem; }
}
