/* ==========================================================================
   SHIMA CAFE - Premium Strategic & SEO Landing Page Design System
   ========================================================================== */

/* Typography & Icons Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Custom Variables */
:root {
  /* Colors */
  --primary-forest: #0F2E20;
  --primary-forest-rgb: 15, 46, 32;
  --secondary-turquoise: #0E8388;
  --secondary-turquoise-rgb: 14, 131, 136;
  --accent-gold: #C5A880;
  --accent-honey: #D4AF37;
  
  --bg-sand: #FCFAF6;
  --bg-cream: #F4EFE6;
  --bg-card: #FFFFFF;
  
  --text-dark: #1C2721;
  --text-muted: #53635B;
  --text-light: #FCFAF6;
  
  /* Border Radii */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Box Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 46, 32, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 46, 32, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Font Families */
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Container Sizes */
  --container-max-width: 1200px;
  
  /* Transition timings */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-forest);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-cream {
  background-color: var(--bg-cream);
}

.section-forest {
  background-color: var(--primary-forest);
  color: var(--text-light);
}

.section-forest h2 {
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.section-subtitle {
  font-family: var(--font-serif);
  color: var(--secondary-turquoise);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-turquoise);
  margin: 0.75rem auto 0;
  border-radius: var(--radius-full);
}

.section-forest .section-title::after {
  background-color: var(--accent-gold);
}

/* Flex / Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Custom CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--secondary-turquoise);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(14, 131, 136, 0.3);
}

.btn-primary:hover {
  background-color: #0b686c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 131, 136, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-forest);
  border: 2px solid var(--primary-forest);
}

.btn-secondary:hover {
  background-color: var(--primary-forest);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--primary-forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-accent {
  background-color: var(--accent-honey);
  color: var(--primary-forest);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.btn-accent:hover {
  background-color: #bf9d2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

/* Glassmorphism Class */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
  background: rgba(15, 46, 32, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Micro-animations */
.hover-lift {
  transition: var(--transition-smooth);
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 0.75rem 0;
  background: rgba(252, 250, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(152, 172, 163, 0.05);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .logo,
.header.scrolled .nav-link,
.header.scrolled .menu-toggle {
  color: var(--primary-forest);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.logo-leaf {
  color: var(--secondary-turquoise);
  animation: sway 3s ease-in-out infinite alternate;
}

.nav-menu {
  color: #FCFAF6;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  padding: 0.25rem 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-turquoise);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-sand);
  z-index: 1001;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: var(--transition-smooth);
}

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

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-forest);
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-forest);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 46, 32, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  background-image: linear-gradient(rgba(15, 46, 32, 0.65), rgba(15, 46, 32, 0.35)), url('assets/hero_background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg-sand), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
  z-index: 10;
  padding: 0 1rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-desc {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  color: rgba(252, 250, 246, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  flex-wrap: wrap;
}

.hero-ctas .btn {
  min-width: 170px;
}

/* ==========================================================================
   AI-Ready Featured Snippet Introduction
   ========================================================================== */
.intro-section {
  padding: 6rem 0;
  background-color: var(--bg-sand);
  border-bottom: 1px solid rgba(15, 46, 32, 0.05);
}

.intro-box {
  background-color: var(--bg-cream);
  padding: 3rem 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--secondary-turquoise);
  position: relative;
}

.intro-box p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

.intro-box strong {
  color: var(--primary-forest);
  font-weight: 600;
}

.intro-badge {
  position: absolute;
  top: -15px;
  left: 3rem;
  background-color: var(--primary-forest);
  color: var(--text-light);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   What Makes Shima Cafe Different
   ========================================================================== */
.diff-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diff-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 600;
  color: var(--secondary-turquoise);
}

.diff-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.diff-image-wrapper {
  position: relative;
}

.diff-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.diff-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background-color: var(--primary-forest);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 250px;
}

.diff-image-badge h4 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.diff-image-badge p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Menu Highlights Section
   ========================================================================== */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid rgba(15, 46, 32, 0.1);
  color: var(--text-muted);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-forest);
  color: var(--text-light);
  border-color: var(--primary-forest);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-bottom: 4rem;
}

.menu-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem;
  border: 1px solid rgba(15, 46, 32, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary-turquoise);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

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

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

.menu-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(14, 131, 136, 0.1);
  color: var(--secondary-turquoise);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.tag-vegan {
  background-color: #E2F0D9;
  color: #385723;
}

.tag-gf {
  background-color: #FCE4D6;
  color: #C65911;
}

.tag-organic {
  background-color: #E1F5FE;
  color: #0288D1;
}

.tag-sugarfree {
  background-color: #FFF2CC;
  color: #7F6000;
}

.menu-section-footer {
  text-align: center;
}

/* ==========================================================================
   Space & Experience Section
   ========================================================================== */
