/* =========================================
   APIKO CATERING — Global Styles
   ========================================= */

:root {
  --green: #3D5A3E;
  --green-dark: #2a3f2b;
  --green-light: #4e7350;
  --gold: #C9A96E;
  --gold-light: #dfc08e;
  --cream: #FAFAF8;
  --cream-dark: #F2EFE8;
  --charcoal: #2D2D2D;
  --charcoal-light: #4a4a4a;
  --white: #ffffff;
  --border: rgba(61,90,62,0.12);

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

  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
p  { font-size: 1rem; color: var(--charcoal-light); }

.serif { font-family: var(--font-serif); }
.gold  { color: var(--gold); }
.green { color: var(--green); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--dark { background: var(--green-dark); color: var(--cream); }
.section--dark p { color: rgba(250,250,248,0.8); }
.section--cream { background: var(--cream-dark); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { max-width: 600px; font-size: 1.05rem; margin-bottom: 48px; }
.section-header { text-align: center; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--green); color: var(--cream); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(61,90,62,0.3); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn--outline:hover { background: var(--green); color: var(--cream); }
.btn--outline-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(250,250,248,0.6); }
.btn--outline-light:hover { background: rgba(250,250,248,0.1); }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
#navbar.scrolled .nav-link { color: var(--charcoal); }
#navbar.scrolled .nav-logo-text { color: var(--green); }
#navbar.scrolled .nav-logo-sub { color: #7a5c3a; }
.nav-inner {
  display: flex; align-items: center; gap: 0;
  width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; cursor: pointer; margin-right: auto; }
.nav-logo-text {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--cream); letter-spacing: 0.06em; transition: color 0.3s;
}
.nav-logo-sub {
  font-size: 0.8rem; color: var(--gold); letter-spacing: 0.08em;
  font-style: italic; font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}
.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-link {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em;
  color: rgba(250,250,248,0.9); padding: 6px 10px; border-radius: 3px;
  transition: color 0.2s; cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.lang-toggle {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(250,250,248,0.7); cursor: pointer; padding: 4px 8px;
  border: 1px solid rgba(250,250,248,0.3); border-radius: 3px;
  transition: var(--transition); background: transparent;
}
#navbar.scrolled .lang-toggle { color: var(--charcoal-light); border-color: var(--border); }
.lang-toggle:hover { color: var(--gold); border-color: var(--gold); }
.nav-cta { display: none; }
@media(min-width:900px) { .nav-cta { display: inline-flex; } }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; margin-left: 8px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--charcoal); }
@media(max-width:900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none !important; }
}

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); padding: 24px; z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { color: var(--charcoal); font-size: 1rem; padding: 12px 16px; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 600px; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,35,20,0.72) 0%, rgba(20,35,20,0.35) 60%, transparent 100%);
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-content {
  position: relative; z-index: 1; max-width: 680px;
  padding: 0 24px; margin-left: calc((100vw - 1200px) / 2);
}
@media(max-width:1248px) { .hero-content { margin-left: 24px; } }
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 20px; text-wrap: pretty; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 500px; text-wrap: pretty;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 40px; right: 40px; z-index: 1;
  display: flex; gap: 40px;
}
@media(max-width:768px) { .hero-stats { display: none; } }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); text-transform: uppercase; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative; overflow: hidden; border-radius: 6px;
  cursor: pointer; aspect-ratio: 4/3;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,35,20,0.85) 0%, rgba(20,35,20,0.1) 60%);
}
.service-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px;
}
.service-card-title {
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); margin-bottom: 6px;
}
.service-card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.service-card-link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 14px; }

/* ── USPs ── */
.usps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 40px;
}
.usp-item { text-align: center; }
.usp-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem;
}
.usp-title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; color: var(--cream); }
.usp-desc { font-size: 0.9rem; color: rgba(250,250,248,0.7); }

/* ── TESTIMONIALS ── */
.testimonials { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
  min-width: 100%; padding: 0 20px;
  display: flex; justify-content: center;
}
.testimonial-card {
  max-width: 700px; text-align: center;
}
.testimonial-quote {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic; line-height: 1.7; color: var(--charcoal);
  margin-bottom: 28px;
}
.testimonial-author {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--green); text-transform: uppercase;
}
.testimonial-event { font-size: 0.8rem; color: var(--charcoal-light); margin-top: 4px; }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; }
.testimonial-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 36px;
}
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: background 0.3s;
}
.testimonial-dot.active { background: var(--green); }

