/* ============================================
   AURA COFFEE ROASTERY — Coming Soon
   ============================================
   Color palette:
     --moss:    #4a5d3a  (deep earthy green)
     --bark:    #6b5241  (warm brown)
     --cream:   #f5f0e8  (warm off-white)
     --tan:     #d4c4a8  (sandy warm tone)
     --linen:   #ebe3d5  (paper-like mid tone)
     --charcoal:#2c2a26  (near-black text)
   ============================================ */

:root {
  --moss: #4a5d3a;
  --moss-light: #5e7548;
  --bark: #6b5241;
  --cream: #d4b896;
  --tan: #d4c4a8;
  --linen: #ebe3d5;
  --charcoal: #2c2a26;
  --charcoal-soft: #3d3a34;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Reset & base ---- */

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

address {
  font-style: normal;
}

/* ---- Skip navigation ---- */

.skip-nav {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.9rem;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 0;
}

/* ---- Screen reader only ---- */

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

/* ---- Navbar ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: url('assets/coffee-beans.jpg') center center / cover no-repeat;
  border-bottom: none;
}

/* Dark overlay on the beans texture */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: -1;
}

.navbar--dark {
  background: rgba(42, 50, 38, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 93, 58, 0.2);
}

.navbar--dark .navbar__link {
  color: #d4c4a8; /* warm tan */
}

.navbar--dark .navbar__link:hover {
  color: var(--cream);
}

.navbar--dark .navbar__link--active {
  color: var(--cream);
}

.navbar--dark .navbar__social-link {
  color: #d4c4a8;
}

.navbar--dark .navbar__social-link:hover {
  color: var(--cream);
}

.navbar--dark::before {
  display: none;
}

.navbar__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
}

.navbar__links {
  display: none;
  gap: 0.25rem;
  flex-shrink: 0;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.75);
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar__link:hover {
  background: rgba(245, 240, 232, 0.1);
  color: var(--cream);
}

.navbar__link--active {
  background: rgba(245, 240, 232, 0.12);
  color: var(--cream);
}

.navbar__link:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

/* Dark navbar variant (subpages) uses same light text — no overrides needed */

.navbar__social {
  display: flex;
  gap: 0.25rem;
}

.navbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(245, 240, 232, 0.6);
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar__social-link:hover {
  background: rgba(245, 240, 232, 0.1);
  color: var(--cream);
}

.navbar__social-link:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

/* navbar--dark social inherits default dark style */

/* Hide social icons on small screens — footer has them instead */
@media (max-width: 600px) {
  .navbar__social {
    display: none;
  }
}

/* ---- Grain texture overlay ---- */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---- Fade-in animation ---- */

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

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

/* ---- Shared section styling ---- */

.section-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 1rem;
}

/* ============================================
   HERO — Photo Background
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: url('assets/hero-bg.png') center center / cover no-repeat;
}

@media (max-width: 600px) {
  .hero {
    min-height: 70vh;
    min-height: 70svh;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 25, 20, 0.65) 0%,
    rgba(30, 25, 20, 0.50) 50%,
    rgba(30, 25, 20, 0.70) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: 160px;
  height: 160px;
  margin-bottom: 2rem;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #e8d9b8;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 240, 232, 0.3);
  color: var(--cream);
  transition: border-color 0.3s ease, transform 0.3s ease;
  animation: bob 2.5s ease-in-out infinite;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  border-color: var(--cream);
  transform: scale(1.1);
  outline: none;
}

.hero__cta:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   ABOUT — Dithering Card
   ============================================ */

.about-card {
  padding: 1.5rem 0.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--cream);
}

.about-card__wrapper {
  width: 100%;
  max-width: 80rem;
}

.about-card__card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background-color: var(--charcoal);
  border: 1px solid var(--charcoal-soft);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 40px rgba(44, 42, 38, 0.15),
    0 1px 3px rgba(44, 42, 38, 0.08);
}

.about-card__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.about-card__content {
  position: relative;
  z-index: 10;
  padding: 4rem 1.5rem;
  max-width: 600px;
  text-align: center;
}

.about-card__label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 2rem;
}

.about-card__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 1.5rem;
}

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

.about-card__text--highlight {
  color: #e8d9b8;
  font-style: italic;
}

/* Full-page variant (about.html) */
.about-card--fullpage {
  padding-top: 4.5rem; /* account for fixed navbar */
}

.about-card--fullpage .about-card__card {
  min-height: calc(100vh - 5rem);
  min-height: calc(100svh - 5rem);
  border-radius: 0;
}

