/* ============================================================
   StarCoffee — Main Stylesheet
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --brown:    #3D2314;
  --cream:    #FFF8F0;
  --caramel:  #C4883A;
  --gold:     #E8B86D;
  --brown-mid: #5C3520;
  --cream-dark: #F5EAD8;
  --text-dark: #1A0E08;
  --text-mid:  #5C4033;
  --text-light: #8C6A50;

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

  --nav-h: 76px;
  --section-pad: 100px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(61,35,20,.08);
  --shadow-md: 0 8px 32px rgba(61,35,20,.14);
  --shadow-lg: 0 20px 60px rgba(61,35,20,.22);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

p  { color: var(--text-mid); font-size: 1.05rem; }

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

.section-heading { margin-bottom: 1rem; }
.section-subtext  { max-width: 520px; color: var(--text-mid); }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--cream  { background-color: var(--cream); }
.section--brown  { background-color: var(--brown); }
.section--dark   { background-color: #2B1509; }
.section--cream-dark { background-color: var(--cream-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--caramel);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,136,58,.35);
}
.btn--primary:hover {
  background: #b37832;
  box-shadow: 0 8px 28px rgba(196,136,58,.45);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn--gold {
  background: var(--gold);
  color: var(--brown);
  box-shadow: 0 4px 20px rgba(232,184,109,.3);
}
.btn--gold:hover {
  background: #dca85a;
  box-shadow: 0 8px 28px rgba(232,184,109,.45);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal--right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(61,35,20,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 0.5rem 1.4rem;
  background: var(--caramel);
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  background: #b37832 !important;
  transform: translateY(-1px);
}
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(61,35,20,.98);
    padding: 2rem 2rem 2.5rem;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
  }
  .nav__links.open a { font-size: 1rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cappuccino-steam.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.42);
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,35,20,.75) 0%,
    rgba(44,22,8,.55) 50%,
    rgba(196,136,58,.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  animation: heroFadeUp 1.1s ease 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: heroFadeUp 1s ease 0.5s both;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  animation: heroFadeUp 1s ease 0.65s both;
}

.hero__title span {
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: heroFadeUp 1s ease 0.8s both;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1s ease 0.95s both;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bounce 2s infinite 2s;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text .section-subtext { margin-bottom: 1.8rem; }

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.about__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about__stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--caramel);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about__badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (max-width: 820px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__image-wrap img { height: 340px; }
  .about__badge { left: 16px; bottom: -20px; }
  .about__stats { gap: 1.5rem; }
}

/* ============================================================
   MENU HIGHLIGHTS
   ============================================================ */
.menu__header {
  text-align: center;
  margin-bottom: 60px;
}

.menu__header .section-subtext {
  margin: 0 auto;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--caramel), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.menu-card:hover::before { transform: scaleX(1); }

.menu-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.menu-card:hover .menu-card__icon {
  background: linear-gradient(135deg, var(--caramel), var(--gold));
}

.menu-card:hover .menu-card__icon svg { color: #fff; }

.menu-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--caramel);
  transition: color var(--transition);
}

.menu-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.menu-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--caramel);
}

.menu-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream-dark);
  color: var(--caramel);
  padding: 4px 10px;
  border-radius: 20px;
}

.menu__cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 820px) {
  .menu__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (min-width: 540px) and (max-width: 820px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

/* ============================================================
   AMBIANCE GALLERY
   ============================================================ */
.ambiance { background: var(--brown); }

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

.ambiance__header h2,
.ambiance__header .section-label { color: var(--gold); }
.ambiance__header .section-subtext { color: rgba(255,248,240,.65); }

.ambiance__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ambiance__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ambiance__item:first-child {
  grid-row: span 2;
}

.ambiance__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.82);
}

.ambiance__item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.ambiance__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,35,20,.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.ambiance__item:hover .ambiance__item-overlay { opacity: 1; }

.ambiance__item-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

@media (max-width: 820px) {
  .ambiance__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .ambiance__item:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 540px) {
  .ambiance__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }
  .ambiance__item:first-child { grid-column: auto; }
}

