/* ============================================================
   pHuel Cafe -- Design System
   Palette inspired by the cafe wall signage: forest/sage green,
   copper/amber accents, charcoal black, warm cream.
   ============================================================ */

:root {
  --green-900: #1f3327;
  --green-800: #2a4536;
  --green-700: #3a5e46;
  --green-600: #4f7a5b;
  --green-500: #6c9678;
  --green-100: #e7efe6;
  --copper-700: #a85a2c;
  --copper-600: #c17a3d;
  --copper-500: #d99a55;
  --copper-100: #f6e3cb;
  --cream: #faf5ec;
  --cream-2: #f3ecdf;
  --charcoal: #211d18;
  --ink: #2a2520;
  --white: #ffffff;
  --gray-500: #7c7568;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(33, 29, 24, 0.08);
  --shadow-md: 0 12px 30px rgba(33, 29, 24, 0.14);
  --shadow-lg: 0 24px 60px rgba(33, 29, 24, 0.22);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 84px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-700);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--copper-600);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

section {
  padding: 110px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--copper-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(161, 90, 40, 0.35);
}

.btn-primary:hover {
  background: var(--copper-700);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(161, 90, 40, 0.4);
}

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

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

.btn-dark {
  background: var(--green-900);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--copper-700);
  transform: translateY(-3px);
}

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }

/* ---------------- Navbar ---------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(250, 245, 236, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.navbar.scrolled .logo,
.logo.dark {
  color: var(--green-900);
}

.logo .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--copper-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo .logo-mark svg { width: 20px; height: 20px; color: var(--white); }

.logo .accent { color: var(--copper-500); font-style: italic; }
.navbar.scrolled .logo .accent,
.logo.dark .accent { color: var(--copper-600); }

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.navbar.scrolled .nav-links a,
.nav-links.dark a {
  color: var(--ink);
}

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

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

.nav-links a.active {
  color: var(--copper-500);
}

.navbar.scrolled .nav-links a.active,
.nav-links.dark a.active {
  color: var(--copper-700);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
  z-index: 1100;
}

.navbar.scrolled .nav-toggle { background: var(--green-100); }

.nav-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: background 0.3s var(--ease);
}

.navbar.scrolled .nav-toggle span { background: var(--green-900); }

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: inherit;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); background: var(--green-900); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); background: var(--green-900); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn-primary.desktop-only { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 86vw);
  height: 100vh;
  background: var(--cream);
  z-index: 1050;
  padding: 110px 36px 40px;
  transition: right 0.5s var(--ease);
  box-shadow: var(--shadow-lg);
}

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

.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 69, 54, 0.1);
  color: var(--green-900);
}

.mobile-menu a.active { color: var(--copper-700); }

.mobile-menu .btn { margin-top: 30px; width: 100%; justify-content: center; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 13, 0.5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------- Page Hero (inner pages) ---------------- */
.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-bottom: 64px;
  padding-top: 160px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 51, 39, 0.55) 0%, rgba(20, 17, 13, 0.82) 100%);
}

.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
}

.page-hero p {
  margin-top: 16px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* ---------------- Reveal animation ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-grid p { font-size: 0.95rem; }

.footer-grid ul li { margin-bottom: 12px; font-size: 0.95rem; }
.footer-grid ul li a:hover { color: var(--copper-500); }

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { max-width: 280px; margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--copper-600);
  transform: translateY(-3px);
}

.footer-social svg { width: 16px; height: 16px; color: var(--white); }

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--copper-500); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------- Misc shared bits ---------------- */
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--green-100);
  color: var(--green-700);
}

.tag.copper { background: var(--copper-100); color: var(--copper-700); }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-cue .line {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--copper-500);
  animation: scrollDrip 1.8s infinite ease-in-out;
}

@keyframes scrollDrip {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

@media (max-width: 600px), (max-height: 760px) {
  .scroll-cue { display: none; }
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
  box-shadow: var(--shadow-md);
}

.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--copper-600); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   HOME -- Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-900) url("../Images/cafe.jpg") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 26, 21, 0.55) 0%, rgba(18, 22, 18, 0.78) 60%, rgba(15, 18, 15, 0.92) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(193, 122, 61, 0.35), transparent 55%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}