.about-card--fullpage .about-card__content {
  padding: 5rem 1.5rem;
  max-width: 640px;
}

@media (min-width: 768px) {
  .about-card--fullpage .about-card__content {
    padding: 6rem 2rem;
  }
}

/* ============================================
   LOCATION CTA — Homepage button
   ============================================ */

.location-cta {
  position: relative;
  padding: 6rem 1.5rem;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.location-cta__bg {
  position: absolute;
  inset: 0;
  background: url('assets/coffee-beans.jpg') center center / cover no-repeat;
  z-index: 0;
}

.location-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 22, 16, 0.82) 0%,
    rgba(30, 22, 16, 0.72) 50%,
    rgba(30, 22, 16, 0.85) 100%
  );
}

.location-cta__inner {
  position: relative;
  z-index: 1;
}

.location-cta__label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.3rem);
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 2rem;
}

.location-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--cream);
  padding: 0.9rem 2.5rem;
  min-height: 44px;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.location-cta__btn:hover {
  background: #fff;
  transform: scale(1.04);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.location-cta__btn:active {
  transform: scale(0.98);
}

.location-cta__btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.location-cta__btn svg {
  transition: transform 0.2s ease;
}

.location-cta__btn:hover svg {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .location-cta {
    padding: 8rem 2rem;
  }
}

/* ============================================
   LOCATION PAGE
   ============================================ */

.loc-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  z-index: 100;
  background: linear-gradient(180deg, rgba(30, 22, 16, 0.6) 0%, transparent 100%);
}

.loc-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: rgba(44, 42, 38, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.loc-nav__back:hover {
  background: rgba(44, 42, 38, 0.8);
}

.loc-nav__back:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

.loc-page {
  min-height: 100vh;
}

.loc-hero {
  position: relative;
  padding: 7rem 1.5rem 4rem;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.loc-hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/coffee-beans.jpg') center center / cover no-repeat;
  z-index: 0;
}

.loc-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 22, 16, 0.80) 0%,
    rgba(30, 22, 16, 0.65) 50%,
    rgba(30, 22, 16, 0.85) 100%
  );
}

.loc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.loc-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.loc-hero__address {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 2rem;
}

.loc-hero__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.loc-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 2.5vw, 0.95rem);
  color: var(--tan);
  transition: color 0.3s ease;
  word-break: break-all;
}

.loc-hero__link:hover {
  color: var(--cream);
}

.loc-hero__link:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
  border-radius: 4px;
}

.loc-map {
  width: 100%;
}

.loc-map iframe {
  width: 100%;
  height: 50vh;
  height: 50svh;
  min-height: 320px;
  display: block;
  border: none;
}

@media (min-width: 768px) {
  .loc-hero {
    padding: 8rem 2rem 5rem;
  }

  .loc-map iframe {
    height: 60vh;
    min-height: 450px;
  }
}

/* ============================================
   CONTACT CTA — Homepage button
   ============================================ */

.contact-cta {
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: var(--cream);
}

.contact-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-cta__label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.3rem);
  letter-spacing: 0.08em;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
}

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  background: var(--moss);
  padding: 0.9rem 2.5rem;
  min-height: 44px;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(74, 93, 58, 0.2);
}

.contact-cta__btn:hover {
  background: var(--moss-light);
  transform: scale(1.04);
  box-shadow: 0 6px 30px rgba(74, 93, 58, 0.3);
}

.contact-cta__btn:active {
  transform: scale(0.98);
}

.contact-cta__btn:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}

.contact-cta__btn svg {
  transition: transform 0.2s ease;
}

.contact-cta__btn:hover svg {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .contact-cta {
    padding: 5rem 2rem;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  min-height: 100vh;
}

.contact-hero {
  position: relative;
  padding: 7.5rem 1.5rem 4rem;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center center / cover no-repeat;
  z-index: 0;
}

.contact-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 25, 20, 0.75) 0%,
    rgba(30, 25, 20, 0.65) 50%,
    rgba(30, 25, 20, 0.80) 100%
  );
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.contact-hero__subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: #e8d9b8;
}

/* Contact cards grid */
.contact-details {
  padding: 4rem 1.5rem;
  background-color: var(--cream);
  display: flex;
  justify-content: center;
}

.contact-details__inner {
  max-width: 64rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--linen);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-card__icon {
  color: var(--moss);
  margin-bottom: 0.25rem;
}

