/* ============================================
   OMG! Decadent Donuts Penrith - Brand Styles
   From 2023 Corporate Identity Guide
   Logo Colors:
   - Magenta: R218 G28 B92 / Pantone Rubine Red
   - Yellow: R255 G222 B64 / Pantone Yellow 012
   - Orange: R247 G148 B29 / Pantone 1495
   - Aqua (Logo): R147 G214 B223
   - Light Magenta: R241 G116 B162 / Pantone 190
   Background Colors:
   - Aqua BG: R85 G194 B184 / Pantone 3258
   - Yellow BG: R253 G220 B64
   Font: Century Gothic (primary), LT Wiesbaden Swing (highlight)
   ============================================ */

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --aqua: #55C2B8;
  --aqua-dark: #3BA89E;
  --aqua-light: #93D6DF;
  --magenta: #DA1C5C;
  --magenta-light: #F174A2;
  --yellow: #FFDE40;
  --orange: #F7941D;
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f8f8f8;
  --gray: #e0e0e0;
  --gray-dark: #666666;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, 'Avant Garde', Avantgarde, 'URW Gothic', sans-serif;
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a,
.nav-dropdown > span {
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--black);
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav a:hover,
.nav-dropdown:hover > span {
  background: var(--aqua);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--aqua);
  color: var(--white);
}

.btn-order {
  background: var(--magenta);
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(218,28,92,0.3);
  transition: var(--transition);
}

.btn-order:hover {
  background: #c01850 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(218,28,92,0.4);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--black);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dark) 100%);
  overflow: hidden;
  padding-top: 84px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

/* Sunburst pattern */
.hero-sunburst {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255,255,255,0.04) 0deg 10deg,
    transparent 10deg 20deg
  );
  animation: slowRotate 120s linear infinite;
}

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
}

.hero-logo {
  width: 280px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.2));
  animation: floatIn 1s ease-out;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(218,28,92,0.35);
}

.btn-primary:hover {
  background: #c01850;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(218,28,92,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255,222,64,0.35);
}

.btn-accent:hover {
  background: #f0d030;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--magenta);
  border: 2px solid var(--magenta);
}

.btn-outline:hover {
  background: var(--magenta);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---- SECTIONS ---- */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--aqua);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ---- FEATURES / OFFERINGS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card .btn {
  margin-top: auto;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.feature-icon.aqua { background: rgba(85,194,184,0.15); }
.feature-icon.magenta { background: rgba(218,28,92,0.1); }
.feature-icon.yellow { background: rgba(255,222,64,0.2); }
.feature-icon.orange { background: rgba(247,148,29,0.15); }

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

/* ---- ABOUT / INFO SECTION ---- */
.about-section {
  background: var(--gray-light);
}

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

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-dark);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: var(--aqua-dark);
}

.badge span { font-size: 1.1rem; }

/* ---- LOCATION ---- */
.location-section {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255,255,255,0.03) 0deg 10deg,
    transparent 10deg 20deg
  );
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.location-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.location-info p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 12px;
  line-height: 1.8;
}

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

.location-detail .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail .text strong {
  display: block;
  font-size: 1rem;
}

.location-detail .text span {
  opacity: 0.85;
  font-size: 0.95rem;
}

.orchard-logo {
  height: 40px;
  margin-top: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- PAGE BANNER ---- */
.page-banner {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dark) 100%);
  color: var(--white);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255,255,255,0.03) 0deg 10deg,
    transparent 10deg 20deg
  );
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- FUNDRAISING ---- */
.fundraising-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.fund-option {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.fund-option:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.fund-option-header {
  background: var(--aqua);
  color: var(--white);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.fund-option-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255,255,255,0.05) 0deg 10deg,
    transparent 10deg 20deg
  );
}

.fund-option-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.fund-option-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.fund-option-header p {
  opacity: 0.9;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
}

.fund-option-body {
  padding: 32px;
}

.fund-option-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--aqua-dark);
}

.fund-option-body p {
  color: var(--gray-dark);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.fund-option-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.fund-option-body li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.fund-option-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 700;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.95rem;
}

.price-table th {
  background: var(--gray-light);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-dark);
}

.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray);
}

.price-highlight {
  background: rgba(85,194,184,0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
  border-left: 4px solid var(--aqua);
}

.price-highlight p {
  margin: 0;
  font-weight: 500;
  color: var(--black);
}

/* ---- FORMS ---- */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(85,194,184,0.15);
}

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

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

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--aqua);
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  cursor: pointer;
  font-weight: 400;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 24px;
}

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

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--aqua-light);
}

.footer-col a {
  display: block;
  padding: 6px 0;
  opacity: 0.7;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--aqua);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: var(--transition);
}

.social-links a:hover {
  opacity: 1;
  color: var(--aqua);
}

