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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

ul {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ===================================
   VARIABLES
=================================== */
:root {
  --espresso: #2b1d17;
  --coffee: #4e342e;
  --latte: #c8a27a;
  --cream: #f7f3ee;
  --white: #ffffff;
  --text: #2a2a2a;
  --accent: #a66a3f;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;

  --shadow-sm: 0 6px 18px rgba(43, 29, 23, 0.08);
  --shadow: 0 18px 40px rgba(43, 29, 23, 0.12);
  --shadow-lg: 0 30px 70px rgba(43, 29, 23, 0.22);

  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
}

/* ===================================
   GLOBAL STYLES
=================================== */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

.container {
  width: min(var(--maxw), 92%);
  margin: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

section {
  position: relative;
}

.section-pad {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.section-head p {
  color: #6b5b50;
  font-size: 1.08rem;
}

/* Buttons */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: 0 10px 24px rgba(166, 106, 63, 0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.3s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(166, 106, 63, 0.36);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.btn--dark {
  --btn-bg: var(--espresso);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--espresso);
  border: 1.5px solid var(--latte);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

/* ===================================
   HEADER
=================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--maxw), 92%);
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  transition: color 0.4s ease;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(166, 106, 63, 0.4);
}

.logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  position: relative;
  color: var(--white);
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  opacity: 1;
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
}

/* Scrolled state */
.header.is-scrolled {
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(43, 29, 23, 0.1);
  height: 70px;
}

.header.is-scrolled .logo,
.header.is-scrolled .nav__links a {
  color: var(--espresso);
}

.header.is-scrolled .logo small {
  color: var(--coffee);
}

.header.is-scrolled .nav__toggle span {
  background: var(--espresso);
}

/* Solid header for interior pages */
.header.header--solid {
  position: sticky;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(43, 29, 23, 0.08);
}

.header.header--solid .logo,
.header.header--solid .nav__links a {
  color: var(--espresso);
}

.header.header--solid .logo small {
  color: var(--coffee);
}

.header.header--solid .nav__toggle span {
  background: var(--espresso);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s ease, background 0.3s;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===================================
   HERO
=================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  to {
    transform: scale(1.14);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      105deg,
      rgba(27, 18, 14, 0.92) 0%,
      rgba(43, 29, 23, 0.74) 42%,
      rgba(43, 29, 23, 0.34) 100%
    ),
    radial-gradient(
      circle at 78% 28%,
      rgba(166, 106, 63, 0.35),
      transparent 55%
    );
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--latte);
  box-shadow: 0 0 0 4px rgba(200, 162, 122, 0.3);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6.4vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

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

.hero__lead {
  font-size: 1.15rem;
  max-width: 30rem;
  color: rgba(247, 243, 238, 0.88);
  margin-bottom: 2.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating glass cards */
.hero__cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-self: end;
  width: 100%;
  max-width: 340px;
}

.glass-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  animation: floatCard 6s ease-in-out infinite;
}

.glass-card:nth-child(1) {
  align-self: flex-start;
}
.glass-card:nth-child(2) {
  align-self: flex-end;
  animation-delay: 1.5s;
}
.glass-card:nth-child(3) {
  align-self: center;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.glass-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.glass-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.glass-card span {
  font-size: 0.85rem;
  color: rgba(247, 243, 238, 0.8);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.7);
  z-index: 2;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(247, 243, 238, 0.6);
  border-radius: 14px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--latte);
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* ===================================
   FEATURED COFFEE
=================================== */
.featured {
  background: var(--cream);
}

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

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

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

.coffee-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.coffee-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.coffee-card:hover .coffee-card__media img {
  transform: scale(1.08);
}

.coffee-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(43, 29, 23, 0.7);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.coffee-card__body {
  padding: 1.6rem 1.7rem 1.9rem;
}

.coffee-card__body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.coffee-card__body p {
  color: #6b5b50;
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
}

.coffee-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.15rem;
}

.coffee-card__price a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coffee);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s ease;
}