.hero-content { max-width: 740px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--copper-500);
}

.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 38px;
}

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta .item { display: flex; gap: 12px; align-items: flex-start; }
.hero-meta svg { width: 20px; height: 20px; color: var(--copper-500); margin-top: 2px; flex-shrink: 0; }
.hero-meta .label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-meta .value { font-weight: 600; font-size: 0.95rem; }

/* ---------------- About teaser (home) ---------------- */
.about-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 880px) {
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
}

.about-media {
  position: relative;
}

.about-media .frame-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-media .frame-main img { width: 100%; height: 100%; object-fit: cover; }

.about-media .frame-float {
  position: absolute;
  bottom: -36px;
  right: -36px;
  width: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
  aspect-ratio: 1/1;
}

.about-media .frame-float img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 560px) {
  .about-media .frame-float { display: none; }
}

.philosophy-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green-800);
  border-left: 3px solid var(--copper-600);
  padding-left: 22px;
  margin: 26px 0;
}

.about-copy p { color: var(--gray-500); margin-bottom: 18px; }

.about-points {
  display: flex;
  gap: 28px;
  margin: 28px 0 34px;
  flex-wrap: wrap;
}

.about-points .pt { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--green-800); font-size: 0.92rem; }
.about-points svg { width: 18px; height: 18px; color: var(--copper-600); }

/* ---------------- Dish / Menu preview cards ---------------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 920px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dish-grid { grid-template-columns: 1fr; } }

.dish-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

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

.dish-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.dish-card:hover .dish-img img { transform: scale(1.08); }

.dish-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; z-index: 2; }

.dish-body { padding: 22px 24px 26px; }
.dish-body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.dish-body h3 { font-size: 1.18rem; }
.dish-price { font-family: var(--font-display); color: var(--copper-700); font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.dish-body p { color: var(--gray-500); font-size: 0.92rem; }

.dish-grid-cta { text-align: center; margin-top: 50px; }

/* ---------------- Gallery preview strip (home) ---------------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-strip a {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: block;
}

.gallery-strip a img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-strip a:hover img { transform: scale(1.1); }

.gallery-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,17,13,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-strip a:hover::after { opacity: 1; }

.gallery-strip a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-strip a:nth-child(4) { grid-column: span 2; }

@media (max-width: 880px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
  .gallery-strip a:nth-child(1) { grid-column: span 2; }
  .gallery-strip a:nth-child(4) { grid-column: span 1; }
}

/* ---------------- Testimonials ---------------- */
.testimonials {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.testimonials .container { position: relative; }

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(193,122,61,0.25), transparent 50%);
}

.testi-track-wrap { overflow: hidden; }

.testi-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s var(--ease);
}

.testi-slide {
  flex: 1 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

.testi-slide-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.testi-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 26px; }
.testi-stars svg { width: 18px; height: 18px; color: var(--copper-500); }

.testi-slide p.quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  margin-bottom: 28px;
}

.testi-author { font-weight: 600; }
.testi-source { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
}

.testi-dots { display: flex; gap: 9px; }
.testi-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.testi-dots button.active { background: var(--copper-500); transform: scale(1.3); }

.testi-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.testi-arrow:hover { background: var(--copper-600); border-color: var(--copper-600); }
.testi-arrow svg { width: 16px; height: 16px; }

