


:root {
  --navy:       #1a2640;
  --navy-dark:  #111a2c;
  --gold:       #c09a4a;
  --gold-light: #d4b06a;
  --white:      #ffffff;
  --off-white:  #f7f6f3;
  --stone:      #ede9e1;
  --mid-grey:   #8a8f9a;
  --text:       #2a2e38;
  --text-light: #5a5f6e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --space-xs:  clamp(0.5rem,  1vw,  0.75rem);
  --space-sm:  clamp(0.75rem, 1.5vw, 1rem);
  --space-md:  clamp(1rem,    2vw,   1.5rem);
  --space-lg:  clamp(1.5rem,  3vw,   2.5rem);
  --space-xl:  clamp(2.5rem,  5vw,   5rem);
  --space-2xl: clamp(4rem,    8vw,   9rem);

  --max-width: 1200px;
  --header-h:  72px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }


.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}


h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-grey); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  padding: 0.65em 1.5em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn-lg { padding: 0.8em 2em; font-size: 1rem; }
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(192,154,74,0.35);
  outline: none;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--white);
  color: var(--navy);
  outline: none;
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  outline: none;
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 2px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-sub {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.logo-light .logo-text { color: var(--white); }
.logo-light .logo-sub  { color: rgba(255,255,255,0.55); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(26,38,64,0.09);
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(26,38,64,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.header-inner nav ul[data-pn-nav="primary"] {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header-inner nav ul[data-pn-nav="primary"] li a {
  display: block;
  padding: 0.45em 0.85em;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.header-inner nav ul[data-pn-nav="primary"] li a:hover,
.header-inner nav ul[data-pn-nav="primary"] li a:focus-visible {
  color: var(--navy);
  background: var(--stone);
  outline: none;
}
.header-inner nav ul[data-pn-nav="primary"] li a[aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
}
.header-inner nav ul[data-pn-nav="primary"] li[data-pn-cta] a {
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 0.5rem;
}
.header-inner nav ul[data-pn-nav="primary"] li[data-pn-cta] a:hover,
.header-inner nav ul[data-pn-nav="primary"] li[data-pn-cta] a:focus-visible {
  background: var(--gold-light);
  color: var(--navy-dark);
  outline: none;
}


.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-intro {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 1.0625rem;
  line-height: 1.7;
}


.hero {
  position: relative;
  min-height: clamp(520px, 88vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(17,26,44,0.82) 0%,
    rgba(17,26,44,0.55) 60%,
    rgba(17,26,44,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  max-width: 700px;
}
.hero-content .section-eyebrow { color: var(--gold-light); }
.hero-content h1 { color: var(--white); margin-bottom: var(--space-md); }
.hero-lead {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 560px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-stats {
  position: relative;
  z-index: 2;
  background: var(--gold);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding-block: 1.1rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,38,64,0.65);
  margin-top: 0.1rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,38,64,0.2);
}


.services {
  background: var(--off-white);
  padding-block: var(--space-2xl);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(26,38,64,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(26,38,64,0.1);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--text-light); font-size: 0.9375rem; line-height: 1.65; margin-bottom: var(--space-sm); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.15s, gap 0.15s;
}
.service-link::after { content: '→'; transition: transform 0.15s; }
.service-link:hover, .service-link:focus-visible { color: var(--navy); outline: none; }
.service-link:hover::after { transform: translateX(4px); }


.area {
  padding-block: 0;
  overflow: hidden;
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .area-inner { grid-template-columns: 1fr 1fr; }
  .area-image { order: 1; }
  .area-content { order: 2; }
}
.area-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 768px) { .area-image { aspect-ratio: auto; min-height: 520px; } }
.area-image img { width: 100%; height: 100%; object-fit: cover; }
.area-content {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-xl) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}
.area-content .section-eyebrow { color: var(--gold-light); }
.area-content h2 { color: var(--white); }
.area-content p { color: rgba(255,255,255,0.8); font-size: 0.9375rem; line-height: 1.7; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.25rem;
}
.area-list li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-light);
  padding: 0.25em 0.75em;
  border: 1px solid rgba(192,154,74,0.4);
  border-radius: 100px;
}


.why {
  padding-block: var(--space-2xl);
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
.why-card {
  padding: var(--space-lg);
  border-top: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-card h3 { margin-bottom: 0.6rem; font-size: 1.075rem; }
.why-card p { color: var(--text-light); font-size: 0.9375rem; line-height: 1.65; }


.photo-break { overflow: hidden; }
.photo-break-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 640px) {
  .photo-break-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .pb-main { grid-row: 1 / 3; }
}
@media (min-width: 1024px) {
  .photo-break-grid { grid-template-rows: 300px 300px; }
}
.pb-main, .pb-secondary, .pb-tertiary { overflow: hidden; aspect-ratio: 4/3; }
@media (min-width: 640px) { .pb-main, .pb-secondary, .pb-tertiary { aspect-ratio: auto; } }
.pb-main img, .pb-secondary img, .pb-tertiary img { transition: transform 0.4s ease; }
.pb-main:hover img, .pb-secondary:hover img, .pb-tertiary:hover img { transform: scale(1.04); }


.cta-band {
  background: var(--navy-dark);
  padding-block: var(--space-xl);
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band-text h2 {
  color: var(--white);
  max-width: 520px;
  margin-bottom: 0.5rem;
}
.cta-band-text p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  font-size: 0.9375rem;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}


.visit {
  padding-block: var(--space-2xl);
  background: var(--off-white);
}
.visit-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .visit-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}
.visit-info .section-eyebrow { margin-bottom: 0.4rem; }
.visit-info h2 { margin-bottom: var(--space-lg); }
.visit-detail { margin-bottom: var(--space-md); }
.visit-detail h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.3rem;
}
.visit-detail address, .visit-detail a, .visit-detail p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.visit-detail a:hover { color: var(--gold); }
.hours-table { border-collapse: collapse; width: 100%; max-width: 320px; }
.hours-table td { padding: 0.3rem 0; font-size: 0.9375rem; color: var(--text); }
.hours-table td:first-child { width: 120px; font-weight: 500; }
.hours-table tr:nth-child(6) td, .hours-table tr:nth-child(7) td { color: var(--mid-grey); }
.visit-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 40px rgba(26,38,64,0.1);
}
@media (min-width: 768px) { .visit-map { aspect-ratio: auto; min-height: 420px; } }


