/* ============================================
   PEBBIBOUNCEFLW — MALTA COASTAL LUXE
   Design System & Global Styles
   ============================================ */

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

:root {
  --primary-bg: #0a0f1c;
  --secondary-bg: #111827;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.18);
  --glass-blur: 22px;
  --sunset-orange: #fb923c;
  --ocean-blue: #38bdf8;
  --golden-hour: #facc15;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --max-width: 1280px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-height: 80px;
  --nav-height-scrolled: 64px;
}

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

body {
  font-family: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 820px;
}

.section-pad {
  padding: 120px 0;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 16px;
}

h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

em {
  font-style: italic;
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-hour));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-hour));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

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

.section-header p {
  font-size: 1.15rem;
}

.inline-link {
  color: var(--sunset-orange);
  font-weight: 500;
  display: inline-block;
  margin-top: 8px;
  position: relative;
}

.inline-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-hour));
  transition: width 0.3s ease;
}

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

/* --- BUTTONS --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.primary-cta {
  background: linear-gradient(135deg, var(--sunset-orange), #f97316);
  color: #fff;
  box-shadow: 0 4px 24px rgba(251, 146, 60, 0.3);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(251, 146, 60, 0.45);
}

.primary-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.primary-cta:hover::before {
  left: 100%;
}

.secondary-cta {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.secondary-cta:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.3);
}

.full-width {
  width: 100%;
}

/* --- GLASS CARD --- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 32px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.glass-nav.scrolled {
  padding: 12px 0;
  height: var(--nav-height-scrolled);
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-hour));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-hour));
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.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;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 28, 0.4) 0%,
    rgba(10, 15, 28, 0.6) 40%,
    rgba(10, 15, 28, 0.85) 80%,
    rgba(10, 15, 28, 1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-orange);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(251, 146, 60, 0.3);
  border-radius: 50px;
  background: rgba(251, 146, 60, 0.08);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-hour));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--sunset-orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* --- PAGE HERO --- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 15, 28, 0.5) 0%,
    rgba(10, 15, 28, 0.7) 50%,
    rgba(10, 15, 28, 0.95) 100%
  );
}

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

.page-hero-content h1 {
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.page-hero-sm {
  min-height: 35vh;
  position: relative;
  padding-top: var(--nav-height);
}

.page-hero-sm .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.intro-text h2 {
  margin-bottom: 32px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.85;
}

.img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.img-stack img {
  border-radius: var(--radius);
  height: 320px;
  object-fit: cover;
  transition: var(--transition);
}

.img-stack img:first-child {
  transform: translateY(40px);
}

.img-stack img:hover {
  transform: scale(1.02);
}

.img-stack img:first-child:hover {
  transform: translateY(40px) scale(1.02);
}

/* ============================================
   CAFES SECTION — HOME
   ============================================ */
.cafe-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.cafe-featured-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.cafe-featured-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cafe-featured-img:hover img {
  transform: scale(1.03);
}

.cafe-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--sunset-orange), #f97316);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
}