.contact-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.contact-card__value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  word-break: break-all;
  transition: color 0.3s ease;
}

a.contact-card__value:hover {
  color: var(--moss);
}

a.contact-card__value:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
  border-radius: 4px;
}

.contact-card__address {
  font-style: normal;
  word-break: normal;
  line-height: 1.6;
}

.contact-card__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.contact-card__social a {
  color: var(--moss);
  transition: color 0.3s ease;
}

.contact-card__social a:hover {
  color: var(--moss-light);
}

.contact-card__social a:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
  border-radius: 4px;
}

.contact-card__dot {
  color: var(--charcoal-soft);
}

@media (min-width: 600px) {
  .contact-details__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 9rem 2rem 5rem;
  }

  .contact-details {
    padding: 5rem 2rem;
  }
}

/* ============================================
   SOCIAL
   ============================================ */

.social {
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: var(--linen);
}

.social__inner {
  max-width: 480px;
}

.social__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--moss);
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  border: 1.5px solid var(--moss);
  border-radius: 100px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social__link:hover,
.social__link:focus-visible {
  background-color: var(--moss);
  color: var(--cream);
}

.social__link:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 2px;
}

.social__link svg {
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: var(--charcoal);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: rgba(245, 240, 232, 0.6);
  border: 1px solid rgba(245, 240, 232, 0.15);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer__social-link:hover {
  background: rgba(245, 240, 232, 0.1);
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.3);
}

.footer__social-link:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Small phones (375px and under) */
@media (max-width: 380px) {
  .hero__logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
  }

  .about-card__content {
    padding: 3rem 1rem;
  }

  .location,
  .contact,
  .social {
    padding: 3rem 1rem;
  }

  .social__links {
    gap: 1rem;
  }

  .contact__link {
    padding: 0.75rem 1rem;
  }
}

/* Tablet and up */
@media (min-width: 768px) {
  .hero__logo {
    width: 200px;
    height: 200px;
    margin-bottom: 2.5rem;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .about-card__card {
    border-radius: 48px;
  }

  .about-card__content {
    padding: 5rem 2rem;
  }

  .contact {
    padding: 5rem 2rem;
  }

  .social {
    padding: 5rem 2rem;
  }
}

/* ============================================
   HAMBURGER MENU (Mobile)
   ============================================ */

.navbar__toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 10003;
  flex-direction: column;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.navbar__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile: dropdown below navbar */
.navbar__links--open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(30, 25, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.navbar__links--open .navbar__link {
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  color: rgba(245, 240, 232, 0.85);
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.navbar__links--open .navbar__link:last-child {
  border-bottom: none;
}

.navbar__links--open .navbar__link:hover {
  background: rgba(245, 240, 232, 0.1);
  color: var(--cream);
}

/* Desktop: show links inline, hide toggle */
@media (min-width: 601px) {
  .navbar__links {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }
}

/* Hide social icons on small screens */
@media (max-width: 600px) {
  .navbar__social {
    display: none;
  }
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */

.section-divider {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider--dark {
  background: transparent;
  margin-bottom: -1px;
}

.section-divider--cream {
  background: transparent;
  margin-bottom: -1px;
}

.section-divider--tan {
  background: transparent;
  margin-bottom: -1px;
}

@media (min-width: 768px) {
  .section-divider svg {
    height: 80px;
  }
}

/* ============================================
   ABOUT — Photo + Glass Card (Homepage)
   ============================================ */

.about-photo {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.about-photo__bg {
  position: absolute;
  inset: 0;
  background: url('assets/roaster-new.jpg') center center / cover no-repeat;
  z-index: 0;
}

.about-photo__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 22, 16, 0.35) 0%,
    rgba(30, 22, 16, 0.25) 50%,
    rgba(30, 22, 16, 0.4) 100%
  );
}

.about-photo__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-photo__glass {
  background: rgba(44, 42, 38, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 520px;
  text-align: center;
}

.about-photo__label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.5rem;
}

.about-photo__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.9);
  margin-bottom: 1.25rem;
}

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

.about-photo__text--highlight {
  color: #e8d9b8;
  font-style: italic;
}

@media (min-width: 768px) {
  .about-photo {
    min-height: 85vh;
    padding: 6rem 2rem;
  }

  .about-photo__glass {
    padding: 4rem 3.5rem;
    border-radius: 32px;
  }
}

/* ============================================
   ABOUT PAGE — Story Section
   ============================================ */

.about-story {
  padding: 5rem 1.5rem;
  background-color: var(--cream);
  display: flex;
  justify-content: center;
}

.about-story__inner {
  max-width: 640px;
  width: 100%;
}

.about-story__body p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
}

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