/* ---------------- Visit / hours section ---------------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; gap: 36px; } }

.visit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.hours-table { width: 100%; margin-top: 10px; }
.hours-table tr { border-bottom: 1px solid var(--cream-2); }
.hours-table td { padding: 13px 0; font-size: 0.96rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--green-800); }
.hours-table tr.today td { color: var(--copper-700); font-weight: 700; }

.info-list { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.info-list .row { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ic {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-list .ic svg { width: 19px; height: 19px; color: var(--green-700); }
.info-list .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); }
.info-list .value { font-weight: 600; color: var(--ink); }
.info-list .value a:hover { color: var(--copper-700); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--copper-700), var(--copper-600));
  border-radius: var(--radius-lg);
  padding: 64px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  right: -80px; top: -120px;
}

.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.4rem); max-width: 480px; }
.cta-banner .btn-dark { background: var(--green-900); }
.cta-banner .btn-dark:hover { background: var(--charcoal); }

/* ============================================================
   GALLERY page
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--white);
  color: var(--green-800);
  border: 1px solid var(--cream-2);
  transition: all 0.3s var(--ease);
}

.filter-btn:hover { border-color: var(--copper-500); }
.filter-btn.active { background: var(--green-900); color: var(--white); border-color: var(--green-900); }

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 10px;
  gap: 18px;
}

.masonry .g-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}

.masonry .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.masonry .g-item:hover img { transform: scale(1.1); }

.masonry .g-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,17,13,0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--white);
}

.masonry .g-item:hover .g-overlay { opacity: 1; }
.masonry .g-item .g-overlay .g-cat { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper-400, #e3a05b); margin-bottom: 4px; }
.masonry .g-item .g-overlay .g-title { font-family: var(--font-display); font-size: 1.05rem; }

.masonry .g-item .zoom-ic {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: all 0.35s var(--ease);
}
.masonry .g-item:hover .zoom-ic { opacity: 1; transform: scale(1); }
.masonry .g-item .zoom-ic svg { width: 16px; height: 16px; color: var(--green-900); }

@media (max-width: 980px) { .masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .masonry { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 460px) { .masonry { grid-template-columns: 1fr; } }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 14, 11, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox-stage {
  position: relative;
  max-width: 88vw;
  max-height: 84vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 84vh;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.lightbox.open .lightbox-stage img { transform: scale(1); opacity: 1; }

.lightbox-caption {
  position: absolute;
  bottom: -46px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 5;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--copper-600); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

.lightbox-close { top: 28px; right: 28px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

@media (max-width: 700px) {
  .lightbox-prev { left: 6px; width: 42px; height: 42px; }
  .lightbox-next { right: 6px; width: 42px; height: 42px; }
  .lightbox-close { top: 14px; right: 14px; width: 42px; height: 42px; }
}

.lightbox-counter {
  position: absolute;
  top: 28px; left: 28px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   MENU page
   ============================================================ */
.menu-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 880px) { .menu-intro { grid-template-columns: 1fr; gap: 36px; } }

.menu-card-viewer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
  background: var(--charcoal);
}

.menu-card-viewer img { width: 100%; display: block; }

.menu-card-viewer .zoom-hint {
  position: absolute;
  bottom: 18px; right: 18px;
  background: rgba(20,17,13,0.75);
  color: var(--white);
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 8px;
}
.menu-card-viewer .zoom-hint svg { width: 15px; height: 15px; }

.menu-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.menu-categories {
  margin-top: 90px;
}

.menu-cat {
  margin-bottom: 70px;
}

.menu-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--green-900);
  padding-bottom: 18px;
  margin-bottom: 30px;
  gap: 20px;
}

.menu-cat-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); display: flex; align-items: center; gap: 12px; }
.menu-cat-head p { color: var(--gray-500); font-size: 0.92rem; margin-top: 6px; max-width: 480px; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 50px; }
@media (max-width: 760px) { .menu-list { grid-template-columns: 1fr; } }

.menu-line {
  padding: 20px 0;
  border-bottom: 1px dashed var(--cream-2);
}

.menu-line .top { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.menu-line h4 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.menu-line .price { font-family: var(--font-display); font-weight: 700; color: var(--copper-700); white-space: nowrap; }
.menu-line .desc { color: var(--gray-500); font-size: 0.88rem; margin-top: 6px; }

.diet-chip {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--green-100);
  color: var(--green-700);
  letter-spacing: 0.03em;
}

.menu-addon-note {
  margin-top: 26px;
  padding: 18px 22px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--green-800);
}

.menu-sides-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin-top: 10px;
}
@media (max-width: 600px) { .menu-sides-list { grid-template-columns: 1fr; } }
.menu-sides-list li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-2);
  font-size: 0.95rem;
}
.menu-sides-list li span:first-child { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* Specials gallery strip on menu page */
.specials-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .specials-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .specials-strip { grid-template-columns: 1fr; } }

