/* Eis-Café Caramello – static landing page */

:root {
  --cream: #f7f0e6;
  --cream-dark: #ede3d4;
  --caramel: #c4843c;
  --caramel-dark: #a66d2a;
  --chocolate: #3a2418;
  --pistachio: #7a9a6a;
  --white: #fffdf9;
  --text: #2c1a10;
  --text-muted: #5c4a3a;
  --shadow: 0 12px 40px rgba(58, 36, 24, 0.12);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --max-width: 72rem;
  --header-height: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero-decor {
    display: none;
  }
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

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

a {
  color: var(--caramel-dark);
}

a:hover,
a:focus-visible {
  color: var(--chocolate);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--chocolate);
  color: var(--white);
  border-radius: 0.5rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 36, 24, 0.08);
  animation: headerSlideDown 0.6s ease both;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--chocolate);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--caramel);
  transition: transform 0.4s ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(-8deg) scale(1.05);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.35rem 0;
  background: var(--chocolate);
  transition: transform 0.2s ease;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--caramel-dark);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: auto -30% -120% -30%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateY(0);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--caramel-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--chocolate);
  border-color: var(--chocolate);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--chocolate);
  color: var(--white);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
}

/* Hero */

.hero {
  position: relative;
  min-height: clamp(28rem, 70vh, 40rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(58, 36, 24, 0.82) 0%,
    rgba(58, 36, 24, 0.55) 45%,
    rgba(58, 36, 24, 0.25) 100%
  );
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.scoop {
  position: absolute;
  border-radius: 50% 50% 45% 45%;
  opacity: 0.22;
  filter: blur(0.5px);
  box-shadow: inset -8px -12px 20px rgba(0, 0, 0, 0.08);
}

.scoop-vanilla {
  top: 12%;
  right: 8%;
  width: 5.5rem;
  height: 5.5rem;
  background: radial-gradient(circle at 35% 30%, #fff9ef 0%, #f5e6c8 100%);
  animation: floatScoop 7s ease-in-out infinite;
}

.scoop-pistachio {
  top: 55%;
  right: 18%;
  width: 4rem;
  height: 4rem;
  background: radial-gradient(circle at 35% 30%, #b8d4a8 0%, #7a9a6a 100%);
  animation: floatScoop 9s ease-in-out 1s infinite;
}

.scoop-caramel {
  bottom: 18%;
  right: 6%;
  width: 3.5rem;
  height: 3.5rem;
  background: radial-gradient(circle at 35% 30%, #e8b56a 0%, #c4843c 100%);
  animation: floatScoop 8s ease-in-out 0.5s infinite;
}

.scoop-cherry {
  top: 28%;
  right: 28%;
  width: 2.75rem;
  height: 2.75rem;
  background: radial-gradient(circle at 35% 30%, #e87878 0%, #c44 100%);
  animation: floatScoop 6s ease-in-out 1.5s infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 38rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.16);
  border: 1px solid rgba(255, 253, 249, 0.25);
  font-size: 0.9rem;
  font-weight: 600;
  animation: fadeUp 0.8s ease 0.2s both, floatBadge 4s ease-in-out 1s infinite;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero p {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 253, 249, 0.92);
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.8s ease 0.65s both;
}

/* Sections */

section {
  padding: 5rem 0;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-header h2,
.heading-sweet {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--chocolate);
  letter-spacing: -0.02em;
}

.heading-sweet {
  position: relative;
  display: inline-block;
}

.heading-sweet::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 0.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--caramel), var(--pistachio), var(--caramel));
  background-size: 200% 100%;
  animation: caramelShimmer 4s ease-in-out infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.2s;
}

.reveal.is-visible .heading-sweet::after,
.section-header.is-visible .heading-sweet::after {
  transform: scaleX(1);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.section-alt {
  background: var(--white);
}

/* Offer cards */

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

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

.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(58, 36, 24, 0.16);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.5s ease;
}

.offer-card img.img-focus-low {
  object-position: center 72%;
}

.offer-card img.img-focus-cone {
  object-position: center 46%;
}

.offer-card img.img-focus-dessert {
  object-position: 22% 58%;
}

.offer-card:hover img,
.offer-card:focus-within img {
  transform: scale(1.06);
}

.offer-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.offer-card h3 {
  margin: 0 0 0.5rem;
  color: var(--chocolate);
  font-size: 1.25rem;
}

.offer-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.offer-note {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--pistachio);
  background: rgba(122, 154, 106, 0.12);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

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

.about-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.highlight-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--caramel);
  color: var(--white);
  font-size: 1rem;
  animation: iconPop 0.5s ease both;
}

.highlight:nth-child(2) .highlight-icon {
  animation-delay: 0.15s;
}

.highlight:nth-child(3) .highlight-icon {
  animation-delay: 0.3s;
}

.reveal.is-visible .highlight-icon {
  animation: iconPop 0.5s ease both, gentlePulse 3s ease-in-out 1s infinite;
}

.highlight strong {
  display: block;
  color: var(--chocolate);
  margin-bottom: 0.15rem;
}

.highlight span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

/* Gallery */

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