/* ============================================================
   WHY STARCOFFEE
   ============================================================ */
.why { background: var(--cream-dark); }

.why__header {
  text-align: center;
  margin-bottom: 60px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card__icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }

.testimonials__header {
  text-align: center;
  margin-bottom: 52px;
}

.testimonials__track-wrap {
  overflow: hidden;
  position: relative;
}

.testimonials__track-wrap::before,
.testimonials__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.testimonials__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.testimonials__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 60px 24px;
  scrollbar-width: none;
}
.testimonials__track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 340px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__quote-icon {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  color: var(--cream-dark);
  font-size: 4rem;
  font-family: var(--font-heading);
  line-height: 1;
  font-style: italic;
  user-select: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.testimonial-card__text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--caramel);
  transition: background var(--transition);
  cursor: pointer;
}
.testimonials__dot.active { background: var(--caramel); }

/* ============================================================
   FIND US
   ============================================================ */
.findus { background: var(--brown); color: #fff; }

.findus__header {
  text-align: center;
  margin-bottom: 64px;
}

.findus__header h2 { color: var(--gold); }
.findus__header .section-label { color: var(--caramel); }
.findus__header .section-subtext { color: rgba(255,248,240,.65); margin: 0 auto; }

.findus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.findus__info-group {
  margin-bottom: 2rem;
}

.findus__info-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.findus__info-text {
  color: rgba(255,248,240,.82);
  font-size: 1rem;
  line-height: 1.8;
}

.findus__info-text a {
  color: var(--gold);
  transition: color var(--transition);
}
.findus__info-text a:hover { color: #fff; }

.findus__social {
  display: flex;
  gap: 14px;
  margin-top: 2rem;
}

.findus__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.findus__social a:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: #fff;
  transform: translateY(-3px);
}

.findus__social svg { width: 20px; height: 20px; }

.findus__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.findus__map-placeholder {
  width: 100%;
  height: 360px;
  background: #2B1509;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(196,136,58,.3);
  position: relative;
  overflow: hidden;
}

.findus__map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(196,136,58,.07) 38px,
      rgba(196,136,58,.07) 39px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(196,136,58,.07) 38px,
      rgba(196,136,58,.07) 39px
    );
}

.findus__map-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: var(--caramel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(196,136,58,.2);
}

.findus__map-icon svg { width: 28px; height: 28px; color: #fff; }

.findus__map-text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.findus__map-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.findus__map-text span {
  font-size: 0.85rem;
  color: rgba(255,248,240,.55);
}

@media (max-width: 820px) {
  .findus__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1A0A04;
  color: rgba(255,248,240,.65);
  padding: 60px 0 32px;
}

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

.footer__brand {}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,248,240,.5);
  font-style: italic;
  margin-bottom: 1.4rem;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,248,240,.6);
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--caramel); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,248,240,.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,248,240,.35);
}

.footer__bottom-links {
  display: flex;
  gap: 1.2rem;
}

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,248,240,.35);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--gold); }

@media (max-width: 820px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   DIVIDER ORNAMENT
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  width: fit-content;
}

.divider__line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--caramel));
}
.divider__line--right {
  background: linear-gradient(to left, transparent, var(--caramel));
}
.divider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caramel);
}

/* Brown section dividers */
.divider--light .divider__line {
  background: linear-gradient(to right, transparent, var(--gold));
}
.divider--light .divider__line--right {
  background: linear-gradient(to left, transparent, var(--gold));
}
.divider--light .divider__dot { background: var(--gold); }

/* ============================================================
   HERO STATS BAR
   ============================================================ */
.hero-stats {
  position: relative;
  z-index: 10;
  background: #fff;
  margin-top: -1px;
}

.hero-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid var(--cream-dark);
}

.hero-stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
}
.hero-stat:last-child { border-right: none; }

.hero-stat__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--caramel);
  display: block;
}

.hero-stat__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 540px) {
  .hero-stats__inner { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .hero-stat:last-child { border-bottom: none; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