.coffee-card__price a:hover {
  gap: 0.6rem;
}

/* ===================================
   ABOUT
=================================== */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.about__media .floating-stat {
  position: absolute;
  right: -10px;
  bottom: 28px;
  background: var(--espresso);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about__media .floating-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--latte);
  line-height: 1;
}

.about__media .floating-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.about__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.3rem;
}

.about__content > p {
  color: #6b5b50;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 2.2rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  color: var(--espresso);
}

.checklist li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(166, 106, 63, 0.14);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===================================
   STATS
=================================== */
.stats {
  background: var(--espresso);
  color: var(--white);
  background-image: radial-gradient(
      circle at 15% 20%,
      rgba(166, 106, 63, 0.25),
      transparent 45%
    ),
    radial-gradient(circle at 85% 80%, rgba(200, 162, 122, 0.18), transparent 45%);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--latte);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.stat__label {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: rgba(247, 243, 238, 0.78);
}

.stat + .stat {
  position: relative;
}

.stats__grid .stat:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* ===================================
   MENU
=================================== */
.menu {
  background: var(--cream);
}

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

.menu-cat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.menu-cat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.menu-cat__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(43, 29, 23, 0.08);
}

.menu-cat__head .ico {
  font-size: 1.6rem;
}

.menu-cat__head h3 {
  font-size: 1.4rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.7rem 0;
}

.menu-item__name {
  font-weight: 600;
  color: var(--espresso);
  white-space: nowrap;
}

.menu-item__desc {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: #8a7a6e;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(43, 29, 23, 0.25);
  transform: translateY(-4px);
}

.menu-item__price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.menu__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===================================
   TESTIMONIALS
=================================== */
.testimonials {
  background: var(--white);
}

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

.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testi-card__quote {
  font-family: var(--font-head);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--latte);
  margin-bottom: 1rem;
  display: block;
  height: 1.2rem;
}

.stars {
  color: #e0a83d;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.testi-card p {
  color: #5e5048;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.testi-card__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--coffee));
  flex-shrink: 0;
}

.testi-card__person strong {
  display: block;
  color: var(--espresso);
  font-size: 0.98rem;
}

.testi-card__person span {
  font-size: 0.82rem;
  color: #8a7a6e;
}

.testi__dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.testi__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(43, 29, 23, 0.2);
  transition: background 0.3s, width 0.3s;
}

.testi__dots button.is-active {
  width: 24px;
  border-radius: 6px;
  background: var(--accent);
}

/* ===================================
   GALLERY
=================================== */
.gallery {
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.12);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 29, 23, 0.5), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

/* ===================================
   VISIT US
=================================== */
.visit {
  background: var(--white);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visit__map {
  position: relative;
  min-height: 440px;
  background: linear-gradient(135deg, #d8cabb, #c8a27a);
  background-image: radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.35),
      transparent 40%
    );
  display: grid;
  place-items: center;
  color: var(--espresso);
  overflow: hidden;
}

.visit__map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(43, 29, 23, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 29, 23, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.map-pin {
  position: relative;
  text-align: center;
  z-index: 1;
}

.map-pin__dot {
  width: 26px;
  height: 26px;
  margin: 0 auto 0.8rem;
  background: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 24px rgba(43, 29, 23, 0.35);
  animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-8px);
  }
}

.map-pin strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
}

.visit__info {
  background: var(--espresso);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3.2rem);
}

.visit__info h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 1.6rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.98rem;
}

.hours-list li span:first-child {
  color: rgba(247, 243, 238, 0.85);
}

.hours-list li span:last-child {
  font-weight: 600;
  color: var(--latte);
}

.visit__address {
  margin: 1.8rem 0;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: rgba(247, 243, 238, 0.9);
}

.visit__address .ico {
  color: var(--latte);
  font-size: 1.3rem;
}

/* ===================================
   INSTAGRAM STRIP
=================================== */
.insta {
  background: var(--cream);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.insta__head {
  text-align: center;
  margin-bottom: 2rem;
}

.insta__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.insta__head a {
  color: var(--accent);
  font-weight: 600;
}

.insta__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7rem;
}