.space-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.space-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.space-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.amenity-icon {
  width: 42px;
  height: 42px;
  background-color: rgba(14, 131, 136, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-turquoise);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.amenity-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.amenity-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

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

.space-img-large {
  grid-column: span 2;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 280px;
  object-fit: cover;
  width: 100%;
}

.space-img-small-1 {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.space-img-small-2 {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: 180px;
  object-fit: cover;
  width: 100%;
}

/* ==========================================================================
   Sustainability Section
   ========================================================================== */
.sust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.sust-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.sust-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.sust-card-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.sust-card h3 {
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.sust-card p {
  font-size: 0.95rem;
  color: rgba(252, 250, 246, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Who Is Shima Cafe For
   ========================================================================== */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.persona-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 46, 32, 0.03);
  transition: var(--transition-smooth);
}

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

.persona-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

.persona-purple {
  background-color: rgba(103, 58, 183, 0.08);
  color: #673AB7;
}

.persona-teal {
  background-color: rgba(14, 131, 136, 0.08);
  color: var(--secondary-turquoise);
}

.persona-orange {
  background-color: rgba(255, 112, 67, 0.08);
  color: #FF7043;
}

.persona-green {
  background-color: rgba(76, 175, 80, 0.08);
  color: #4CAF50;
}

.persona-red {
  background-color: rgba(244, 67, 54, 0.08);
  color: #F44336;
}

.persona-blue {
  background-color: rgba(33, 150, 243, 0.08);
  color: #2196F3;
}

.persona-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.persona-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Serving Tokyo & Greater Metropolitan Area
   ========================================================================== */
.local-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: stretch;
}

.location-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loc-btn {
  background-color: var(--bg-card);
  border: 1px solid rgba(15, 46, 32, 0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loc-btn:hover {
  border-color: var(--secondary-turquoise);
  box-shadow: var(--shadow-sm);
}

.loc-btn.active {
  border-color: var(--primary-forest);
  background-color: var(--primary-forest);
  color: var(--text-light);
}

.loc-btn h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  transition: var(--transition-fast);
}

.loc-btn.active h3 {
  color: var(--text-light);
}

.loc-btn p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  transition: var(--transition-fast);
}

.loc-btn.active p {
  color: rgba(255, 255, 255, 0.8);
}

.loc-btn-arrow {
  font-size: 1.2rem;
  color: var(--secondary-turquoise);
  transition: var(--transition-smooth);
}

.loc-btn.active .loc-btn-arrow {
  color: var(--accent-gold);
  transform: translateX(5px);
}

/* Map Display Area */
.map-container {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  border: 1px solid rgba(15, 46, 32, 0.05);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map-visual {
  width: 100%;
  height: 300px;
  background-color: #E8ECE9;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-pin {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.map-pin circle.pulse {
  animation: mapPulse 2s infinite;
  transform-origin: center;
}

.map-pin:hover circle {
  fill: var(--primary-forest);
}

.location-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-details {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.loc-details.active {
  display: block;
}

.loc-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.loc-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.loc-meta-item {
  display: flex;
  gap: 0.75rem;
}

.loc-meta-icon {
  color: var(--secondary-turquoise);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.loc-meta-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.loc-meta-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.loc-nav-ctas {
  display: flex;
  gap: 1rem;
}

/* ==========================================================================
   FAQ Section (Accordion Details/Summary)
   ========================================================================== */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 46, 32, 0.04);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 131, 136, 0.15);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-forest);
  transition: var(--transition-fast);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
}

.faq-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(14, 131, 136, 0.08);
  border-radius: 50%;
  color: var(--secondary-turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--secondary-turquoise);
}

.faq-item.active .faq-question {
  color: var(--secondary-turquoise);
}

.faq-item.active .faq-icon {
  background-color: var(--secondary-turquoise);
  color: var(--text-light);
  transform: rotate(180deg);
}

/* ==========================================================================
   Final Conversion (CTA)
   ========================================================================== */
.final-cta {
  background-image: linear-gradient(135deg, var(--primary-forest) 0%, #081b12 100%);
  border-radius: var(--radius-lg);
  padding: 6rem 4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 131, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.final-cta p {
  color: rgba(252, 250, 246, 0.85);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-family: var(--font-serif);
  font-style: italic;
}

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

.final-cta-buttons .btn {
  min-width: 170px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #0b1a13;
  color: rgba(252, 250, 246, 0.7);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--secondary-turquoise);
  color: var(--text-light);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a:hover {
  color: var(--secondary-turquoise);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.footer-contact-icon {
  color: var(--secondary-turquoise);
  margin-top: 0.2rem;
}

.footer-contact-item a:hover {
  color: var(--secondary-turquoise);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary-turquoise);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sway {
  from { transform: rotate(-5deg); }
  to { transform: rotate(5deg); }
}

@keyframes mapPulse {
  0% {
    r: 6px;
    opacity: 1;
  }
  100% {
    r: 16px;
    opacity: 0;
  }
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .grid-2 {
    gap: 2.5rem;
  }
  .space-grid {
    gap: 3rem;
  }
  .local-grid {
    gap: 2.5rem;
  }
  .diff-image {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .space-grid {
    grid-template-columns: 1fr;
  }
  .local-grid {
    grid-template-columns: 1fr;
  }
  .map-container {
    order: -1;
  }
  .location-selector {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .loc-btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .diff-image-wrapper {
    order: -1;
  }
  .diff-image-badge {
    right: 0;
    bottom: -1rem;
    max-width: calc(100% - 2rem);
    margin: 0 1rem;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 1.2rem;
  }
  .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .intro-box {
    padding: 2.5rem 2rem;
  }
  .intro-badge {
    left: 2rem;
  }
  .sust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .personas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .amenity-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .final-cta {
    padding: 4rem 2rem;
  }
  .final-cta h2 {
    font-size: 2.25rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .location-selector {
    flex-direction: column;
  }
  .loc-btn {
    width: 100%;
  }
  .loc-nav-ctas {
    flex-direction: column;
  }
  .loc-nav-ctas .btn {
    width: 100%;
  }
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  .faq-answer-content {
    padding: 0 1.5rem 1.25rem;
  }
}
