@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg-primary:    #050e05;
  --bg-secondary:  #081308;
  --bg-card:       rgba(9, 20, 9, 0.85);
  --gold:          #5cb85c;
  --gold-light:    #85d185;
  --gold-dim:      rgba(92, 184, 92, 0.15);
  --teal:          #a8e6a8;
  --teal-dark:     #1a5c1a;
  --cream:         #eef5ee;
  --text:          #d8eed8;
  --text-muted:    #6a8a6a;
  --text-dim:      #3a5a3a;
  --glass:         rgba(255,255,255,0.03);
  --glass-border:  rgba(92,184,92,0.22);
  --nav-h:         78px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    all 0.4s var(--ease);
  --radius:        10px;
  --shadow:        0 20px 60px rgba(0,0,0,0.6);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  font-weight: 700;
}
.accent { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.gold-text {
  background: linear-gradient(135deg, #2d7a2d 0%, #85d185 40%, #5cb85c 60%, #a8e6a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.teal-text { color: var(--teal); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 14, 5, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 108px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 2px;
  color: var(--gold) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
  box-shadow: 0 0 20px rgba(92,184,92,0.4) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(5,14,5,0.99);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 2rem 6%;
  z-index: 990;
  flex-direction: column;
  gap: 0;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.35s var(--ease);
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(92,184,92,0.08);
  transition: color 0.3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); padding-left: 0.5rem; }

/* ============================================================
   LAYOUT & SECTIONS
   ============================================================ */
.section { padding: 7rem 6%; position: relative; }
.section-sm { padding: 4rem 6%; }

.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 5rem; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.section-title { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 0.8rem; }
.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 400;
}

/* Ornamental divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.8rem auto;
  width: fit-content;
}
.divider::before, .divider::after {
  content: '';
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(92,184,92,0.6);
}

/* ============================================================
   GLASS CARDS
   ============================================================ */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(92,184,92,0.5);
  box-shadow: 0 0 40px rgba(92,184,92,0.1), inset 0 0 40px rgba(92,184,92,0.03);
  transform: translateY(-6px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 34px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, #2d7a2d 0%, var(--gold) 40%, var(--gold-light) 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(92,184,92,0.25);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(92,184,92,0.5), 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(232,220,200,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 25px rgba(92,184,92,0.15);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
}
.btn-teal:hover { box-shadow: 0 0 35px rgba(133,209,133,0.4); transform: translateY(-2px); }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, #030d03 0%, var(--bg-secondary) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(92,184,92,0.07) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  animation: fadeInUp 0.9s var(--ease) both;
}
.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-muted);
  animation: fadeInUp 0.9s 0.2s var(--ease) both;
}

/* Geometric deco */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  animation: rotate-slow 20s linear infinite;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(55px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030d03;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 6% 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-logo-img {
  height: 155px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  max-width: 290px;
}
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 0.9rem; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.footer-contact-item .icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(92,184,92,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; }

/* Social */
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(92,184,92,0.25);
  transform: translateY(-2px);
}