.insta__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

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

.insta__item::after {
  content: "♡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(43, 29, 23, 0.45);
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insta__item:hover img {
  transform: scale(1.12);
}

.insta__item:hover::after {
  opacity: 1;
}

/* ===================================
   CTA
=================================== */
.cta {
  background: var(--coffee);
  color: var(--white);
  text-align: center;
  background-image: radial-gradient(
      circle at 50% 0%,
      rgba(200, 162, 122, 0.25),
      transparent 55%
    );
}

.cta__inner {
  max-width: 680px;
  margin: auto;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.2rem;
}

.cta p {
  color: rgba(247, 243, 238, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: var(--espresso);
  color: rgba(247, 243, 238, 0.75);
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.footer__brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.95rem;
  max-width: 22rem;
}

.footer__links li,
.footer__hours li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.footer__links a {
  transition: color 0.3s ease, padding 0.3s ease;
}

.footer__links a:hover {
  color: var(--latte);
  padding-left: 4px;
}

.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer__hours span:last-child {
  color: var(--latte);
}

.socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.footer__bottom a:hover {
  color: var(--latte);
}

/* ===================================
   PAGE HEADER (interior pages)
=================================== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: var(--espresso);
  color: var(--white);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(166, 106, 63, 0.35),
      transparent 60%
    );
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: rgba(247, 243, 238, 0.82);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.1rem;
}

.breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--latte);
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--white);
}

/* Contact form */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: var(--espresso);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(43, 29, 23, 0.14);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(166, 106, 63, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
  min-height: 1.4rem;
}

.info-block {
  display: flex;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(43, 29, 23, 0.08);
}

.info-block .ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(166, 106, 63, 0.12);
  color: var(--accent);
  font-size: 1.3rem;
}

.info-block strong {
  display: block;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}

.info-block span {
  color: #6b5b50;
  font-size: 0.95rem;
}

/* Values grid (about page) */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-card .ico {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(166, 106, 63, 0.12);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  color: #6b5b50;
  font-size: 0.95rem;
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
}

.timeline__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.2rem;
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(166, 106, 63, 0.25);
}

.timeline__item:last-child::before {
  display: none;
}

.timeline__year {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
}

.timeline__body {
  padding-left: 1.8rem;
  position: relative;
}

.timeline__body::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--cream);
}

.timeline__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.timeline__body p {
  color: #6b5b50;
  font-size: 0.96rem;
}

/* Full menu page */
.menu-page__cat {
  margin-bottom: 3.5rem;
}

.menu-page__cat > h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.3rem;
}

.menu-page__cat > p {
  color: #8a7a6e;
  margin-bottom: 1.8rem;
}

.menu-page__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 3rem;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero__content {
    margin: 0 auto;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__cards {
    flex-direction: row;
    max-width: 100%;
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .glass-card {
    flex: 1 1 200px;
    align-self: auto !important;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    max-width: 460px;
    margin: 0 auto;
  }

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

  .cards-3,
  .menu__grid,
  .values__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1rem;
  }

  .stats__grid .stat:not(:first-child)::before {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .menu-page__items {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 80vw);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
    background: var(--espresso);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__links a {
    color: var(--white) !important;
    font-size: 1.2rem;
  }

  .nav .btn {
    display: none;
  }

  /* Testimonials carousel */
  .testi__track {
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .testi__track::-webkit-scrollbar {
    display: none;
  }

  .testi-card {
    scroll-snap-align: center;
  }

  .testi__dots {
    display: flex;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .insta__strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 540px) {
  .cards-3,
  .menu__grid,
  .values__grid,
  .checklist {
    grid-template-columns: 1fr;
  }

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

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

  .hero__cards {
    flex-direction: column;
  }

  .timeline__item {
    grid-template-columns: 70px 1fr;
    gap: 0.8rem;
  }

  .timeline__item::before {
    left: 70px;
  }

  .timeline__year {
    font-size: 1.1rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
