/* ============================================
   SOMISOCIALPLAYGROND — COASTAL NORDIC LUXE
   Design System & Complete Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --bg-primary: #F7F4EF;
  --bg-white: #FFFFFF;
  --espresso: #4B3832;
  --terracotta: #C06C52;
  --moss: #6F8F72;
  --stone: #A8A29E;
  --text-primary: #2D2A26;
  --text-secondary: #6B6B6B;
  --text-muted: #9CA3AF;

  /* Gradients */
  --gradient-sunset: linear-gradient(135deg, #C06C52, #E8A87C, #6F8F72);
  --gradient-warm: linear-gradient(135deg, #C06C52, #E8A87C);

  /* Glass */
  --glass-bg: rgba(255,255,255,0.75);
  --glass-border: rgba(0,0,0,0.05);
  --glass-blur: 18px;

  /* Glow */
  --glow-warm: rgba(192,108,82,0.25);
  --glow-moss: rgba(111,143,114,0.2);

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

  /* Spacing */
  --section-pad: 120px;
  --container-max: 1440px;
  --radius-card: 28px;
  --radius-btn: 50px;
  --radius-small: 16px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

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

/* --- HEADER — Floating Coastal Nav --- */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 900px;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-btn);
  padding: 12px 12px 12px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-smooth);
}

.nav-pill:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 30px;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--espresso);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--espresso);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bg-white);
  background: var(--espresso);
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow-warm);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  transition: right 0.4s var(--ease-smooth);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 80px 40px 40px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--espresso);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links li a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.3s;
}

.mobile-nav-links li a:hover {
  color: var(--terracotta);
}

.mobile-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--espresso) !important;
  color: var(--bg-white) !important;
  padding: 14px 32px !important;
  border-radius: var(--radius-btn) !important;
  border: none !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  text-align: center;
}

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

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247,244,239,0.3) 0%,
    rgba(247,244,239,0.1) 30%,
    rgba(75,56,50,0.4) 100%
  );
}

.hero-shimmer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    0deg,
    rgba(192,108,82,0.08) 0%,
    transparent 100%
  );
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  margin-bottom: 100px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-white);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--bg-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.btn:active::after {
  opacity: 1;
}

.btn-primary {
  background: var(--espresso);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--glow-warm);
}

.btn-outline {
  background: transparent;
  color: var(--bg-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

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

.btn-small {
  padding: 10px 24px;
  font-size: 0.8125rem;
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  border-radius: var(--radius-btn);
}

.btn-small:hover {
  background: var(--terracotta);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow-warm);
}

.btn-full {
  width: 100%;
}

/* --- SECTION COMMONS --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

.section-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* --- INTRO SECTION --- */
.section-intro {
  background: var(--bg-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .section-heading {
  text-align: left;
  margin-bottom: 24px;
}

.intro-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.intro-image:hover img {
  transform: scale(1.03);
}

/* --- CAFÉ CARDS --- */
.cafe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.cafe-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-smooth);
  border: 1px solid rgba(0,0,0,0.03);
}

.cafe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.cafe-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.cafe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.cafe-card:hover .cafe-card-image img {
  transform: scale(1.08);
}

.cafe-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--espresso);
  border: 1px solid rgba(255,255,255,0.3);
}

.cafe-card-info {
  padding: 28px;
}

.cafe-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cafe-city {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cafe-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--stone);
}

.cafe-type {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cafe-card-name {
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cafe-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cafe-card-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--bg-primary);
  border-radius: 12px;
}

/* --- EXPERIENCE BLOCKS --- */
.exp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}

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

.exp-block-reverse {
  direction: rtl;
}

.exp-block-reverse > * {
  direction: ltr;
}

.exp-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.exp-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.exp-image:hover img {
  transform: scale(1.03);
}

.exp-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.exp-text .section-tag {
  margin-bottom: 8px;
}

.exp-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.exp-text p:last-child {
  margin-bottom: 0;
}

/* --- MAP SECTION --- */
.section-map {
  background: var(--bg-white);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.map-container {
  position: relative;
}

.map-container iframe {
  display: block;
}

.map-overlay-fallback {
  position: relative;
  display: block;
}

.map-fallback-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(0.7) brightness(1.05);
}

.map-pins {
  position: absolute;
  inset: 0;
}

.map-pin {
  position: absolute;
  cursor: pointer;
  z-index: 5;
}

.pin-dot {
  width: 16px;
  height: 16px;
  background: var(--terracotta);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 0 rgba(192,108,82,0.3); }
  50% { box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 12px rgba(192,108,82,0); }
}

.pin-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.pin-label small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.map-pin:hover .pin-label {
  opacity: 1;
}

/* Full page map */
.map-wrapper-full {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.map-container-full {
  position: relative;
  height: 600px;
}

.map-fallback-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(1.1);
}

.map-pins-full {
  position: absolute;
  inset: 0;
}

.map-pin-full {
  position: absolute;
  cursor: pointer;
  z-index: 5;
}

.pin-dot-full {
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  animation: pinPulse 2s ease-in-out infinite;
  transition: transform 0.3s;
}

.map-pin-full:hover .pin-dot-full {
  transform: scale(1.3);
}

.pin-card {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  padding: 16px 20px;
  border-radius: var(--radius-small);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-smooth);
  transform: translateX(-50%) translateY(8px);
}

.map-pin-full:hover .pin-card {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.pin-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.pin-card p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pin-card a {
  font-size: 0.8125rem;
  color: var(--terracotta);
  font-weight: 500;
}

.pin-card a:hover {
  text-decoration: underline;
}

/* --- CTA SECTION --- */
.section-cta {
  background: var(--bg-white);
}

.cta-block {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-primary);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, var(--glow-warm) 0%, transparent 60%);
  opacity: 0.3;
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, -5%); }
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-block .hero-actions {
  position: relative;
}