/* ============================================================
   ANIMATIONS (KEYFRAMES)
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 6px var(--gold); }
  50%       { opacity: 1;   box-shadow: 0 0 18px var(--gold); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes rotate-reverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes ripple-out {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes water-move {
  0%, 100% { transform: scaleX(1); }
  50%       { transform: scaleX(1.04); }
}
@keyframes scan-line {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(92,184,92,0.03);
  padding: 0.9rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  white-space: nowrap;
  padding: 0 2.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ticker-item span { color: var(--gold); margin: 0 1rem; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #030d03;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/vallam32.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg-img.loaded { transform: scale(1); }

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(92,184,92,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(133,209,133,0.05) 0%, transparent 60%);
  z-index: 2;
}
.hero-water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(4,13,4,0.8) 60%, #030d03 100%);
}
.hero-water::before {
  content: '';
  position: absolute;
  bottom: 40px; left: -10%; right: -10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(133,209,133,0.3), transparent);
  animation: water-move 4s ease-in-out infinite;
}
.hero-water::after {
  content: '';
  position: absolute;
  bottom: 25px; left: -10%; right: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92,184,92,0.2), transparent);
  animation: water-move 6s ease-in-out infinite reverse;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 5%;
}
.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s var(--ease) forwards;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}
.hero-label::before, .hero-label::after {
  content: '— ';
  color: var(--text-dim);
}
.hero-label::after { content: ' —'; }
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}
.hero-title .line-1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
  opacity: 0;
  animation: fadeInUp 0.9s 0.45s var(--ease) forwards;
  line-height: 1;
}
.hero-title .line-2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  margin-left: 0.55em;
  opacity: 0;
  animation: fadeInUp 0.9s 0.65s var(--ease) forwards;
  line-height: 1.2;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s 0.85s var(--ease) forwards;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s 1.05s var(--ease) forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ============================================================
   HOME — FEATURES
   ============================================================ */
.features-section { background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary)); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(92,184,92,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}
.feature-card:nth-child(2) .feature-icon { animation-delay: -1s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: -2s; }
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================
   HOME — STORY
   ============================================================ */
.story-section { background: var(--bg-secondary); }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
.story-text p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.9; }
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.stat-item {
  padding: 1.8rem;
  text-align: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  transition: var(--transition);
}
.stat-item:hover {
  border-color: rgba(92,184,92,0.4);
  box-shadow: 0 0 25px rgba(92,184,92,0.08);
}
.stat-item:nth-child(3) { grid-column: 1 / -1; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.floating-badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 1rem 1.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  animation: float-slow 4s ease-in-out infinite;
}

/* ============================================================
   HOME — MENU TEASER
   ============================================================ */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.dish-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dish-category {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}
.dish-card h3 {
  font-size: 1.05rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.4;
}
.dish-card p { color: var(--text-muted); font-size: 0.85rem; flex: 1; }
.dish-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.dish-link:hover { gap: 0.7rem; color: var(--gold-light); }

/* ============================================================
   HOME — QUOTE
   ============================================================ */
.quote-section {
  padding: 8rem 6%;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(92,184,92,0.05) 0%, transparent 70%),
              var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.quote-symbol {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 1rem;
}
.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 2rem;
}
.quote-author {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   HOME — CTA BAND
   ============================================================ */
.cta-section { background: var(--bg-secondary); }
.cta-inner {
  padding: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-inner p { color: var(--text-muted); }
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 4rem;
}
.timeline-content {
  padding: 2rem;
}
.timeline-item:nth-child(odd) .timeline-content:first-child { text-align: right; }
.timeline-item:nth-child(even) .timeline-content:first-child { order: 3; }
.timeline-item:nth-child(even) .timeline-dot { order: 2; }
.timeline-item:nth-child(even) .timeline-content:last-child { order: 1; }
.timeline-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.dot-inner {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92,184,92,0.15), 0 0 20px rgba(92,184,92,0.4);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--gold-light); }
.timeline-content p { color: var(--text-muted); font-size: 0.9rem; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2.5rem 2rem;
  border-left: 2px solid var(--glass-border);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); }
