/*
Theme Name: Zimosa
Theme URI: https://zimosa.in
Author: Zimosa Food Services
Author URI: https://zimosa.in
Description: Premium corporate food service theme for Zimosa — black, gold & amber brand identity.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: zimosa
*/

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0A0A0C;
  --charcoal:#151417;
  --card:    #1C1A18;
  --ink:     #211C14;
  --gold:    #F2B033;
  --gold-lt: #FFD877;
  --amber:   #C9651B;
  --cream:   #F5F1E8;
  --linen:   #F0EAE0;
  --muted:   #B9B2A4;
  --brown:   #4A4036;
  --white:   #FFFFFF;

  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-gold: 0 0 32px rgba(242,176,51,0.15);
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }
ul { list-style: none; }

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

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--muted); line-height: 1.75; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag--amber { color: var(--amber); }

.gold-line {
  display: block;
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 28px;
}
.gold-line--center { 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-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-lt);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242,176,51,0.12);
  transition: background var(--transition);
}
#site-header.scrolled {
  background: rgba(10,10,12,0.98);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,12,0.92) 0%,
    rgba(10,10,12,0.72) 55%,
    rgba(10,10,12,0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 680px;
}
.hero-content .section-tag { font-size: 0.75rem; }
.hero-content h1 { color: var(--white); margin-bottom: 10px; }
.hero-content h1 span { color: var(--gold); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 52px;
  left: 0; right: 0;
  z-index: 2;
}
.hero-stats .container {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(242,176,51,0.15);
  padding-top: 32px;
}
.hero-stat {
  flex: 1;
  padding: 0 28px;
  border-right: 1px solid rgba(242,176,51,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* =========================================================
   SECTION COMMONS
   ========================================================= */
.section { padding: 100px 0; }
.section--dark  { background: var(--black); }
.section--card  { background: var(--charcoal); }
.section--linen { background: var(--linen); }
.section--linen h2, .section--linen h3, .section--linen h4 { color: var(--ink); }
.section--linen p { color: var(--brown); }
.section--linen .section-tag { color: var(--amber); }

.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .gold-line { margin-left: auto; margin-right: auto; }

/* =========================================================
   HOME — INTRO STRIP
   ========================================================= */
.intro-strip {
  background: var(--gold);
  padding: 20px 0;
  overflow: hidden;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
}
.intro-strip-dot { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   HOME — ABOUT PREVIEW
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--black);
}
.about-badge {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--ink);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow);
}
.about-badge-num { font-family: var(--font-head); font-size: 2rem; display: block; }
.about-badge-text { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }

