@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

/* === TOKENS === */
:root {
  --navy:       #1a3150;
  --navy-dark:  #0e1f36;
  --navy-light: #264473;
  --gold:       #c07c0a;
  --gold-light: #e9a820;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --gray-100:   #f4f5f7;
  --gray-200:   #e2e5ea;
  --gray-500:   #64748b;
  --gray-700:   #374151;
  --text:       #1a202c;
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.16);
  --radius:     12px;
  --radius-lg:  20px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
a:visited { color: inherit; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* === HEADER === */
header {
  background: var(--navy-dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

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

.title-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 52px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.site-title span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

nav.navbar { display: flex; gap: 0.25rem; align-items: center; }

nav a, nav a:visited {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  transition: all 0.2s;
}

nav a:hover, nav a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

nav a.nav-cta {
  background: var(--gold);
  color: white !important;
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
  border-radius: 7px;
}

nav a.nav-cta:hover { background: var(--gold-light); }

nav a.nav-sister {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.6) !important;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.38rem 0.85rem !important;
  margin-left: 0.35rem;
  letter-spacing: 0.01em;
}

nav a.nav-sister:hover {
  color: white !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.38);
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.18);
  align-self: center;
  flex-shrink: 0;
  margin: 0 0.2rem;
}

@media (max-width: 900px) {
  .nav-divider { display: none; }
  nav a.nav-sister {
    border: none !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 0 !important;
    padding: 0.85rem 0 !important;
    margin-left: 0 !important;
    font-size: 1.05rem !important;
    color: rgba(255,255,255,0.65) !important;
  }
}

/* Hamburger */
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle.active .bar:nth-child(2) { opacity: 0; }
#menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  height: 88vh;
  min-height: 540px;
  max-height: 820px;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

/* Hero slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 0.42; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-dot {
  height: 8px;
  width: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.hero-dot.active {
  width: 26px;
  background: white;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
}

.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

@media (max-width: 600px) {
  .hero-arrow { display: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(233,168,32,0.2);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: white;
  margin-bottom: 1.25rem;
  max-width: 680px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === BUTTONS === */
.btn-primary, .btn-primary:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: all 0.2s;
  border: 2px solid var(--gold);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,124,10,0.35);
}

.btn-secondary, .btn-secondary:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-white, .btn-white:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid white;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-white:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white, .btn-outline-white:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.55);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

/* === TRUST BAR === */
.trust-bar { background: var(--navy); padding: 0.9rem 2rem; }

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item .ti { color: var(--gold-light); font-size: 1rem; }

/* === SECTION STRUCTURE === */
.section { padding: 5rem 2rem; }

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === SERVICES === */
.services-section { background: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon svg { width: 26px; height: 26px; fill: var(--gold-light); }

.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.65rem; }

.service-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.65; }

/* === CATEGORIES === */
.categories-section { background: var(--cream); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
}

.category-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}

.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  color: var(--gold);
  transform: translateY(-3px);
}

.cat-icon { font-size: 2rem; display: block; margin-bottom: 0.65rem; }

/* === BRANDS STRIP === */
.brands-strip { background: white; }

.brands-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.brand-logo-item img {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s;
}

.brand-logo-item img:hover { filter: grayscale(0%); opacity: 1; }

.brands-cta { text-align: center; margin-top: 2.5rem; }

/* === ABOUT DARK SECTION === */
.about-section { background: var(--navy-dark); }

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-img { border-radius: var(--radius); overflow: hidden; }

.about-img img { width: 100%; height: 200px; object-fit: cover; display: block; }

.about-img:first-child { grid-column: 1 / -1; }

.about-img:first-child img { height: 270px; }

.about-content .section-label { color: var(--gold-light); }

.about-content h2 { color: white; font-size: 2.2rem; margin-bottom: 1.25rem; }

.about-content p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-content strong { color: var(--gold-light); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.09);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--gold-light);
  font-weight: 700;
  display: block;
}

.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; display: block; }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #a86108 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-section h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); color: white; margin-bottom: 0.85rem; }

.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2.25rem; }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 3.5rem 2rem 1.5rem; }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { height: 46px; margin-bottom: 1rem; border-radius: 6px; }