.value-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.team-card {
  padding: 2.5rem;
  text-align: center;
}
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 2px solid var(--glass-border);
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-card span { font-size: 0.8rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(5,14,5,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 6%;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav { -webkit-overflow-scrolling: touch; }
.menu-tabs {
  display: flex;
  gap: 0;
  width: max-content;
}
.menu-tab {
  padding: 1.1rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  background: none;
}
.menu-tab:hover { color: var(--gold); }
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-category { margin-bottom: 4rem; scroll-margin-top: calc(var(--nav-h) + 60px); }
.menu-category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}
.cat-icon { font-size: 1.5rem; }
.menu-category-title h2 { font-size: 1.5rem; }
.cat-count {
  font-size: 0.7rem;
  color: var(--gold);
  border: 1px solid rgba(92,184,92,0.3);
  border-radius: 20px;
  padding: 2px 10px;
  letter-spacing: 1px;
  margin-left: auto;
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.menu-item {
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  transition: var(--transition);
  cursor: default;
}
.menu-item:hover {
  border-color: rgba(92,184,92,0.4);
  background: rgba(92,184,92,0.03);
  transform: translateX(4px);
}
.menu-item-name { font-size: 0.93rem; font-weight: 500; color: var(--text); }
.menu-item-veg {
  width: 14px; height: 14px;
  border: 1.5px solid #2ecc71;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-item-veg::after {
  content: '';
  width: 7px; height: 7px;
  background: #2ecc71;
  border-radius: 50%;
}
.menu-item-nonveg {
  width: 14px; height: 14px;
  border: 1.5px solid #e74c3c;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-item-nonveg::after {
  content: '';
  width: 7px; height: 7px;
  background: #e74c3c;
  border-radius: 50%;
}

/* Menu hero note */
.menu-note {
  background: rgba(92,184,92,0.05);
  border: 1px solid rgba(92,184,92,0.2);
  border-radius: 8px;
  padding: 1.2rem 1.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}
.menu-note strong { color: var(--gold); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Raleway', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(92,184,92,0.05);
}

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-thumb {
  width: 100%;
  display: block;
  aspect-ratio: auto;
  transition: transform 0.5s var(--ease);
}
.gallery-item .g-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,13,26,0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .g-thumb-img { transform: scale(1.07); }
.gallery-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
}

/* Gallery placeholder (visual cards) */
.g-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 3rem;
  border-radius: 8px;
  transition: transform 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.g-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(0.7);
  z-index: 0;
}
.g-placeholder-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.g-placeholder span.g-emoji { font-size: 2.5rem; display: block; }
.g-placeholder span.g-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}
.gallery-item:hover .g-placeholder { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3,13,3,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 80vw; max-height: 85vh; }
.lightbox-close {
  position: fixed;
  top: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form { }
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  color: var(--text);
  font-size: 0.93rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  font-family: 'Raleway', sans-serif;
}
.form-group textarea { height: 140px; resize: none; }
.form-group select { appearance: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(92,184,92,0.08);
}
.form-group label {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.form-group textarea ~ label { top: 1.2rem; transform: none; }
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.7rem;
  color: var(--gold);
  background: var(--bg-primary);
  padding: 0 0.4rem;
  letter-spacing: 1px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 1.1rem;
  margin-top: 0.5rem;
}

.contact-info { }
.info-card {
  padding: 2rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(92,184,92,0.05);
}
.info-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.info-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.info-card a { color: var(--text-muted); transition: color 0.3s; }
.info-card a:hover { color: var(--gold); }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  font-size: 0.9rem;
}
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text); font-weight: 500; }

.map-embed {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: 1.2rem;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.85) contrast(1.1);
}

/* ============================================================
   LAYOUT CLASSES (for inline grids converted to classes)
   ============================================================ */

/* Experience strip — home page */
.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}
.exp-cell {
  padding: 2.5rem;
  text-align: center;
  background: var(--bg-secondary);
}
.exp-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.exp-title { font-size: 1rem; color: var(--gold-light); margin-bottom: 0.4rem; font-family: 'Playfair Display', serif; font-weight: 600; }
.exp-desc  { color: var(--text-muted); font-size: 0.82rem; }