.about-content h2 { margin-bottom: 8px; }
.about-content p { margin-bottom: 20px; }
.about-milestones { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.milestone {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.milestone-year {
  min-width: 52px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.milestone-text { font-size: 0.9rem; color: var(--muted); }

/* =========================================================
   HOME — SERVICES PREVIEW
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(242,176,51,0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(242,176,51,0.3);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 44px; height: 44px;
  background: rgba(242,176,51,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.service-card h3 { color: var(--cream); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; line-height: 1.6; }

/* =========================================================
   HOME — STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--ink);
  padding: 72px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 24px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 6px;
}

/* =========================================================
   HOME — CLIENTS LOGOS
   ========================================================= */
.clients-section { background: var(--charcoal); padding: 72px 0; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 48px;
}
.client-chip {
  background: var(--card);
  border: 1px solid rgba(242,176,51,0.1);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--transition);
}
.client-chip:hover {
  background: rgba(242,176,51,0.08);
  border-color: rgba(242,176,51,0.28);
  color: var(--gold);
}

/* =========================================================
   HOME — CTA BANNER
   ========================================================= */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/food-spread.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner .btn { font-size: 1rem; padding: 16px 40px; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.95) 0%, transparent 70%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 { color: var(--white); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: var(--muted); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.story-section { padding: 100px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text p { margin-bottom: 18px; }
.story-timeline { margin-top: 40px; }
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 22px; top: 44px;
  width: 2px;
  height: calc(100% + 8px);
  background: rgba(242,176,51,0.18);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  min-width: 46px; height: 46px;
  background: rgba(242,176,51,0.1);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.timeline-body h4 { color: var(--cream); margin-bottom: 6px; }
.timeline-body p  { font-size: 0.9rem; }

.story-photos { display: flex; flex-direction: column; gap: 16px; }
.story-photos img { border-radius: var(--radius); object-fit: cover; width: 100%; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-card h4 { color: var(--gold); margin-bottom: 8px; font-size: 1rem; }
.value-card p  { font-size: 0.85rem; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-full-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(242,176,51,0.08);
  transition: all var(--transition);
}
.service-full-card:hover {
  border-color: rgba(242,176,51,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-full-img {
  width: 100%; height: 220px; object-fit: cover;
}
.service-full-body { padding: 28px; }
.service-full-body h3 { color: var(--cream); margin-bottom: 12px; }
.service-full-body p  { margin-bottom: 16px; font-size: 0.9rem; }
.service-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  background: rgba(242,176,51,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(242,176,51,0.2);
}

.menu-section { padding: 100px 0; background: var(--charcoal); }
.menu-week { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; }
.menu-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-day {
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 12px;
  text-align: center;
}
.menu-items {
  padding: 16px 24px;
  font-size: 0.88rem;
  color: var(--brown);
  display: flex;
  align-items: center;
}

/* =========================================================
   PROJECTS PAGE
   ========================================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.project-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(242,176,51,0.08);
  transition: all var(--transition);
}
.project-card:hover {
  border-color: rgba(242,176,51,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.project-card img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform var(--transition);
}
.project-card:hover img { transform: scale(1.04); }
.project-card-body { padding: 24px; }
.project-card h3 { color: var(--cream); margin-bottom: 8px; font-size: 1.05rem; }
.project-card p  { font-size: 0.88rem; }
.project-tag {
  display: inline-block;
  background: rgba(201,101,27,0.15);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.clients-list-section { padding: 100px 0; background: var(--charcoal); }
.clients-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 48px;
}
.client-item {
  background: var(--card);
  border: 1px solid rgba(242,176,51,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.client-item:hover {
  background: rgba(242,176,51,0.07);
  border-color: rgba(242,176,51,0.28);
}
.client-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.client-item span { font-size: 0.88rem; color: var(--cream); font-weight: 500; }

/* =========================================================
   TEAM PAGE
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(242,176,51,0.08);
  transition: all var(--transition);
}
.team-card:hover {
  border-color: rgba(242,176,51,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.team-card img {
  width: 100%; height: 280px; object-fit: cover; object-position: top;
}
.team-card-body { padding: 24px; }
.team-card h3 { color: var(--cream); margin-bottom: 4px; font-size: 1.15rem; }
.team-card-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}
.team-card p { font-size: 0.88rem; }

.kitchen-gallery { padding: 100px 0; background: var(--charcoal); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--wide { grid-column: span 2; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 8px; }
.contact-info p  { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(242,176,51,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item-value { color: var(--cream); font-size: 0.95rem; }

/* Contact form */
.contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 44px;
  border: 1px solid rgba(242,176,51,0.1);
}
.contact-form h3 { color: var(--cream); margin-bottom: 28px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(242,176,51,0.15);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black); }
.form-submit .btn { width: 100%; justify-content: center; }

/* Map embed */
.map-section { padding: 0 0 100px; }
.map-embed {
  width: 100%; height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(242,176,51,0.12);
}
.map-embed iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg); }

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(242,176,51,0.15);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-logo img { width: 40px; height: 40px; object-fit: contain; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(242,176,51,0.1);
  border: 1px solid rgba(242,176,51,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-contact-item {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact-item strong { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(242,176,51,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-tagline {
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--gold-lt); transform: translateY(-3px); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 360px; margin-bottom: 40px; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,10,12,0.98); flex-direction: column; padding: 24px;
    gap: 24px; border-bottom: 1px solid rgba(242,176,51,0.15); }
  .nav-menu.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats .container { flex-direction: column; gap: 24px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(242,176,51,0.1); padding: 0 0 16px; }
  .hero-stat:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .menu-row { grid-template-columns: 100px 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .stats-inner { grid-template-columns: 1fr; }
}