/* Lean footer */
.footer-lean {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-lean__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-lean__left span {
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-lean__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-lean__links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-lean__links a:hover {
  opacity: 1;
  color: var(--aqua);
}

.footer-lean__right {
  text-align: right;
  font-size: 0.9rem;
}

.footer-lean__right a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-lean__right a:hover {
  opacity: 1;
  color: var(--aqua);
}

.footer-lean__social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .footer-lean {
    flex-direction: column;
    text-align: center;
  }
  .footer-lean__left {
    flex-direction: column;
  }
  .footer-lean__links {
    justify-content: center;
  }
  .footer-lean__right {
    text-align: center;
  }
  .footer-lean__social {
    justify-content: center;
  }
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--magenta);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255,255,255,0.03) 0deg 10deg,
    transparent 10deg 20deg
  );
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* ---- COMING SOON ---- */
.coming-soon-card {
  text-align: center;
  padding: 60px 40px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin: 0 auto 48px;
}

.coming-soon-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.coming-soon-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.coming-soon-card p {
  color: var(--gray-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- QUICK SERVICES STRIP ---- */
.services-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray);
}

.services-strip .container {
  text-align: center;
}

.services-strip h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-strip-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.services-strip-grid .btn {
  min-width: 180px;
  text-align: center;
}

/* Large service buttons (homepage) */
.services-strip-grid--large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-btn {
  display: block;
  padding: 20px 24px;
  background: var(--magenta);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-btn:hover {
  background: #b8164e;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Accreditation strip under hero */
.accreditation-strip {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--gray);
}

.accreditation-strip .cert-row {
  gap: 32px;
}

.accreditation-strip .cert-row img {
  height: 125px;
  width: auto;
}

/* Feature cards with images */
.features-grid--image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card--image {
  text-align: center;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card--image h3 {
  padding: 20px 24px 8px;
  font-size: 1.2rem;
}

.feature-card--image p {
  padding: 0 24px 24px;
  color: var(--gray-dark);
}

@media (max-width: 768px) {
  .services-strip-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid--image {
    grid-template-columns: 1fr;
  }
}

/* ---- HOURS BLOCK ---- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 12px;
}

.hours-grid .day {
  font-weight: 600;
  text-align: right;
}

.hours-grid .time {
  text-align: left;
  color: var(--gray-dark);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .about-grid,
  .location-grid,
  .fundraising-options {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a,
  .nav-dropdown > span {
    font-size: 1.2rem;
    padding: 14px 24px;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    min-width: unset;
    padding: 0 0 0 16px;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-logo {
    width: 200px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }
}

/* ---- HERO IMAGE VARIANT ---- */
.hero-image {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding-top: 84px;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero-image .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 700px;
  padding: 60px 40px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-lg);
}

.hero-image .hero-logo {
  width: 160px;
  margin: 0 0 24px 0;
}

.hero-image h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-image .tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-image .hero-subheadline {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
  line-height: 1.4;
}

.hero-image .hero-small {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-image .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ---- MENU MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-box img {
  height: 60px;
  margin: 0 auto 20px;
}

.modal-box h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--gray-dark);
  margin-bottom: 28px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-actions .btn {
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-ghost {
  background: transparent;
  color: var(--gray-dark);
  border: 2px solid var(--gray);
}

.btn-ghost:hover {
  background: var(--gray-light);
  border-color: var(--gray-dark);
}

/* ---- CERTIFICATION LOGOS ---- */
.cert-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cert-row img {
  height: 120px;
  width: auto;
  opacity: 0.85;
  transition: var(--transition);
}

.cert-row img:hover {
  opacity: 1;
}

.footer-certs {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-certs .cert-row img {
  height: 90px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-certs .cert-row img:hover {
  opacity: 0.8;
}

/* ---- ALLERGEN BADGES ---- */
.allergen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.allergen-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: var(--aqua-dark);
  border: 1px solid rgba(85,194,184,0.2);
}

.allergen-badge .check {
  color: var(--aqua);
  font-weight: 700;
}

/* ---- PRODUCT IMAGE CARDS ---- */
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- STORE PAGE ---- */
.store-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--aqua) 0%, var(--aqua-dark) 100%);
  padding-top: 84px;
}

.store-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.store-feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.store-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.store-feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-feature p {
  color: var(--gray-dark);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- FOUR COLUMN GRID ---- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 576px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-image .hero-content { text-align: center; }
  .hero-image .hero-cta { justify-content: center; }
  .hero-image .hero-logo { margin: 0 auto 24px; }
}

/* ---- UTILITY ---- */
.text-aqua { color: var(--aqua); }
.text-magenta { color: var(--magenta); }
.bg-light { background: var(--gray-light); }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mb-md { margin-bottom: 32px; }
