/* =============================================
   LA COSTEL — Shawarma cu Nerv
   Lacoste-inspired premium street food styling
   ============================================= */

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

:root {
  /* Logo palette */
  --dark: #1a1a1a;
  --red: #c23a22;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;

  /* Lacoste-inspired */
  --green: #006940;
  --green-light: #00864f;
  --green-dark: #004d2e;

  /* Accents */
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --gray: #6b6b6b;
  --gray-light: #e0ddd8;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
  --container-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}


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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.accent { color: var(--red); }
.accent-green { color: var(--green); }


/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-red:hover {
  background: #a83220;
  border-color: #a83220;
}


/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.logo img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 4px;
}

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

.logo-text span {
  color: var(--red);
}

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

.nav-links a {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

/* Lacoste-inspired green pill for CTA in nav */
.nav-links .nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 600;
}

.nav-links .nav-cta::after { display: none; }

.nav-links .nav-cta:hover {
  background: var(--green-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.6) 50%,
    rgba(0, 105, 64, 0.3) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero h1 .line-green {
  color: var(--green-light);
}

.hero-desc {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 520px;
  line-height: 1.7;
}

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


/* =============================================
   FEATURED — Crocodile Special
   ============================================= */
.featured {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 105, 64, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.featured-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.featured-image .badge-croc {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.featured-text h2 .accent-green {
  color: var(--green-light);
}

.featured-text .price-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.featured-text p {
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.featured-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.featured-detail {
  text-align: center;
}

.featured-detail .detail-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.featured-detail .detail-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.featured-detail .detail-value {
  color: var(--white);
  font-weight: 600;
}


/* =============================================
   MENU PREVIEW / FULL MENU
   ============================================= */
.menu-section {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-cat-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--gray-light);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
  color: var(--dark);
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

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

.menu-card {
  background: var(--white);
  border-radius: 4px;
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.menu-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 105, 64, 0.08);
}

.menu-card.special {
  border-left: 4px solid var(--green);
  background: linear-gradient(135deg, var(--white) 0%, rgba(0, 105, 64, 0.03) 100%);
}

.menu-card .card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.menu-card .card-content .ingredients {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
}

.menu-card .card-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.menu-card .special-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green);
  color: var(--white);
  padding: 0.25rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-card .new-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: var(--white);
  padding: 0.25rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.about-image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-image .stamp {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-value .value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-value h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about-value p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--gray);
}


/* =============================================
   STATS / NUMBERS BAR
   ============================================= */
.stats-bar {
  background: var(--green);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}


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

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  border-top: 3px solid var(--green);
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-card .reviewer {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card .reviewer span {
  display: block;
  color: var(--gray);
  font-weight: 400;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}


/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}


/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: var(--cream-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid var(--green);
}

.info-card .info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.info-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.info-card a {
  color: var(--green);
  font-weight: 600;
}

.info-card a:hover {
  color: var(--green-dark);
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  height: 250px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-light);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* =============================================
   DESPRE (ABOUT PAGE)
   ============================================= */
.page-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--dark);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--cream);
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Page hero with background image */
.page-hero--image {
  position: relative;
  padding-top: 140px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.95) 100%);
  z-index: 1;
}

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

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-block.reverse .story-image {
  order: 2;
}

.story-block.reverse .story-text {
  order: 1;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.story-text h2 {
  margin-bottom: 1rem;
}

.story-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.timeline-items {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--green);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--cream);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  width: 42%;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 4px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--green);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray);
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--green-light);
  padding-left: 0.3rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: var(--cream);
  font-size: 1.1rem;
  transition: all 0.3s;
  padding: 0;
}

.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  padding-left: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Lacoste-inspired stripe detail */
.green-stripe {
  height: 4px;
  background: var(--green);
  width: 100%;
}


/* =============================================
   LOCATIONS PAGE
   ============================================= */
.locations-section {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

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

.location-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.location-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 105, 64, 0.1);
}

.location-card-header {
  background: var(--dark);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.location-card-header::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 105, 64, 0.2);
  pointer-events: none;
}

.location-card-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.location-card-header .city-label {
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card-body {
  padding: 2rem;
}

.location-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--gray-light);
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.location-detail:last-child {
  margin-bottom: 0;
}

.location-detail .loc-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.location-detail p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.location-detail strong {
  color: var(--dark);
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-card-footer {
  padding: 0 2rem 2rem;
}

.location-card-footer .btn {
  width: 100%;
  text-align: center;
}

/* Coming soon variant */
.location-card.coming-soon {
  opacity: 0.85;
}

.location-card.coming-soon .location-card-header {
  background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
}

.location-card.coming-soon .coming-soon-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.location-card.coming-soon .location-card-body {
  text-align: center;
  padding: 2.5rem 2rem;
}

.location-card.coming-soon .coming-soon-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.location-card.coming-soon .coming-soon-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green);
  margin-top: 1rem;
}

/* Location intro text */
.locations-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Section divider label */
.locations-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.locations-divider span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  white-space: nowrap;
}

.locations-divider::before,
.locations-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}


/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 968px) {
  .featured-grid,
  .about-grid,
  .contact-grid,
  .story-block,
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-block.reverse .story-image,
  .story-block.reverse .story-text {
    order: unset;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.4s ease;
    padding: 2rem;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .about-image img,
  .story-image img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-details {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .timeline-items::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: 100%;
  }
}