/* ── NUMBERS ── */
.numbers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  text-align: center;
}
@media(max-width:600px) { .numbers-grid { grid-template-columns: 1fr; gap: 32px; } }
.number-item {}
.number-val {
  font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.number-label { font-size: 0.85rem; color: rgba(250,250,248,0.7); margin-top: 8px; letter-spacing: 0.04em; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 24px; text-align: center;
  background: var(--green); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/img15.jpg') center/cover;
  opacity: 0.08;
}
.cta-banner h2 { color: var(--cream); position: relative; margin-bottom: 12px; }
.cta-banner p { color: rgba(250,250,248,0.8); position: relative; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { position: relative; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 1; border-radius: 4px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(20,35,20,0); transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(20,35,20,0.4); }
.gallery-zoom { font-size: 1.5rem; color: white; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
  justify-content: center;
}
.filter-tab {
  padding: 8px 20px; border-radius: 100px; cursor: pointer;
  font-size: 0.85rem; font-weight: 500;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--charcoal-light); transition: var(--transition); font-family: var(--font-sans);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--green); color: var(--cream); border-color: var(--green);
}

/* ── MENU CARDS ── */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.menu-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: box-shadow 0.3s;
}
.menu-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.menu-card-body { padding: 24px; }
.menu-card-category {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.menu-card-title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; }
.menu-card-desc { font-size: 0.88rem; color: var(--charcoal-light); }
.menu-diet-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.diet-badge {
  font-size: 0.7rem; padding: 3px 10px; border-radius: 100px;
  background: rgba(61,90,62,0.08); color: var(--green); font-weight: 600;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-serif); font-size: 1.05rem; color: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--green); }
.faq-chevron { font-size: 0.8rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 20px; font-size: 0.95rem; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--charcoal-light); margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--charcoal);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--green);
}
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info { }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(61,90,62,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); }
.contact-info-val { font-size: 0.95rem; color: var(--charcoal-light); margin-top: 2px; }

/* ── AREAS ── */
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.area-card {
  background: rgba(61,90,62,0.06); border: 1px solid rgba(61,90,62,0.15);
  border-radius: 6px; padding: 20px; text-align: center; cursor: pointer;
  transition: var(--transition);
}
.area-card:hover { background: var(--green); }
.area-card:hover .area-name, .area-card:hover .area-sub { color: var(--cream); }
.area-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--charcoal); margin-bottom: 4px; }
.area-sub { font-size: 0.8rem; color: var(--charcoal-light); }

/* ── BLOG ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px;
}
.blog-card { background: var(--white); border-radius: 8px; overflow: hidden; }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-cat {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.blog-card-title { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title:hover { color: var(--green); cursor: pointer; }
.blog-card-date { font-size: 0.8rem; color: var(--charcoal-light); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal); color: rgba(250,250,248,0.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo-text {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--cream);
  letter-spacing: 0.06em; display: block;
}
.footer-logo-sub { font-size: 0.85rem; color: var(--gold); font-style: italic; font-family: 'Playfair Display', serif; }
.footer-about { font-size: 0.88rem; margin-top: 16px; margin-bottom: 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(250,250,248,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,250,248,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; }

/* ── PAGE TRANSITIONS ── */
.page { display: none; }
.page.active { display: block; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; color: white; font-size: 2rem;
  cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── ABOUT VALUES ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 32px;
}
.value-item {
  padding: 32px 24px; background: var(--white); border-radius: 6px;
  border-top: 3px solid var(--gold);
}
.value-title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 10px; }
.value-desc { font-size: 0.9rem; }

/* ── SERVICE DETAIL ── */
.service-detail-hero {
  height: 50vh; position: relative; display: flex; align-items: center;
}
.service-detail-hero .hero-bg::after {
  background: linear-gradient(to right, rgba(20,35,20,0.7) 0%, rgba(20,35,20,0.3) 100%);
}
.service-detail-content {
  position: relative; z-index: 1; padding: 0 24px;
  max-width: 700px; margin-left: calc((100vw - 1200px) / 2);
}
@media(max-width:1248px) { .service-detail-content { margin-left: 24px; } }

.includes-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px;
  list-style: none;
}
.includes-list li {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 20px;
  background: var(--white); border-radius: 4px;
  font-size: 0.9rem;
}
.includes-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TWEAKS PANEL ── */
#tweaks-panel {
  display: none; position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  background: var(--white); border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  padding: 20px; width: 260px; font-family: var(--font-sans);
}
#tweaks-panel.visible { display: block; }
.tweaks-title { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.tweak-row { margin-bottom: 14px; }
.tweak-label { font-size: 0.78rem; font-weight: 600; color: var(--charcoal-light); margin-bottom: 6px; display: block; }
.tweak-row select, .tweak-row input[type=range] { width: 100%; }
.tweak-row input[type=color] { width: 40px; height: 32px; border: 1px solid var(--border); border-radius: 4px; cursor: pointer; padding: 2px; }

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .usps-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* ── MULTI-PAGE NAV (anchor tag support) ── */
a.nav-link { text-decoration: none; display: block; }
.nav-logo a { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
