
:root {
  --navy: #1a2744;
  --navy-dark: #111b30;
  --navy-mid: #243358;
  --cream: #faf6ee;
  --cream-dark: #f2ead8;
  --gold: #e8a020;
  --gold-light: #f5c24a;
  --gold-dark: #b87a10;
  --text: #1c1c1c;
  --text-muted: #5a5a5a;
  --white: #ffffff;

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

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

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 1.5rem);
  --space-lg: clamp(1.5rem, 4vw, 2.5rem);
  --space-xl: clamp(2.5rem, 6vw, 4.5rem);
  --space-2xl: clamp(3.5rem, 8vw, 7rem);

  --container: 1200px;
  --header-h: 68px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }


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

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}


.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7em 1.6em;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 4px 16px rgba(232,160,32,0.35); }

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy-dark); border-color: var(--navy-dark); box-shadow: 0 4px 16px rgba(26,39,68,0.25); }

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

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}
.btn-light:hover { background: var(--cream); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  color: var(--white);
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.logo-mark {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-mark--sm {
  width: 34px;
  height: 34px;
  font-size: 0.75rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1.75rem);
}

.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.3em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.nav-link:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 2px; }

.header-cta {
  flex-shrink: 0;
  font-size: 0.8rem;
  padding: 0.5em 1.2em;
  border-color: var(--gold);
  color: var(--gold);
}
.header-cta:hover { background: var(--gold); color: var(--navy-dark); }

@media (max-width: 600px) {
  .header-cta { display: none; }
  .logo-sub { display: none; }
  .main-nav ul { gap: 0.75rem; }
  .nav-link { font-size: 0.8rem; }
}


.hero {
  position: relative;
  min-height: clamp(420px, 70vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 27, 48, 0.88) 0%,
    rgba(26, 39, 68, 0.72) 55%,
    rgba(26, 39, 68, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-block: var(--space-2xl);
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-body {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


.categories {
  padding-block: var(--space-2xl);
  background: var(--cream);
}

.categories .section-heading,
.categories .section-label {
  text-align: center;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(26,39,68,0.07);
  border: 1.5px solid rgba(26,39,68,0.06);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}
.cat-card:hover {
  box-shadow: 0 8px 28px rgba(26,39,68,0.14);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.cat-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.cat-card--accent .cat-body h3 { color: var(--gold-dark); }

.cat-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-dark);
}

.cat-img-wrap img {
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.05); }

.cat-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.cat-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.cat-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.cat-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: auto;
  transition: letter-spacing 0.2s;
}
.cat-card:hover .cat-link { letter-spacing: 0.03em; }


.coins-feature {
  background: var(--navy);
  padding-block: var(--space-2xl);
}

.coins-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.coins-text .section-label { color: var(--gold-light); }

.coins-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.coins-text p {
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.coins-text strong { color: var(--gold-light); }

.coins-images {
  position: relative;
}

.coins-img-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.coins-img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 36px rgba(0,0,0,0.4);
}

.coins-img--back {
  width: 78%;
  height: 78%;
  top: 0;
  left: 0;
  object-position: center;
}

.coins-img--front {
  width: 58%;
  height: 58%;
  bottom: 0;
  right: 0;
  border: 4px solid var(--navy);
  object-position: center;
}

@media (max-width: 720px) {
  .coins-inner { grid-template-columns: 1fr; }
  .coins-img-stack { aspect-ratio: 16 / 9; }
  .coins-img--back { width: 70%; height: 100%; }
  .coins-img--front { width: 48%; height: 72%; }
}


.lotto-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-light) 100%);
  padding-block: var(--space-xl);
  text-align: center;
}

.lotto-inner {
  max-width: 680px;
}

.lotto-badge {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35em 1em;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.lotto-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.lotto-inner p {
  font-size: 1rem;
  color: var(--navy-dark);
  opacity: 0.82;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}


.about-strip {
  padding-block: var(--space-2xl);
  background: var(--cream-dark);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 28px rgba(26,39,68,0.14);
}

.about-text .section-label { color: var(--gold-dark); }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.about-text strong { color: var(--navy); }

@media (max-width: 720px) {
  .about-inner { grid-template-columns: 1fr; }
}


.visit {
  padding-block: var(--space-2xl);
  background: var(--cream);
}

.visit .section-label { text-align: center; }
.visit .section-heading { text-align: center; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  align-items: stretch;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-block {}

.info-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(26,39,68,0.08);
}

.hours-list li .day { color: var(--text); font-weight: 500; }
.hours-list li .time { color: var(--text-muted); }
.hours-list li.closed .day,
.hours-list li.closed .time { color: var(--text-muted); opacity: 0.6; }

address {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold-dark); }
.contact-link:focus-visible { outline: 2px solid var(--gold); border-radius: 2px; }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 4px 20px rgba(26,39,68,0.1);
  border: 2px solid rgba(26,39,68,0.08);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
}

@media (max-width: 760px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 260px; }
  .visit-map iframe { min-height: 260px; }
}