/* About boat visual card */
.about-boat-card {
  background: linear-gradient(135deg, var(--teal-dark), #0a2a28);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  border: 1px solid var(--glass-border);
}

/* About intro 2-col */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* About stats bar */
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   RESPONSIVE — COMPREHENSIVE
   ============================================================ */

/* ---- 1200px: Large tablets / small laptops ---- */
@media (max-width: 1200px) {
  .dishes-grid     { grid-template-columns: repeat(2, 1fr); }
  .story-inner     { gap: 3rem; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { gap: 3rem; }
}

/* ---- 1024px: Tablet landscape ---- */
@media (max-width: 1024px) {
  .experience-strip   { grid-template-columns: repeat(2, 1fr); }
  .about-stats-bar    { grid-template-columns: repeat(2, 1fr); }
  .contact-grid       { gap: 2.5rem; }
  .story-inner        { gap: 2.5rem; }
}

/* ---- 900px: Tablet portrait — hamburger activates ---- */
@media (max-width: 900px) {
  /* Navigation */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Home */
  .features-grid    { grid-template-columns: 1fr; }
  .story-inner      { grid-template-columns: 1fr; }
  .story-stats      { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { grid-column: auto; }

  /* About */
  .about-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats-bar  { grid-template-columns: repeat(2, 1fr); }
  .values-grid      { grid-template-columns: 1fr 1fr; }
  .team-grid        { grid-template-columns: 1fr; max-width: 320px; }

  /* Timeline — collapse to single right column */
  .timeline::before { left: 20px; transform: none; }
  .timeline-item    { grid-template-columns: 0 48px 1fr; }
  .timeline-item:nth-child(even) .timeline-content { order: unset; }
  .timeline-item:nth-child(even) .timeline-dot     { order: unset; }
  .timeline-content:first-child  { display: none; }
  .timeline-item:nth-child(odd)  .timeline-content:first-child { display: none; }
  .timeline-content { text-align: left !important; }

  /* Menu */
  .menu-items-grid  { grid-template-columns: 1fr; }

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

  /* Gallery */
  .gallery-grid     { columns: 2; column-gap: 0.75rem; }

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

/* ---- 768px: Large phones / small tablets ---- */
@media (max-width: 768px) {
  .section          { padding: 5rem 5%; }
  .section-header   { margin-bottom: 3rem; }
  .page-hero        { min-height: 42vh; }

  /* Hero */
  .hero-label::before,
  .hero-label::after { content: none; }
  .hero-tagline      { font-size: 1.1rem; }

  /* Experience strip: 2×2 */
  .experience-strip  { grid-template-columns: repeat(2, 1fr); border-radius: 8px; }

  /* Dishes */
  .dishes-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Quote */
  .quote-section     { padding: 6rem 5%; }

  /* CTA */
  .cta-inner         { padding: 3rem 2rem; }
  .cta-buttons       { flex-direction: column; align-items: center; }
  .cta-buttons .btn  { width: 100%; max-width: 320px; justify-content: center; }

  /* Story stats */
  .story-stats       { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { grid-column: 1 / -1; }
}

/* ---- 640px: Phones ---- */
@media (max-width: 640px) {
  :root             { --nav-h: 62px; }
  .section          { padding: 4rem 4.5%; }
  .section-title    { font-size: clamp(1.8rem, 8vw, 2.8rem); }

  /* Hero */
  .hero-title .line-1 { letter-spacing: 0.1em; }
  .hero-title .line-2 { letter-spacing: 0.3em; margin-left: 0.3em; }
  .hero-label         { font-size: 0.85rem; letter-spacing: 2px; }
  .hero-tagline       { font-size: 1rem; }
  .hero-buttons       { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-buttons .btn  { width: 100%; max-width: 300px; justify-content: center; }
  .hero-scroll        { display: none; }

  /* Page hero */
  .page-hero          { min-height: 38vh; }
  .page-hero h1       { letter-spacing: 0.06em; }

  /* Ticker */
  .ticker-item        { font-size: 0.68rem; letter-spacing: 2px; padding: 0 1.5rem; }

  /* Features */
  .feature-card       { padding: 2rem 1.5rem; }

  /* Dishes */
  .dishes-grid        { grid-template-columns: 1fr; }

  /* Story stats */
  .story-stats        { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { grid-column: 1 / -1; }
  .floating-badge     { font-size: 0.82rem; padding: 0.85rem 1.2rem; }

  /* About */
  .values-grid        { grid-template-columns: 1fr; }
  .about-stats-bar    { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Experience strip: 2×2 */
  .experience-strip   { grid-template-columns: repeat(2, 1fr); }
  .exp-cell           { padding: 1.8rem 1.2rem; }

  /* Quote */
  .quote-symbol       { font-size: 5rem; }
  .quote-section blockquote { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* CTA */
  .cta-inner          { padding: 2.5rem 1.5rem; }
  .cta-buttons        { flex-direction: column; align-items: center; }
  .cta-buttons .btn   { width: 100%; max-width: 300px; justify-content: center; }

  /* Menu */
  .menu-tab           { padding: 1rem 1rem; font-size: 0.68rem; }
  .menu-note          { font-size: 0.82rem; text-align: left; }
  .menu-category-title h2 { font-size: 1.2rem; }

  /* Gallery */
  .gallery-grid       { columns: 1; }
  .gallery-filter     { gap: 0.5rem; }
  .filter-btn         { padding: 7px 14px; font-size: 0.68rem; }

  /* Contact */
  .booking-steps      { grid-template-columns: 1fr !important; }
  .info-card          { padding: 1.2rem 1.5rem; }
  .hours-grid         { gap: 0.3rem 1rem; }
  .map-embed          { height: 260px; }

  /* Footer */
  .footer             { padding: 4rem 4.5% 2rem; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-logo-img    { height: 130px; }

  /* Buttons */
  .btn                { padding: 13px 26px; }
}

/* ---- 480px: Small phones ---- */
@media (max-width: 480px) {
  /* About boat card */
  .about-boat-card { padding: 2.5rem 1.5rem; }
  .about-boat-card p:first-of-type { font-size: 1.3rem !important; }
  :root             { --nav-h: 58px; }
  .section          { padding: 3.5rem 4%; }
  .nav-logo-img     { height: 90px; }

  /* Hero */
  .hero-title .line-1 { letter-spacing: 0.07em; }

  /* About stats */
  .about-stats-bar    { grid-template-columns: 1fr 1fr; }

  /* Experience strip: single column */
  .experience-strip   { grid-template-columns: 1fr; border-radius: 8px; }
  .exp-cell           { border-right: none !important; border-bottom: 1px solid var(--glass-border); }
  .exp-cell:last-child { border-bottom: none; }

  /* Story stats */
  .story-stats        { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Glass cards */
  .glass-card         { padding: 1.5rem; }
  .feature-card       { padding: 1.8rem 1.2rem; }

  /* Timeline */
  .timeline-item      { gap: 0.5rem; }
  .timeline-year      { font-size: 2rem; }

  /* Phone hero */
  .phone-hero .big-phone { font-size: clamp(1.5rem, 7vw, 2.2rem) !important; }
  .call-ring          { width: 80px; height: 80px; }
  .call-ring-icon     { width: 80px; height: 80px; font-size: 2rem; }

  /* Footer */
  .social-link        { width: 36px; height: 36px; font-size: 0.7rem; }
}

/* ---- 380px: Very small phones ---- */
@media (max-width: 380px) {
  :root             { --nav-h: 54px; }
  .section          { padding: 3rem 4%; }
  .nav-logo-img     { height: 80px; }

  /* Hero */
  .hero-title .line-1 { font-size: clamp(3rem, 20vw, 4.5rem); letter-spacing: 0.06em; }
  .hero-label         { font-size: 0.75rem; }

  /* Page hero */
  .page-hero h1       { font-size: clamp(2.8rem, 16vw, 4rem); letter-spacing: 0.05em; }

  /* About stats: single col */
  .about-stats-bar    { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Stat numbers */
  .stat-num           { font-size: 2.2rem; }

  /* Menu tabs */
  .menu-tab           { padding: 0.9rem 0.8rem; font-size: 0.63rem; }

  /* Buttons */
  .btn                { padding: 12px 20px; font-size: 0.72rem; }
}