.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 290px; }

.footer-col h4 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col a, .footer-col a:visited { color: rgba(255,255,255,0.58); font-size: 0.88rem; transition: color 0.2s; }

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1280px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.82rem;
}

/* === BRANDS PAGE === */
.brands-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.brand-card-full {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.brand-card-full:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.brand-card-full img {
  max-width: 160px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(25%);
  transition: filter 0.3s;
}

.brand-card-full:hover img { filter: grayscale(0%); }

.brand-card-full span {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
  text-align: center;
}

.product-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-tag {
  background: var(--cream);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  transition: all 0.2s;
}

.product-tag:hover { border-color: var(--gold); color: var(--gold); background: white; }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-block { margin-bottom: 2rem; }

.contact-block h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  margin-bottom: 0.85rem;
  transition: all 0.2s;
}

.contact-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; fill: var(--gold-light); }

.contact-item-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-item-body a, .contact-item-body p {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.contact-item-body a:hover { color: var(--gold); }

#current-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.badge-open { background: #dcfce7; color: #16a34a; }
.badge-closed { background: #fee2e2; color: #dc2626; }

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table td {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.hours-table tr:last-child td { border-bottom: none; }

.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }

.map-container { margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 450px; border: 0; display: block; }

/* === ABOUT PAGE === */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 60%, var(--navy-light) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.page-hero h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.72); margin-top: 0.85rem; font-size: 1.1rem; max-width: 540px; margin-inline: auto; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.story-img img { width: 100%; height: 420px; object-fit: cover; }

.story-content h2 { color: var(--navy); font-size: 2rem; margin-bottom: 1.25rem; }
.story-content p { color: var(--gray-500); margin-bottom: 1rem; line-height: 1.8; font-size: 1.02rem; }
.story-content strong { color: var(--navy); font-weight: 600; }

.owner-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.owner-avatar {
  width: 90px;
  height: 90px;
  background: var(--navy-light);
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-weight: 700;
}

.owner-info h3 { color: white; font-size: 1.3rem; margin-bottom: 0.2rem; }
.owner-title { color: var(--gold-light); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; display: block; }
.owner-info p { color: rgba(255,255,255,0.68); font-size: 0.95rem; line-height: 1.7; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.value-card .val-icon { font-size: 1.75rem; margin-bottom: 0.85rem; display: block; }
.value-card h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.65; }

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-img { border-radius: var(--radius); overflow: hidden; }
.gallery-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.gallery-img:hover img { transform: scale(1.04); }
.gallery-img.wide { grid-column: span 2; }
.gallery-img.wide img { height: 220px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  nav.navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 1rem 2rem 2rem;
    box-shadow: 0 12px 36px rgba(0,0,0,0.35);
    gap: 0;
  }

  nav.navbar.active { display: flex; }

  nav.navbar a { font-size: 1.05rem; padding: 0.85rem 1rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07); margin: 0 -1rem; }
  nav.navbar a:last-child { border-bottom: none; }
  nav.navbar a.active {
    color: white;
    background: rgba(255,255,255,0.07);
    border-left: 3px solid var(--gold-light);
    padding-left: calc(1rem - 3px);
    font-weight: 600;
  }
  nav a.nav-cta {
    display: block;
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
    border-radius: 8px !important;
    padding: 0.75rem 1.2rem !important;
    border-bottom: none !important;
  }

  #menu-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { order: -1; }

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

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

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-img.wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .hero { height: 80vh; }
  .trust-bar-inner { gap: 1.2rem; justify-content: flex-start; }
  .trust-item { font-size: 0.82rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .site-title { display: none; }
  .owner-card { flex-direction: column; }
  .photo-gallery { grid-template-columns: 1fr; }
  .gallery-img.wide { grid-column: span 1; }
  .section { padding: 3.5rem 1.25rem; }
  .cta-section { padding: 3.5rem 1.25rem; }
  .hero-content { padding: 0 1.25rem; }
  .hero p { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* === INQUIRY FORM === */
.inquiry-form { display: flex; flex-direction: column; gap: 1.1rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-100);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  background: white;
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.25rem;
}