.special-card { text-align: center; }
.special-card .img-wrap { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.special-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.special-card:hover img { transform: scale(1.08); }
.special-card h4 { font-size: 1rem; margin-bottom: 4px; }
.special-card p { font-size: 0.85rem; color: var(--gray-500); }

/* Zoom modal */
.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(12, 11, 9, 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  overflow: hidden;
  touch-action: none;
}
.zoom-modal.open { opacity: 1; pointer-events: auto; }

.zoom-canvas {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  cursor: grab;
}
.zoom-canvas.dragging { cursor: grabbing; }

.zoom-canvas img {
  max-width: 90vw;
  max-height: 90vh;
  user-select: none;
  transition: transform 0.18s linear;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border-radius: 6px;
}

.zoom-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px;
  border-radius: 100px;
}

.zoom-controls button {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.3s var(--ease);
}
.zoom-controls button:hover { background: var(--copper-600); }
.zoom-controls svg { width: 18px; height: 18px; }

.zoom-modal-close {
  position: absolute;
  top: 26px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.zoom-modal-close:hover { background: var(--copper-600); }
.zoom-modal-close svg { width: 20px; height: 20px; }

.zoom-hint-text {
  position: absolute;
  top: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   ABOUT page
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 36px; } }

.story-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-collage img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); width: 100%; height: 100%; object-fit: cover; }
.story-collage .tall { grid-row: span 2; aspect-ratio: 1/2; }
.story-collage .short { aspect-ratio: 1/1; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-card .ic {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card .ic svg { width: 24px; height: 24px; color: var(--green-700); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); }

.philosophy-feature {
  text-align: center;
  background: var(--green-900);
  border-radius: var(--radius-lg);
  padding: 90px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.philosophy-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 90%, rgba(193,122,61,0.25), transparent 50%);
}
.philosophy-feature .container { position: relative; }
.philosophy-feature h2 {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 26px;
}
.philosophy-feature p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.philosophy-words { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.philosophy-words .w { text-align: center; }
.philosophy-words .w span { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--copper-500); }
.philosophy-words .w small { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 760px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.review-card .stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-card .stars svg { width: 15px; height: 15px; color: var(--copper-500); }
.review-card p.quote { font-size: 0.98rem; color: var(--ink); margin-bottom: 18px; }
.review-card .who { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--gray-500); }
.review-card .who strong { color: var(--green-800); }
.review-source-note { text-align: center; margin-top: 36px; }
.review-source-note a { color: var(--copper-700); font-weight: 600; }
.review-source-note a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

.contact-cards { display: flex; flex-direction: column; gap: 18px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .ic {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--copper-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .ic svg { width: 22px; height: 22px; color: var(--copper-700); }
.contact-card h4 { font-size: 1.02rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--gray-500); font-size: 0.92rem; }
.contact-card a:hover { color: var(--copper-700); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px;
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--green-800); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--copper-500);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.show { display: flex; }
.form-status svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-status.err { background: #fbe4e0; color: #9a3b2c; }

/* ---------------- Developer badge (demo-only watermark) ---------------- */
.dev-badge-wrap {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 950;
}

.dev-badge {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--copper-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.dev-badge:hover { transform: translateY(-3px) scale(1.04); background: var(--copper-700); }

.dev-badge-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(193, 122, 61, 0.55);
  animation: devBadgePulse 2.4s ease-out infinite;
}

@keyframes devBadgePulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.dev-badge-panel {
  position: absolute;
  left: 0;
  bottom: 76px;
  width: 290px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 20px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  pointer-events: none;
  transform-origin: bottom left;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.dev-badge-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dev-badge-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }

.dev-badge-close {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.dev-badge-close:hover { background: var(--cream-2); color: var(--ink); }

.dev-badge-title { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 2px; }
.dev-badge-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--green-900); margin-bottom: 16px; }

.dev-badge-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 18px; }
.dev-badge-list li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; }
.dev-badge-list .icon { color: var(--copper-600); flex-shrink: 0; }
.dev-badge-list a { color: var(--ink); word-break: break-all; }
.dev-badge-list a:hover { color: var(--copper-700); }
.dev-badge-alt { color: var(--gray-500); font-size: 0.75rem; }

.dev-badge-cta { width: 100%; justify-content: center; }