.site-footer {
  background: var(--navy-dark);
  padding-block: var(--space-xl);
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-name {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.footer-nav a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.footer-nav a:focus-visible { outline: 2px solid var(--gold-light); border-radius: 2px; }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}



.about-hero {
  position: relative;
  min-height: clamp(380px, 58vh, 580px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(17, 27, 48, 0.90) 0%,
    rgba(26, 39, 68, 0.74) 55%,
    rgba(26, 39, 68, 0.32) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-block: var(--space-2xl);
}

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

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-story-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 28px rgba(26,39,68,0.13);
}

.about-story-text .section-label { color: var(--gold-dark); }

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-story-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.about-story-text strong { color: var(--navy); }

@media (max-width: 720px) {
  .about-story-inner { grid-template-columns: 1fr; }
}

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

.about-values .section-label { color: var(--gold-light); }
.about-values .section-heading { color: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background 0.25s, border-color 0.25s;
}

.value-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

.value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.value-icon svg { width: 100%; height: 100%; }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.value-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.about-nxp {
  padding-block: var(--space-2xl);
  background: var(--cream-dark);
}

.about-nxp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-nxp-text .section-label { color: var(--gold-dark); }

.about-nxp-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-nxp-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.about-nxp-text strong { color: var(--navy); }

.about-nxp-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 28px rgba(26,39,68,0.12);
}

@media (max-width: 720px) {
  .about-nxp-inner { grid-template-columns: 1fr; }
  .about-nxp-img-wrap { order: -1; }
}

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

.about-specialties .section-label { color: var(--gold-dark); }

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.specialty-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(26,39,68,0.07);
  border: 1.5px solid rgba(26,39,68,0.06);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}

.specialty-card:hover {
  box-shadow: 0 8px 28px rgba(26,39,68,0.14);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.specialty-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.specialty-img-wrap img {
  transition: transform 0.4s ease;
}

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

.specialty-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.specialty-body h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
}

.specialty-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.about-visit {
  padding-block: var(--space-2xl);
  background: var(--cream-dark);
}

.about-visit .section-label { color: var(--gold-dark); }



.contact-hero {
  background: var(--navy);
  padding-block: var(--space-2xl);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-hero-text .section-label {
  color: var(--gold-light);
}

.contact-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.contact-hero-body {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.contact-hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 36px rgba(0,0,0,0.35);
}

@media (max-width: 720px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }
  .contact-hero-img-wrap {
    order: -1;
  }
}

.contact-details {
  background: var(--cream);
  padding-block: var(--space-2xl);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 760px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 2px 12px rgba(26,39,68,0.07);
  border: 1.5px solid rgba(26,39,68,0.06);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}

.contact-card:hover {
  box-shadow: 0 8px 28px rgba(26,39,68,0.12);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.contact-card address {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

.contact-main {
  background: var(--cream-dark);
  padding-block: var(--space-2xl);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 760px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

.contact-col-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.contact-hours-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-note {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-sm) var(--space-md);
}

.contact-note p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-reach {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-reach-line {
  display: flex;
}

.contact-link--email {
  font-size: 0.88rem;
  word-break: break-all;
}

.contact-map-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-map-col .visit-map {
  min-height: 380px;
}

.contact-map-col .visit-map iframe {
  min-height: 380px;
}

.contact-directions-btn {
  align-self: flex-start;
}

.contact-strip {
  background: var(--navy);
  padding-block: var(--space-2xl);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 720px) {
  .contact-strip-inner {
    grid-template-columns: 1fr;
  }
  .contact-strip-img {
    order: -1;
  }
}

.contact-strip-text .section-label {
  color: var(--gold-light);
}

.contact-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.contact-strip-text p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.contact-strip-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 36px rgba(0,0,0,0.3);
}



.shop-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 27, 48, 0.9) 0%,
    rgba(26, 39, 68, 0.75) 55%,
    rgba(26, 39, 68, 0.35) 100%
  );
}

.shop-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-block: var(--space-2xl);
}

.shop-filter-bar {
  background: var(--navy);
  padding-block: var(--space-sm);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.filter-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-right: 0.25rem;
  flex-shrink: 0;
}

.filter-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.3em 0.85em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.filter-pill:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.filter-pill:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.filter-pill--gold {
  color: var(--gold-light);
  border-color: var(--gold-dark);
  background: rgba(232,160,32,0.12);
}

.filter-pill--gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

@media (max-width: 600px) {
  .filter-label { display: none; }
  .filter-bar-inner { gap: 0.4rem; }
  .filter-pill { font-size: 0.72rem; padding: 0.25em 0.7em; }
}

.shop-categories {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-md);
  background: var(--cream);
}

.shop-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-top: var(--space-sm);
}

.inline-link {
  color: var(--gold-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s;
}
.inline-link:hover { color: var(--navy); }

.product-section {
  padding-block: var(--space-2xl);
  background: var(--cream);
}

.product-section--alt {
  background: var(--cream-dark);
}

.product-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.product-section-header--reverse {
  direction: rtl;
}

.product-section-header--reverse > * {
  direction: ltr;
}

.product-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.product-section-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-section-hero-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 6px 28px rgba(26,39,68,0.13);
}

@media (max-width: 760px) {
  .product-section-header {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .product-section-header--reverse {
    direction: ltr;
  }
  .product-section-hero-img {
    order: -1;
    aspect-ratio: 16 / 9;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(26,39,68,0.07);
  border: 1.5px solid rgba(26,39,68,0.06);
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 28px rgba(26,39,68,0.14);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.product-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-img-wrap img {
  transition: transform 0.4s ease;
}

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

.product-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
}

.product-card-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.coins-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}

.coin-highlight {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.coin-highlight-icon {
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.lotto-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.lotto-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-dark);
  background: rgba(26,39,68,0.1);
  border: 1.5px solid rgba(26,39,68,0.2);
  border-radius: 50px;
  padding: 0.3em 0.9em;
}


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