.gallery-item {
  margin: 0;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.gallery-item:hover,
.gallery-item:focus-within {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item img.img-focus-low {
  object-position: center 72%;
}

.gallery-item img.img-focus-left {
  object-position: 28% 40%;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-caption {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Visit */

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

.visit-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.visit-card h3 {
  margin: 0 0 1rem;
  color: var(--chocolate);
}

.visit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visit-list dt {
  min-width: 6.5rem;
  font-weight: 700;
  color: var(--chocolate);
  padding-top: 0.65rem;
}

.visit-list dt:first-child {
  padding-top: 0;
}

.visit-list dd {
  margin: 0 0 0.65rem;
  padding-bottom: 0.65rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(58, 36, 24, 0.08);
}

.visit-list dd:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.visit-list a {
  font-weight: 600;
}

.visit-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  min-height: clamp(16rem, 45vw, 28rem);
}

.map-consent {
  display: grid;
  place-items: center;
  min-height: clamp(16rem, 45vw, 28rem);
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}

.map-consent-inner {
  max-width: 32rem;
}

.map-consent-title {
  margin: 0 0 0.75rem;
  color: var(--chocolate);
  font-size: 1.25rem;
}

.map-consent p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.map-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.map-frame {
  position: relative;
}

.map-frame.is-active {
  min-height: clamp(16rem, 45vw, 28rem);
}

.map-embed {
  display: block;
  width: 100%;
  height: clamp(16rem, 45vw, 28rem);
  border: 0;
}

.map-revoke {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  border: 0;
  border-top: 1px solid rgba(58, 36, 24, 0.08);
  background: var(--cream);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
}

.map-revoke:hover,
.map-revoke:focus-visible {
  color: var(--chocolate);
  background: var(--cream-dark);
}

.map-wrap.is-loaded .map-consent {
  display: none;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.55rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(58, 36, 24, 0.08);
}

.hours-table th {
  color: var(--chocolate);
  font-weight: 700;
  width: 40%;
}

.hours-table td {
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  background: var(--chocolate);
  color: rgba(255, 253, 249, 0.85);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer h3 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: rgba(255, 253, 249, 0.85);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 253, 249, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.1);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--caramel);
  text-decoration: none;
}

/* Legal pages */

.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page h1 {
  margin: 0 0 1.5rem;
  color: var(--chocolate);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-page h2 {
  margin: 2rem 0 0.75rem;
  color: var(--chocolate);
  font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 1.25rem;
}

.placeholder {
  background: rgba(196, 132, 60, 0.15);
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  color: var(--caramel-dark);
  font-style: italic;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
}

/* SEO / accessibility helpers */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumbs {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.breadcrumbs li + li::before {
  content: "›";
  margin-right: 0.35rem;
  color: var(--caramel);
}

.breadcrumbs a {
  font-weight: 600;
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  text-decoration: underline;
}

address {
  font-style: normal;
  line-height: 1.7;
}

.visit-address {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.site-footer address {
  color: rgba(255, 253, 249, 0.85);
}

.site-footer address a {
  color: rgba(255, 253, 249, 0.85);
}

/* Testimonials / Google reviews */

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.rating-summary-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--chocolate);
}

.rating-summary-text {
  margin: 0;
  color: var(--text-muted);
}

.stars {
  color: var(--caramel);
  letter-spacing: 0.05em;
  font-size: 1rem;
  animation: starTwinkle 2.5s ease-in-out infinite;
}

.stars-lg {
  font-size: 1.35rem;
}

.stars-4 .star-empty {
  color: var(--cream-dark);
}

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

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.35rem 1.35rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--caramel);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(58, 36, 24, 0.14);
}

.testimonial-card:nth-child(2) .stars {
  animation-delay: 0.4s;
}

.testimonial-card:nth-child(3) .stars {
  animation-delay: 0.8s;
}

.testimonial-stars {
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--chocolate);
}

.testimonial-source {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.testimonial-source::before {
  content: "·";
  margin-right: 0.75rem;
  color: var(--caramel);
}

.testimonials-cta {
  margin: 2rem 0 0;
  text-align: center;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item[open] {
  box-shadow: 0 14px 36px rgba(58, 36, 24, 0.12);
  transform: translateY(-2px);
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--chocolate);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--caramel);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item:not([open]) p {
  animation: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
}

.faq-item[open] p {
  animation: meltIn 0.35s ease;
}

.visit-card,
.rating-summary,
.about-image {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.visit-card:hover,
.rating-summary:hover {
  transform: translateY(-3px);
}

.about-image:hover {
  transform: scale(1.02);
}

/* Scroll reveal & keyframes */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal[data-reveal-delay="1"] {
  transition-delay: 0.12s;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 0.24s;
}

.reveal[data-reveal-delay="3"] {
  transition-delay: 0.36s;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes floatScoop {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes caramelShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(0.96);
  }
}

@keyframes iconPop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gentlePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 132, 60, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(196, 132, 60, 0);
  }
}

@keyframes meltIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile nav */

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid rgba(58, 36, 24, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(58, 36, 24, 0.06);
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.9rem 0.5rem;
    text-align: left;
  }

  .offer-grid,
  .about-grid,
  .visit-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item img {
    aspect-ratio: 4 / 5;
  }

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

  section {
    padding: 3.5rem 0;
  }

  .hero-decor {
    opacity: 0.35;
  }

  .scoop-vanilla,
  .scoop-cherry {
    display: none;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .gallery-item img {
    aspect-ratio: 4 / 5;
  }
}