@media (min-width: 768px) {
  .about-story {
    padding: 6rem 2rem;
  }
}

/* ============================================
   ABOUT PAGE — Values Section
   ============================================ */

.about-values {
  padding: 5rem 1.5rem;
  background-color: var(--linen);
  display: flex;
  justify-content: center;
}

.about-values__inner {
  max-width: 64rem;
  width: 100%;
}

.about-values__inner .section-label {
  text-align: center;
  margin-bottom: 3rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-values__card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.about-values__icon {
  color: var(--moss);
  margin-bottom: 0.5rem;
}

.about-values__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--charcoal);
}

.about-values__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 320px;
}

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

@media (min-width: 768px) {
  .about-values {
    padding: 6rem 2rem;
  }
}

/* ============================================
   ABOUT PAGE — Bottom CTA
   ============================================ */

.about-cta {
  padding: 5rem 1.5rem;
  background-color: var(--charcoal);
  display: flex;
  justify-content: center;
  text-align: center;
}

.about-cta__inner {
  max-width: 480px;
}

.about-cta__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: #e8d9b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
  min-height: 44px;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.about-cta__btn--primary {
  background: var(--cream);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-cta__btn--primary:hover {
  background: #fff;
  transform: scale(1.04);
}

.about-cta__btn--secondary {
  background: transparent;
  color: var(--tan);
  border: 1.5px solid rgba(212, 196, 168, 0.4);
}

.about-cta__btn--secondary:hover {
  border-color: var(--tan);
  color: var(--cream);
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .about-cta {
    padding: 6rem 2rem;
  }
}

/* ============================================
   GSAP INITIAL STATES
   ============================================ */

/* Elements animated by GSAP start visible (autoAlpha handles the rest).
   This ensures content is visible if JS fails to load. */
.hero__inner,
.about-card__content,
.about-story__body p,
.about-values__card,
.location-cta__inner,
.contact-cta__inner,
.about-cta__inner,
.contact-hero__title,
.contact-hero__subtitle,
.contact-card,
.loc-hero__title,
.loc-hero__address,
.loc-hero__contact,
.section-label {
  visibility: visible;
}

/* Reduced motion: skip animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__cta {
    animation: none;
  }
}

/* ============================================
   HERO MENU BUTTON (homepage)
   ============================================ */

.hero__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  background: var(--cream);
  padding: 0.95rem 2.6rem;
  min-height: 48px;
  margin-bottom: 3rem;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero__menu-btn:hover {
  background: #fff;
  transform: scale(1.04);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.hero__menu-btn:active {
  transform: scale(0.98);
}

.hero__menu-btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.hero__menu-btn svg {
  transition: transform 0.2s ease;
}

.hero__menu-btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   MENU PAGE
   ============================================ */

.menu-page {
  padding-top: 4.5rem; /* clear fixed navbar */
  background-color: var(--cream);
}

.menu-hero {
  text-align: center;
  padding: 3.5rem 1.5rem 1rem;
}

.menu-hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.85rem;
}

.menu-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.25rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}

.menu-hero__note {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--bark);
  max-width: 36rem;
  margin: 0 auto;
}

.menu-wrap {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.menu-section {
  margin-bottom: 3.5rem;
}

.menu-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  color: var(--moss);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.menu-section__title::before,
.menu-section__title::after {
  content: '\2605'; /* star */
  font-size: 0.7em;
  color: var(--bark);
  vertical-align: middle;
  margin: 0 0.6rem;
  opacity: 0.7;
}

.menu-group {
  margin-bottom: 2.5rem;
}

.menu-group:last-child {
  margin-bottom: 0;
}

.menu-group__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(107, 82, 65, 0.25);
}

.menu-list {
  list-style: none;
}

.menu-item {
  padding: 0.7rem 0;
}

.menu-item + .menu-item {
  border-top: 1px dashed rgba(107, 82, 65, 0.18);
}

.menu-item__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.menu-item__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--bark);
  margin-left: 0.4rem;
}

.menu-item__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--moss);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin-top: 0.3rem;
  max-width: 90%;
}

.menu-item__desc strong {
  color: var(--bark);
  font-weight: 600;
}

.menu-foot-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--bark);
  margin-top: 1rem;
}

.menu-foot-note a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .menu-hero {
    padding-top: 4.5rem;
  }
}