.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-xl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 320px;
}
.footer-brand address {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.footer-nav h4, .footer-contact h4 {
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav li a, .footer-contact li a, .footer-contact li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer-nav li a:hover, .footer-contact li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}


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



.about-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(17,26,44,0.85) 0%,
    rgba(17,26,44,0.6) 60%,
    rgba(17,26,44,0.25) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xl);
  max-width: 680px;
}
.about-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.about-story {
  padding-block: var(--space-2xl);
  background: var(--white);
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .about-story-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.about-story-text .section-eyebrow { margin-bottom: 0.6rem; }
.about-story-text h2 { margin-bottom: var(--space-md); }
.about-story-text p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.about-story-text .btn { margin-top: var(--space-sm); }
.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 48px rgba(26,38,64,0.12);
}
@media (min-width: 768px) {
  .about-story-image { aspect-ratio: auto; min-height: 460px; }
}

.about-services {
  background: var(--off-white);
  padding-block: var(--space-2xl);
}
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(26,38,64,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
@media (min-width: 640px) {
  .about-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .about-services-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.about-service-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-bottom: 1px solid rgba(26,38,64,0.07);
  border-right: 1px solid rgba(26,38,64,0.07);
  transition: background 0.18s;
}
.about-service-item:hover { background: var(--off-white); }
.about-service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.about-service-body h3 { margin-bottom: 0.45rem; font-size: 1.05rem; }
.about-service-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; margin: 0; }

