:root {
  --cyan: #4ac6eb;
  --green: #6ac045;
  --dark: #151515;
  --dark2: #1e1e1e;
  --dark3: #252525;
  --text: #f0f0f0;
  --muted: #a0a0a0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(21,21,21,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74,198,235,0.15);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-size: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.nav-logo-sub { font-size: 10px; color: var(--cyan); letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text); font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase; transition: color 0.2s;
  padding: 4px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.nav-cta {
  background: var(--cyan); color: #0a0a0a;
  padding: 10px 24px; border-radius: 4px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  text-decoration: none; text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

/* PAGE HERO (sub-pages) */
.page-hero {
  padding: 150px 5% 70px;
  background: var(--dark);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,198,235,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 18px; }
.page-hero h1 span { color: var(--cyan); }
.page-hero p { font-size: 16px; color: var(--muted); line-height: 1.75; }

/* HERO (home) */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,198,235,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(106,192,69,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(74,198,235,0.12);
  border: 1px solid rgba(74,198,235,0.3);
  color: var(--cyan); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero h1 span { color: var(--cyan); }
.hero-sub {
  font-size: 17px; color: var(--muted);
  margin-bottom: 36px; line-height: 1.7; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  color: #0a0a0a; font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none; transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  border: 1.5px solid rgba(74,198,235,0.4);
  color: var(--cyan); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none; transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(74,198,235,0.08); }
.hero-visual {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.hero-logo-wrap {
  width: 200px; height: 200px; border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(74,198,235,0.35);
  box-shadow: 0 0 60px rgba(74,198,235,0.12);
}
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.offer-card {
  background: var(--dark2);
  border: 1px solid rgba(74,198,235,0.2);
  border-radius: 12px; padding: 20px 28px; text-align: center;
  width: 100%; max-width: 280px;
}
.offer-num {
  font-size: 56px; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -0.03em;
}
.offer-num span { color: var(--cyan); }
.offer-label { font-size: 13px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.offer-sub { font-size: 11px; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* FEATURES */
.features {
  padding: 80px 5%;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.feat-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 28px 24px;
  transition: border-color 0.2s;
}
.feat-card:hover { border-color: rgba(74,198,235,0.3); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(74,198,235,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* SERVICES */
.services { padding: 90px 5%; background: var(--dark); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -0.02em; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.svc-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.svc-card:hover { transform: translateY(-3px); border-color: rgba(106,192,69,0.3); }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}
.svc-title { font-size: 19px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.svc-list { list-style: none; padding: 0; margin: 14px 0 0; }
.svc-list li { font-size: 13px; color: var(--muted); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.svc-list li span { color: var(--cyan); font-weight: 700; }

/* PROMO BANNER */
.promo {
  margin: 0 5%; border-radius: 16px;
  background: linear-gradient(135deg, rgba(74,198,235,0.12), rgba(106,192,69,0.10));
  border: 1px solid rgba(74,198,235,0.25);
  padding: 52px 5%; text-align: center;
}
.promo-badge {
  display: inline-block; background: var(--cyan); color: #0a0a0a;
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 6px 20px; border-radius: 30px; margin-bottom: 20px;
}
.promo h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; margin-bottom: 12px; }
.promo h2 span { color: var(--cyan); }
.promo p { font-size: 16px; color: var(--muted); margin-bottom: 28px; }

/* HOURS + CONTACT */
.contact-section {
  padding: 90px 5%;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto;
}
.contact-block h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; color: #fff; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--muted); }
.hours-time { color: var(--text); font-weight: 600; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(74,198,235,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-value { font-size: 15px; color: var(--text); font-weight: 600; }
.contact-value a { color: var(--cyan); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.footer-name { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 12px; color: var(--muted); text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-nav a:hover { color: var(--cyan); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  nav .nav-cta { display: none; }
  .grid-3col, .grid-2col { grid-template-columns: 1fr !important; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.6s ease both; }
.hero-badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-btns { animation-delay: 0.4s; }
.page-hero-inner > * { animation: fadeUp 0.6s ease both; }

/* DELIVERY SECTION */
.delivery-hero-section {
  padding: 150px 5% 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.delivery-hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/storefront.jpg');
  background-size: cover; background-position: center 40%;
  opacity: 0.1;
}
.delivery-hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(21,21,21,0.6) 0%, rgba(21,21,21,0.92) 100%);
}
.delivery-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.delivery-hero-section .section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.delivery-hero-section h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
.delivery-hero-section h2 span { color: var(--cyan); }
.delivery-hero-section p { font-size: 16px; color: var(--muted); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* HOW IT WORKS */
.delivery-steps { padding: 70px 5%; background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.05); }
.delivery-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; max-width: 1200px; margin: 0 auto; }
.delivery-step { background: var(--dark3); border-top: 2px solid var(--cyan); padding: 28px 24px; transition: background 0.2s; }
.delivery-step:hover { background: #2e2e2e; }
.delivery-step-num { font-size: 36px; font-weight: 900; color: rgba(74,198,235,0.15); line-height: 1; margin-bottom: 12px; }
.delivery-step h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.delivery-step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* PHOTO GALLERY */
.delivery-gallery { padding: 0; background: var(--dark); }
.delivery-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 3px; max-width: 100%; }
.delivery-gallery-item { position: relative; overflow: hidden; background: var(--dark2); }
.delivery-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; min-height: 200px; max-height: 300px; }
.delivery-gallery-item.tall { grid-row: span 2; }
.delivery-gallery-item.tall img { max-height: 603px; }
.delivery-gallery-item.wide { grid-column: span 2; }
.delivery-gallery-item.wide img { max-height: 230px; }
.delivery-gallery-item:hover img { transform: scale(1.04); }
.delivery-gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; background: linear-gradient(to top, rgba(21,21,21,0.85) 0%, transparent 100%); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,240,240,0.7); opacity: 0; transition: opacity 0.3s; }
.delivery-gallery-item:hover .delivery-gallery-caption { opacity: 1; }

/* FEATURES STRIP */
.delivery-features-strip { background: var(--dark2); border-top: 1px solid rgba(74,198,235,0.15); border-bottom: 1px solid rgba(74,198,235,0.15); padding: 24px 5%; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.delivery-feature { display: flex; align-items: center; gap: 8px; }
.delivery-feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.delivery-feature span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); }

/* BOOKING FORM */
.delivery-form-section { padding: 80px 5%; background: var(--dark); }
.delivery-form-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px; align-items: end; max-width: 1200px; margin-left: auto; margin-right: auto; }
.delivery-form-header-right { font-size: 14px; color: var(--muted); line-height: 1.8; }
.delivery-form-header-right strong { color: var(--text); }
.delivery-booking-card { background: var(--dark2); border: 1px solid rgba(74,198,235,0.2); border-radius: 12px; overflow: hidden; max-width: 1200px; margin: 0 auto; }
.delivery-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.07); }
.delivery-tab-btn { padding: 16px; background: none; border: none; cursor: pointer; font-family: 'Trebuchet MS', sans-serif; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); transition: all 0.2s; border-bottom: 2px solid transparent; }
.delivery-tab-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); background: rgba(74,198,235,0.05); }
.delivery-tab-btn:hover:not(.active) { color: var(--text); }
.delivery-form-body { padding: 36px; }
.delivery-sunday-note { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(74,198,235,0.08); border-left: 3px solid var(--cyan); border-radius: 0 6px 6px 0; margin-bottom: 28px; }
.delivery-sunday-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; animation: dlv-pulse 2s infinite; }
@keyframes dlv-pulse { 0%,100%{opacity:1}50%{opacity:0.4} }
.delivery-sunday-note p { font-size: 13px; color: var(--text); }
.delivery-sunday-note strong { color: var(--cyan); }
.dlv-sublabel { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.dlv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.dlv-row.full { grid-template-columns: 1fr; }
.dlv-row.three { grid-template-columns: 1fr 1fr 1fr; }
.dlv-field { display: flex; flex-direction: column; gap: 6px; }
.dlv-field label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.dlv-field input, .dlv-field select, .dlv-field textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(74,198,235,0.2); color: var(--text); font-family: 'Trebuchet MS', sans-serif; font-size: 14px; padding: 10px 14px; border-radius: 6px; outline: none; transition: border-color 0.2s; width: 100%; }
.dlv-field input:focus, .dlv-field select:focus, .dlv-field textarea:focus { border-color: var(--cyan); background: rgba(74,198,235,0.04); }
.dlv-field input::placeholder, .dlv-field textarea::placeholder { color: rgba(160,160,160,0.5); }
.dlv-field select option { background: var(--dark2); color: var(--text); }
.dlv-field textarea { resize: vertical; min-height: 80px; }
.dlv-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 24px 0; }
.dlv-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.dlv-service-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--text); }
.dlv-service-check input[type="checkbox"] { width: 14px; height: 14px; min-width: 14px; accent-color: var(--cyan); cursor: pointer; }
.dlv-form-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 12px; }
.dlv-form-footer p { font-size: 12px; color: var(--muted); }
.dlv-submit-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: linear-gradient(90deg, var(--cyan), var(--green)); border: none; color: #0a0a0a; font-family: 'Trebuchet MS', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: opacity 0.2s; }
.dlv-submit-btn:hover { opacity: 0.88; }
.dlv-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.dlv-success { display: none; text-align: center; padding: 48px 24px; }
.dlv-success.show { display: block; }
.dlv-success h3 { font-size: 28px; font-weight: 900; color: var(--cyan); margin-bottom: 12px; }
.dlv-success p { font-size: 14px; color: var(--muted); }
@keyframes spin-dlv { to { transform: rotate(360deg); } }

/* MISC PAGE SECTIONS */
.value-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 28px 24px; }
.value-card h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) {
  .delivery-steps-grid { grid-template-columns: 1fr 1fr; }
  .delivery-gallery-grid { grid-template-columns: 1fr 1fr; }
  .delivery-gallery-item.tall { grid-row: span 1; }
  .delivery-gallery-item.wide { grid-column: span 2; }
  .delivery-gallery-item img, .delivery-gallery-item.tall img { max-height: 240px; }
  .delivery-form-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
  .dlv-row, .dlv-row.three { grid-template-columns: 1fr; }
  .dlv-services-grid { grid-template-columns: 1fr 1fr; }
  .delivery-form-body { padding: 20px; }
  .delivery-features-strip { gap: 16px; padding: 16px 5%; }
}