.cta-block .btn-outline {
  color: var(--text-primary);
  border-color: var(--stone);
}

.cta-block .btn-outline:hover {
  background: rgba(0,0,0,0.04);
}

/* --- PAGE HERO (Sub-pages) --- */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-small {
  min-height: 55vh;
}

.page-hero-detail {
  min-height: 60vh;
}

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

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

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.page-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--bg-white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--bg-white);
}

/* --- CAFES LIST (Listing page) --- */
.cafes-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.cafe-list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cafe-list-item-reverse {
  direction: rtl;
}

.cafe-list-item-reverse > * {
  direction: ltr;
}

.cafe-list-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.cafe-list-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.cafe-list-item:hover .cafe-list-image img {
  transform: scale(1.04);
}

.cafe-list-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--bg-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  opacity: 0.7;
}

.cafe-list-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cafe-list-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.cafe-specs {
  margin-bottom: 24px;
}

.cafe-specs li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.cafe-specs li strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* --- DETAIL PAGE --- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.detail-main h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  margin-top: 48px;
}

.detail-main h2:first-child {
  margin-top: 0;
}

.detail-main p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.detail-list {
  padding-left: 24px;
  margin-bottom: 16px;
}

.detail-list li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  list-style: disc;
  padding: 4px 0;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.detail-gallery img {
  border-radius: var(--radius-small);
  height: 260px;
  object-fit: cover;
}

.detail-sidebar {
  position: sticky;
  top: 100px;
}

.detail-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  margin-bottom: 24px;
}

.detail-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.detail-specs {
  display: grid;
  gap: 12px;
}

.detail-specs dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}

.detail-specs dd {
  font-size: 0.9375rem;
  color: var(--text-primary);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.detail-specs dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 20px;
}

.sidebar-cafe-list li {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.sidebar-cafe-list li:last-child {
  border-bottom: none;
}

.sidebar-cafe-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.3s;
}

.sidebar-cafe-list a span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
}

.sidebar-cafe-list a:hover {
  color: var(--terracotta);
}

/* --- CITY GRID (Locations) --- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.city-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 320px;
  display: block;
  transition: transform 0.4s var(--ease-smooth);
}

.city-card:hover {
  transform: translateY(-6px);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.city-card:hover img {
  transform: scale(1.06);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,42,38,0.7), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.city-card-overlay h3 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.city-card-overlay span {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-small);
  background: var(--bg-white);
  color: var(--text-primary);
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--glow-warm);
}

.form-group textarea {
  resize: vertical;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.contact-method {
  margin-bottom: 24px;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-method p {
  font-size: 1rem;
  color: var(--text-primary);
}

.contact-method a {
  color: var(--terracotta);
}

.contact-method a:hover {
  text-decoration: underline;
}

/* --- ABOUT --- */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text-wide h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  margin-top: 56px;
}

.about-text-wide h2:first-child {
  margin-top: 0;
}

.about-text-wide p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* --- LEGAL PAGES --- */
.legal-page {
  padding-top: 160px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.8rem;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  list-style: disc;
  padding: 2px 0;
}

.legal-content a {
  color: var(--terracotta);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* --- FOOTER --- */
.footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bg-white);
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
}

.footer-links-grid {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--bg-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
}

.footer-legal {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  max-width: 700px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* --- CURSOR GLOW --- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-warm) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  mix-blend-mode: soft-light;
}

body:hover .cursor-glow {
  opacity: 0.6;
}

/* --- SCROLL REVEAL --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  :root {
    --section-pad: 90px;
  }

  .container {
    padding: 0 32px;
  }

  .detail-grid {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image img {
    height: 360px;
  }

  .cafe-list-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cafe-list-item-reverse {
    direction: ltr;
  }

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

  .detail-sidebar {
    position: static;
  }

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

  .contact-info {
    position: static;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .exp-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .exp-block-reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px;
  }

  .container {
    padding: 0 20px;
  }

  .header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-pill {
    padding: 10px 10px 10px 18px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-content {
    margin-bottom: 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .section-header {
    margin-bottom: 48px;
  }

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

  .cafe-list-image img {
    height: 300px;
  }

  .exp-image img {
    height: 300px;
  }

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

  .city-card {
    height: 240px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery img {
    height: 200px;
  }

  .footer-links-grid {
    flex-direction: column;
    gap: 32px;
  }

  .map-container-full {
    height: 400px;
  }

  .cta-block {
    padding: 48px 24px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 50vh;
  }

  .page-hero-small {
    min-height: 45vh;
  }

  .detail-info-card {
    padding: 24px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* --- Glass shimmer effect --- */
@keyframes glassShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.cafe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

.cafe-card:hover::before {
  opacity: 1;
  animation: glassShimmer 2s ease-in-out;
}

/* --- Water reflection --- */
@keyframes waterReflection {
  0%, 100% { transform: translateX(0) scaleY(1); }
  25% { transform: translateX(2px) scaleY(0.98); }
  50% { transform: translateX(-1px) scaleY(1.02); }
  75% { transform: translateX(1px) scaleY(0.99); }
}

.hero-img {
  animation: waterReflection 12s ease-in-out infinite;
}

/* --- Print styles --- */
@media print {
  .header, .cursor-glow, .mobile-menu, .hero-scroll-indicator, .hero-particles, .hero-shimmer {
    display: none;
  }

  .hero, .page-hero {
    min-height: auto;
    padding: 40px 0;
  }

  .section {
    padding: 40px 0;
  }
}