



:root {
  --yellow:    #FFD703;
  --black:     #161616;
  --charcoal:  #443F33;
  --offwhite:  #F6F6F6;
  --white:     #FFFFFF;

  --font-main: 'League Spartan', Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(22,22,22,0.08);
  --shadow-btn:  0 2px 8px rgba(22,22,22,0.18);

  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);

  --space-xs: clamp(0.5rem, 1.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1.25rem);
  --space-md: clamp(1.25rem, 3vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 4rem);
  --space-xl: clamp(3rem, 7vw, 6rem);
}


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


.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header--light .section-title,
.section-header--light .section-sub {
  color: var(--white);
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}
.section-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--charcoal);
  max-width: 55ch;
  margin-inline: auto;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 0.65em 1.4em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-btn); }
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--primary:hover { background: #e6c100; border-color: #e6c100; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

.btn--dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.btn--dark:hover { background: var(--charcoal); border-color: var(--charcoal); }

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

.btn--sm { font-size: 0.8rem; padding: 0.5em 1.1em; }
.btn--lg { font-size: clamp(0.9rem, 1.8vw, 1rem); padding: 0.8em 1.8em; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: 0.9rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-bee {
  width: 2rem;
  height: 2rem;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--black);
  flex-shrink: 0;
}
.logo-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.logo-accent {
  color: var(--yellow);
}
.logo--footer .logo-text { color: var(--black); }
.logo--footer .logo-bee { background: var(--yellow); }

.nav-list {
  display: flex;
  gap: clamp(0.75rem, 2.5vw, 2rem);
  align-items: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--offwhite);
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover,
.nav-link--active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.nav-link:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; border-radius: 2px; }
.header-cta { flex-shrink: 0; }


.hero {
  position: relative;
  min-height: clamp(480px, 75vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(22,22,22,0.88) 0%,
    rgba(22,22,22,0.60) 60%,
    rgba(22,22,22,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-sm);
  background: rgba(255,215,3,0.12);
  padding: 0.3em 0.8em;
  border-radius: 999px;
  border: 1px solid rgba(255,215,3,0.3);
}
.hero-heading {
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.hero-heading br { display: block; }
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 48ch;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
}
.zippay-logo-hero {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.hero-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}


.trust-bar {
  background: var(--yellow);
  padding-block: 1rem;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 2.5rem);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
}
.trust-icon { font-size: 1.1rem; }


.services {
  padding-block: var(--space-xl);
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-md);
}
.service-card {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(22,22,22,0.13);
}
.service-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-card-body {
  padding: var(--space-md);
}
.service-card-body h3 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.6;
}


.why-us {
  background: var(--black);
  padding-block: var(--space-xl);
}
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
}
.why-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,3,0.18);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: background 0.2s, border-color 0.2s;
}
.why-tile:hover {
  background: rgba(255,215,3,0.07);
  border-color: rgba(255,215,3,0.5);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}
.why-tile h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.why-tile p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}


.zippay-callout {
  background: var(--yellow);
  padding-block: var(--space-xl);
}
.zippay-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.zippay-text { flex: 1 1 320px; }
.zippay-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}
.zippay-text p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--charcoal);
  max-width: 50ch;
  margin-bottom: var(--space-md);
  line-height: 1.65;
}
.zippay-graphic {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.zippay-badge-large {
  width: clamp(140px, 20vw, 200px);
  height: clamp(140px, 20vw, 200px);
  background: var(--black);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-shadow: 0 8px 32px rgba(22,22,22,0.25);
}
.zippay-z {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.zippay-badge-label {
  font-size: clamp(0.6rem, 1.2vw, 0.78rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}


.reviews {
  padding-block: var(--space-xl);
  background: var(--offwhite);
}
.reviews-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--yellow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
}


.cta-banner {
  background: var(--black);
  padding-block: var(--space-lg);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}
.cta-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.cta-banner-text h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.cta-banner-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 48ch;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


.visit {
  padding-block: var(--space-xl);
  background: var(--white);
}
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 700px) {
  .visit-inner { grid-template-columns: 1fr; }
}
.visit-info h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.visit-detail {
  margin-bottom: var(--space-md);
}
.visit-detail h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.visit-detail p, .visit-detail a {
  font-size: 0.97rem;
  color: var(--black);
  line-height: 1.7;
}
.visit-detail a:hover { color: var(--charcoal); text-decoration: underline; }
.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 320px;
}
.hours-table td {
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--black);
}
.hours-table td:first-child { font-weight: 600; padding-right: 1.5rem; }
.hours-table td:last-child { color: var(--charcoal); }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}
.visit-map img { width: 100%; height: 100%; object-fit: cover; }