.cafe-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(251,146,60,0.15), rgba(250,204,21,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.cafe-featured-content .cafe-location {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cafe-featured-content h3 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.cafe-desc {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.cafe-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.cafe-highlights span {
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- CAFE CARDS GRID --- */
.cafe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cafe-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: var(--transition);
}

.cafe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cafe-card-img {
  position: relative;
  overflow: hidden;
}

.cafe-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.cafe-number-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 28, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sunset-orange);
}

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

.cafe-card-content .cafe-location {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cafe-card-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.cafe-card-content .cafe-highlights {
  margin-bottom: 24px;
}

/* ============================================
   CAFES PAGE — DETAIL BLOCKS
   ============================================ */
.cafe-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cafe-detail-block:last-child {
  border-bottom: none;
}

.cafe-detail-block.reverse {
  direction: rtl;
}

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

.cafe-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.cafe-detail-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cafe-detail-img:hover img {
  transform: scale(1.02);
}

.cafe-detail-content .cafe-number {
  font-size: 5rem;
}

.cafe-detail-content h2 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.cafe-detail-content .cafe-location {
  margin-bottom: 24px;
}

.cafe-detail-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.cafe-detail-info {
  margin: 32px 0;
  padding: 24px;
}

.cafe-detail-info div {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cafe-detail-info div + div {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================
   PARALLAX BREAK
   ============================================ */
.parallax-break {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-break > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 28, 0.7);
  z-index: 1;
}

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

.parallax-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.parallax-content p {
  font-size: 1.15rem;
  margin-bottom: 32px;
}

/* ============================================
   BLOG PREVIEW — HOME
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 146, 60, 0.25);
}

.blog-card-img {
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunset-orange);
  background: rgba(251, 146, 60, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.blog-card-content h4 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-content p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-page-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.blog-page-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.blog-page-card.reverse {
  grid-template-columns: 1.3fr 1fr;
}

.blog-page-card.reverse .blog-page-img {
  order: 2;
}

.blog-page-card.reverse .blog-page-content {
  order: 1;
}

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

.blog-page-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-page-card:hover .blog-page-img img {
  transform: scale(1.03);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-page-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.blog-page-content p {
  font-size: 1.02rem;
  line-height: 1.85;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,28,0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 15, 28, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  backdrop-filter: blur(20px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  color: var(--sunset-orange);
  transform: rotate(90deg);
}

.lightbox-caption {
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

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

.about-block {
  margin-bottom: 64px;
}

.about-block h2 {
  margin-bottom: 28px;
}

.about-block p {
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-list {
  margin: 20px 0;
  padding-left: 0;
}

.about-list li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-hour));
}

.about-image-full {
  margin: 48px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.about-grid-item h3 {
  background: linear-gradient(135deg, var(--sunset-orange), var(--golden-hour));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-grid-item p {
  font-size: 0.98rem;
}

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

.contact-form-wrap {
  padding: 40px;
}

.contact-form-wrap h2 {
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sunset-orange);
  background: rgba(251, 146, 60, 0.04);
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--secondary-bg);
  color: var(--text-primary);
}

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

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

.contact-info-block {
  padding: 32px;
}

.contact-info-block h3 {
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
}

.info-item + .info-item {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-map {
  padding: 24px;
}

.contact-map h3 {
  margin-bottom: 16px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-box {
  text-align: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(251,146,60,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(56,189,248,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  margin-bottom: 16px;
}

.newsletter-content p {
  max-width: 500px;
  margin: 0 auto 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--sunset-orange);
}

.newsletter-form .cta-btn {
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--sunset-orange);
}

.faq-icon {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--sunset-orange);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 32px 24px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
}

.faq-answer a {
  color: var(--sunset-orange);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 24px;
}

.legal-content p {
  font-size: 1.02rem;
  line-height: 1.85;
}

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

.legal-content ul li {
  position: relative;
  padding: 6px 0;
  padding-left: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sunset-orange);
}

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

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--secondary-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(251, 146, 60, 0.15);
  border-color: var(--sunset-orange);
  color: var(--sunset-orange);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--sunset-orange);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}

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

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,146,60,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cursor-glow.visible {
  opacity: 1;
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .section-pad {
    padding: 80px 0;
  }

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

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

  .cafe-featured-img img {
    height: 360px;
  }

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

  .cafe-detail-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }

  .cafe-detail-block.reverse {
    direction: ltr;
  }

  .cafe-detail-img {
    position: relative;
    top: 0;
  }

  .cafe-detail-img img {
    height: 360px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-page-card,
  .blog-page-card.reverse {
    grid-template-columns: 1fr;
  }

  .blog-page-card.reverse .blog-page-img,
  .blog-page-card.reverse .blog-page-content {
    order: unset;
  }

  .blog-page-img img {
    height: 300px;
  }

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
    --nav-height-scrolled: 60px;
  }

  .section-pad {
    padding: 60px 0;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 15, 28, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 60px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
  }

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

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

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 28px;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .img-stack {
    grid-template-columns: 1fr;
  }

  .img-stack img {
    height: 240px;
  }

  .img-stack img:first-child {
    transform: none;
  }

  .img-stack img:first-child:hover {
    transform: scale(1.02);
  }

  .cafe-featured-content h3 {
    font-size: 1.8rem;
  }

  .newsletter-box {
    padding: 48px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-tag {
    font-size: 0.72rem;
  }

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

  .cafe-number {
    font-size: 3rem;
  }

  .cafe-detail-content .cafe-number {
    font-size: 3.5rem;
  }

  .cafe-detail-content h2 {
    font-size: 1.8rem;
  }

  .page-hero {
    min-height: 40vh;
  }
}

/* --- PRINT --- */
@media print {
  .glass-nav, .cursor-glow, .scroll-indicator {
    display: none !important;
  }

  body {
    background: #fff;
    color: #333;
  }
}