.about-market {
  overflow: hidden;
  padding-block: 0;
}
.about-market-inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .about-market-inner { grid-template-columns: 1fr 1fr; }
  .about-market-image { order: 2; }
  .about-market-content { order: 1; }
}
.about-market-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-market-image { aspect-ratio: auto; min-height: 520px; }
}
.about-market-image img { width: 100%; height: 100%; object-fit: cover; }
.about-market-content {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-xl) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}
.about-market-content .section-eyebrow { color: var(--gold-light); }
.about-market-content h2 { color: var(--white); }
.about-market-content p { color: rgba(255,255,255,0.8); font-size: 0.9375rem; line-height: 1.7; }

.about-why {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.about-photo-trio {
  overflow: hidden;
}




.contact-hero {
  position: relative;
  min-height: clamp(300px, 45vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.contact-hero-media {
  position: absolute;
  inset: 0;
}
.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17,26,44,0.80) 0%,
    rgba(17,26,44,0.50) 70%,
    rgba(17,26,44,0.25) 100%
  );
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xl);
  max-width: 660px;
}
.contact-hero-content .section-eyebrow { color: var(--gold-light); }
.contact-hero-content h1 { color: var(--white); margin-bottom: var(--space-sm); }
.contact-hero-content .hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 0;
}


.contact-main {
  background: var(--off-white);
  padding-block: var(--space-2xl);
}
.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 900px) {
  .contact-main-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}
.contact-details-col h2 { margin-bottom: var(--space-sm); }
.contact-details-col .section-intro { margin-bottom: var(--space-lg); }


.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-block {
  display: flex;
  gap: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(26,38,64,0.07);
  transition: box-shadow 0.2s;
}
.contact-block:hover {
  box-shadow: 0 6px 24px rgba(26,38,64,0.09);
}
.contact-block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-top: 2px;
}
.contact-block-icon svg { width: 100%; height: 100%; }
.contact-block-body h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.3rem;
}
.contact-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}
a.contact-value:hover { color: var(--gold); }
.contact-block-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}


.hours-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}
.hours-card .section-eyebrow { color: var(--gold-light); }
.hours-card h2 { color: var(--white); margin-bottom: var(--space-md); }
.hours-table-lg td {
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-table-lg td:first-child {
  width: 130px;
  font-weight: 500;
  color: var(--white);
}
.hours-table-lg tr:last-child td { border-bottom: none; }
.hours-table-lg tr:nth-child(6) td,
.hours-table-lg tr:nth-child(7) td { color: rgba(255,255,255,0.4); }
.hours-note {
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}


.enquiry-types {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(26,38,64,0.07);
}
.enquiry-types .section-eyebrow { margin-bottom: 0.75rem; }
.enquiry-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.enquiry-list li {
  border-bottom: 1px solid var(--stone);
}
.enquiry-list li:last-child { border-bottom: none; }
.enquiry-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s, padding-left 0.15s;
}
.enquiry-list li a::after {
  content: '→';
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.15s;
}
.enquiry-list li a:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}
.enquiry-list li a:hover::after { transform: translateX(4px); }


.contact-photo-strip { overflow: hidden; }
.contact-photo-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 640px) {
  .contact-photo-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    height: 260px;
  }
}
@media (min-width: 1024px) {
  .contact-photo-strip-inner { height: 320px; }
}
.cp-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 640px) { .cp-img { aspect-ratio: auto; } }
.cp-img img { transition: transform 0.4s ease; }
.cp-img:hover img { transform: scale(1.04); }


.contact-map-section {
  padding-block: var(--space-2xl);
  background: var(--off-white);
}
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.65em 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn-outline-navy:hover, .btn-outline-navy:focus-visible {
  background: var(--navy);
  color: var(--white);
  outline: none;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