@media (max-width: 560px) {
  .dev-badge-wrap { left: 16px; bottom: 16px; }
  .dev-badge { width: 52px; height: 52px; }
  .dev-badge-panel { width: calc(100vw - 32px); left: -6px; }
}

.map-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 420px;
}
.map-full iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   PREMIUM ADDITIONS
   ============================================================ */

/* ---------------- Custom scrollbar ---------------- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-600); border-radius: 10px; border: 2px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--copper-600); }

/* ---------------- Icon sizing (Lucide) ---------------- */
svg.lucide { stroke-width: 1.75; flex-shrink: 0; }
.icon { width: 19px; height: 19px; }
.icon-sm { width: 15px; height: 15px; }
.icon-lg { width: 26px; height: 26px; }

.testi-stars svg, .review-card .stars svg, .stars svg {
  fill: currentColor;
}

/* ---------------- Page fade-in ---------------- */
body { opacity: 0; transition: opacity 0.6s var(--ease); }
body.page-ready { opacity: 1; }

/* ---------------- Preloader ---------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: var(--green-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--copper-600);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
}

.preloader-mark .icon { width: 30px; height: 30px; }

.preloader-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(217, 154, 85, 0.35);
  border-top-color: var(--copper-500);
  animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

.preloader-word {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.preloader-word .accent { color: var(--copper-500); font-style: italic; }

/* ---------------- Marquee strip ---------------- */
.marquee {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
}

.marquee-group span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.marquee-group span .icon { color: var(--copper-500); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------------- Feature strip ---------------- */
.feature-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-strip .f-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 26px;
  border-right: 1px solid var(--cream-2);
}

.feature-strip .f-item:last-child { border-right: none; }

.feature-strip .f-ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-strip .f-ic .icon { color: var(--green-700); width: 22px; height: 22px; }

.feature-strip .f-item h4 { font-size: 0.98rem; margin-bottom: 3px; }
.feature-strip .f-item p { font-size: 0.8rem; color: var(--gray-500); }

@media (max-width: 980px) {
  .feature-strip .f-item { min-width: 45%; border-right: none; border-bottom: 1px solid var(--cream-2); }
}
@media (max-width: 560px) {
  .feature-strip .f-item { min-width: 100%; }
}

/* ---------------- Hero floating badge ---------------- */
.hero-floating-badge {
  position: absolute;
  right: 60px;
  bottom: 64px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 14px 24px 14px 16px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.hero-floating-badge .badge-ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--copper-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-floating-badge .badge-ic .icon { color: var(--white); }
.hero-floating-badge .badge-title { font-weight: 600; font-size: 0.92rem; }
.hero-floating-badge .badge-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

@media (max-width: 1100px) { .hero-floating-badge { display: none; } }

/* ---------------- Shine + tilt card effect ---------------- */
.tilt-card { position: relative; will-change: transform; }

.tilt-card .shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease);
  z-index: 3;
  border-radius: inherit;
}

.tilt-card:hover .shine { transform: translateX(120%); }

/* ---------------- Newsletter ---------------- */
.newsletter {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.newsletter::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  background: rgba(193, 122, 61, 0.22);
  border-radius: 50%;
  right: -60px; bottom: -120px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 320px;
  position: relative;
  z-index: 2;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter-form input:focus { outline: none; border-color: var(--copper-500); background: rgba(255,255,255,0.16); }

.newsletter-status {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
}
.newsletter-status.show { display: flex; }
.newsletter-status.ok { background: var(--green-100); color: var(--green-800); }
.newsletter-status.err { background: #fbe4e0; color: #9a3b2c; }
.newsletter-status .icon { width: 16px; height: 16px; }

@media (max-width: 700px) {
  .newsletter { padding: 44px 30px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { justify-content: center; }
}

/* ---------------- Testimonial avatar ---------------- */
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--copper-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 18px;
  border: 3px solid rgba(255,255,255,0.2);
}

.review-card .who-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-card .who-row .stars { margin-bottom: 0; }
.review-card .avatar-sm {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0;
}

/* ---------------- Form status icon already defined; ensure icon sizing ---------------- */
.form-status .icon { width: 18px; height: 18px; }