.newsletter {
  background: var(--offwhite);
  padding-block: var(--space-lg);
  border-top: 1px solid rgba(22,22,22,0.08);
}
.newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.newsletter-text h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.newsletter-text p {
  font-size: 0.92rem;
  color: var(--charcoal);
  max-width: 44ch;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1 1 320px;
  justify-content: flex-end;
}
.newsletter-input {
  flex: 1 1 220px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 0.7em 1.1em;
  border: 2px solid rgba(22,22,22,0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--yellow); }
.newsletter-input::placeholder { color: #aaa; }


.site-footer {
  background: var(--yellow);
  padding-top: var(--space-lg);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
  padding-bottom: var(--space-lg);
}
.footer-brand .logo--footer .logo-text { color: var(--black); }
.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav-list a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--charcoal); text-decoration: underline; }
.footer-contact p, .footer-contact a {
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  background: var(--black);
  padding-block: 0.9rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.04em;
}


@media (max-width: 640px) {
  .nav-list { gap: 0.75rem; }
  .hero-actions { flex-direction: column; }
  .cta-banner-inner { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
  .newsletter-form { justify-content: flex-start; }
  .zippay-inner { flex-direction: column; align-items: flex-start; }
  .zippay-graphic { align-self: center; }
  .footer-inner { flex-direction: column; gap: var(--space-md); }
}



.about-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-media {
  position: absolute;
  inset: 0;
}
.about-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(22,22,22,0.90) 0%,
    rgba(22,22,22,0.65) 60%,
    rgba(22,22,22,0.30) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
  max-width: 680px;
}

.about-story {
  padding-block: var(--space-xl);
  background: var(--white);
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 720px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-img { order: -1; }
}
.about-story-text p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}
.about-story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-values {
  background: var(--black);
  padding-block: var(--space-xl);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,3,0.18);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: background 0.2s, border-color 0.2s;
}
.value-card:hover {
  background: rgba(255,215,3,0.07);
  border-color: rgba(255,215,3,0.5);
}
.value-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.value-card h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.value-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.about-workshop {
  padding-block: var(--space-xl);
  background: var(--offwhite);
}
.about-workshop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 720px) {
  .about-workshop-inner { grid-template-columns: 1fr; }
}
.about-workshop-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}
.about-workshop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-workshop-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--black);
}
.about-workshop-text p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.workshop-detail-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.workshop-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.workshop-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.workshop-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
  padding-bottom: 0.15rem;
}
.workshop-detail p {
  font-size: 0.93rem;
  color: var(--black);
  line-height: 1.55;
  margin: 0.25rem 0 0;
}
.workshop-detail a {
  color: var(--black);
  text-decoration: none;
}
.workshop-detail a:hover {
  text-decoration: underline;
  color: var(--charcoal);
}

.about-team-img-strip {
  background: var(--white);
  padding-block: var(--space-lg);
}
.about-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 600px) {
  .about-strip-grid { grid-template-columns: 1fr; }
}
.strip-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-card);
}
.strip-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.strip-img-wrap:hover img { transform: scale(1.04); }



.contact-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-hero-media {
  position: absolute;
  inset: 0;
}
.contact-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(22,22,22,0.90) 0%,
    rgba(22,22,22,0.65) 60%,
    rgba(22,22,22,0.30) 100%
  );
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-xl);
  max-width: 680px;
}

.contact-main-section {
  padding-block: var(--space-xl);
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-col-heading {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 3px solid var(--yellow);
}

.contact-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--offwhite);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,22,22,0.11);
}
.contact-block-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}
.contact-block-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.contact-block-value {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}
.contact-link {
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--charcoal); text-decoration: underline; }
.contact-block-note {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.55;
}
.contact-hours {
  margin-top: 0.25rem;
}

.contact-zippay-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--black);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-xs);
}
.zippay-z-sm {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  flex-shrink: 0;
  line-height: 1;
}
.contact-zippay-note p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.contact-zippay-note strong { color: var(--yellow); }

.contact-enquiry-col {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}
.contact-enquiry-intro {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.65;
}
.contact-inline-link {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-inline-link:hover { color: var(--charcoal); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}
.form-input {
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 0.72em 1em;
  border: 2px solid rgba(22,22,22,0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,215,3,0.2);
}
.form-input::placeholder { color: #aaa; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23443F33' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.5em; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; margin-top: 0.25rem; }
@media (max-width: 480px) {
  .form-submit { width: 100%; justify-content: center; }
}

.contact-map-section {
  padding-block: var(--space-xl);
  background: var(--offwhite);
}
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/7;
  box-shadow: var(--shadow-card);
}
.contact-map-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 640px) {
  .contact-map-wrap { aspect-ratio: 4/3; }
}


/* 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;}
