/* ==========================================================================
   TRACE TRAVEL BREW — Design System & Styles
   Handcrafted. Intentional. Human.
   ========================================================================== */

/* ---- Design Tokens ---- */
:root {
  --gold:         #D4A574;
  --gold-light:   #E4C09E;
  --gold-dark:    #B8895A;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D8;
  --charcoal:     #2C2C2C;
  --charcoal-mid: #4A4A4A;
  --coral:        #E8A89A;
  --coral-soft:   #F2C4B8;
  --sage:         #A8B8A0;
  --white:        #FDFCFA;
  --black:        #1A1A1A;

  --font-serif:   'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;
  --font-accent:  'Cormorant Garamond', 'Georgia', serif;

  --nav-height:   88px;
  --container:    1140px;
  --gutter:       clamp(20px, 4vw, 60px);
  --section-pad:  clamp(60px, 10vw, 120px);
  --radius:       3px;
  --radius-lg:    8px;

  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

::selection {
  background: var(--gold-light);
  color: var(--charcoal);
}

.hidden { display: none !important; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ==========================================================================
   ACCESSIBILITY — Skip link & Focus styles
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--charcoal);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

/* Global focus-visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Override for form inputs (they have their own focus style) */
.form-input:focus-visible {
  outline: none;
}


/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.nav--scrolled .nav__links a {
  color: var(--gold);
  text-shadow: none;
}

.nav--scrolled .nav__cta {
  background: var(--gold);
  color: var(--charcoal) !important;
}

.nav--scrolled .nav__cta:hover {
  background: var(--gold-light);
}

.nav--scrolled .nav__toggle span {
  background: var(--gold);
}

/* Keep nav dark on pages without a hero (e.g. privacy.html) */
.nav--fixed-dark {
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 64px;
  width: auto;
  transition: opacity 0.3s, filter 0.4s var(--ease-out);
}

.nav__logo:hover img {
  opacity: 0.8;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.3s var(--ease-out) !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 110;
  background: var(--charcoal);
  border-radius: 6px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
  transform-origin: center;
}

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

/* Mobile menu backdrop */
.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(26, 26, 26, 0.4);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.nav__backdrop.active {
  opacity: 1;
  pointer-events: auto;
}


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--charcoal);
  /* When you add a hero image, use: background: url('../images/hero.jpg') center/cover no-repeat; */
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(26, 26, 26, 0.15) 40%,
    rgba(26, 26, 26, 0.55) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 720px;
}

.hero__tagline-wrap {
  /* wrapper for title group */
}

.hero__above-title {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  color: var(--coral-soft);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.75s forwards;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 300;
  color: rgba(253, 252, 250, 0.7);
  margin-top: 20px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}

.hero__scroll-hint span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.6);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn__text,
.btn__loading {
  display: inline;
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.25);
}

.btn--ghost {
  border: 1.5px solid rgba(253, 252, 250, 0.35);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--submit {
  width: 100%;
  max-width: none;
  background: var(--charcoal);
  color: var(--cream);
  padding: 16px 32px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.btn--submit:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.2);
}


/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header__label {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: #8A6840;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-header__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}


/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a574' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
}

.drink-card--featured {
  grid-column: 1 / -1;
}

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

.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 44, 44, 0.07);
}

/* Free K-Cup card — distinct sage accent */
.drink-card--free {
  border: 1.5px solid var(--sage);
}

.drink-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

.drink-card--featured .drink-card__image {
  aspect-ratio: 4 / 3;
}

/* ---- Individual drink images ---- */
.drink-card__crop {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.drink-card__crop--iced-latte {
  background-image: url('../zoomedoutlatte.png');
  background-size: contain;
  background-color: #f5f0e8;
}

.drink-card__crop--jet-blue {
  background-image: url('../jetbluelemonade.jpg');
}

.drink-card__crop--hot-latte {
  background-image: url('../HotLatte.jpg');
}

.drink-card__crop--pink-passport {
  background-image: url('../pinkpassportlemonade.jpg');
}

.drink-card__crop--first-class {
  background-image: url('../FirstClassSplash.jpg');
}

.drink-card__crop--kcup {
  background-image: url('../kcupstockphoto.jpg');
}

.drink-card__body {
  padding: 28px 24px;
}

.drink-card--featured .drink-card__body {
  padding: 32px 28px;
  text-align: center;
}

.drink-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}

.drink-card--featured .drink-card__name {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 14px;
}

.drink-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal-mid);
}

.drink-card__tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
}

.drink-card__tag--free {
  color: #6B7D63;
  border-color: #6B7D63;
}


/* ==========================================================================
   IMPACT SECTION
   ========================================================================== */
.impact {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.impact__bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.impact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  gap: 0;
}

.impact__mission {
  text-align: center;
  margin-bottom: 28px;
}

.impact__content {
  text-align: center;
}

.impact__label {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.impact__mission-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(245, 240, 232, 0.92);
  letter-spacing: -0.01em;
}

.impact__accent {
  color: var(--gold);
  font-style: italic;
}

.impact__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.impact__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
  opacity: 0.6;
}

.impact__statement {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.impact__statement strong {
  color: var(--gold-light);
  font-weight: 600;
}

.impact__statement em {
  color: var(--coral-soft);
  font-style: normal;
  font-weight: 500;
}

.impact__statement a,
.impact__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  transition: text-decoration-color 0.3s;
}

.impact__statement a:hover,
.impact__body a:hover {
  text-decoration-color: var(--coral-soft);
}

.impact__body {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 16px;
  line-height: 1.7;
}

.impact__counter {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.impact__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.impact__number {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.impact__number-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}



/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__photo {
  position: relative;
}

.about__img {
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.about__photo::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -16px;
  right: 16px;
  bottom: -16px;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__content {
  /* text content wrapper */
}

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-top: 10px;
}

.about__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.about__text {
  font-size: 16px;
  color: var(--charcoal-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__text em {
  color: var(--coral);
  font-style: normal;
  font-weight: 500;
}

.about__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  transition: text-decoration-color 0.3s;
}

.about__text a:hover {
  text-decoration-color: var(--coral);
}

.about__text--tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--charcoal);
  margin-top: 8px;
}

.about__socials {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: color 0.3s;
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
}

.social-link:hover {
  color: var(--gold-dark);
}

.social-link:hover svg {
  transform: translateY(-2px);
}


/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.gallery__slideshow {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}

.gallery__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gallery__slide--active {
  opacity: 1;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__prev,
.gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(44, 44, 44, 0.55);
  color: var(--cream);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  z-index: 2;
}

.gallery__prev { left: 16px; }
.gallery__next { right: 16px; }

.gallery__prev:hover,
.gallery__next:hover {
  background: var(--gold-dark);
  transform: translateY(-50%) scale(1.08);
}

.gallery__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(253, 252, 250, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}

.gallery__dot:hover {
  background: rgba(253, 252, 250, 0.8);
}

.gallery__dot--active {
  background: var(--gold);
  transform: scale(1.2);
}


/* ==========================================================================
   BOOKING SECTION
   ========================================================================== */
.booking {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.booking__info {
  /* info column wrapper */
}

.booking__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-top: 10px;
}

.booking__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.booking__text {
  font-size: 16px;
  color: var(--charcoal-mid);
  line-height: 1.75;
}

.booking__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal-mid);
}

.booking__feature-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Form ---- */
.booking__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 2px 20px rgba(44, 44, 44, 0.04);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.form-input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid rgba(44, 44, 44, 0.1);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-input::placeholder {
  color: rgba(44, 44, 44, 0.3);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.3);
}

/* Validation states */
.form-input:user-invalid {
  border-color: #c44;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---- Success State ---- */
.booking__success {
  text-align: center;
  padding: 48px 24px;
}

.booking__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.booking__success h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.booking__success p {
  font-size: 15px;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* ---- Inline Error State ---- */
.booking__error {
  text-align: center;
  padding: 16px 20px;
  background: #fef2f2;
  border: 1px solid #e8b4b4;
  border-radius: var(--radius);
  margin-top: 4px;
}

.booking__error p {
  font-size: 14px;
  color: #7c2d2d;
  line-height: 1.6;
}

.booking__error a {
  color: #7c2d2d;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.6);
  padding: 60px 0 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.85;
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 15px;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0.7;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 14px;
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--gold-light);
}

.footer__mission-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer__mission {
  font-size: 14px;
}

.footer__mission em {
  color: var(--coral-soft);
  font-style: normal;
}

.footer__mission a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold-dark);
  transition: text-decoration-color 0.3s;
}

.footer__mission a:hover {
  text-decoration-color: var(--coral-soft);
}

.footer__ctg-logo {
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.footer__ctg-logo:hover {
  opacity: 0.8;
}

.footer__ctg-logo img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

.footer__empowered {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 8px;
}


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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* Fixed stagger order */
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


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

/* Tablet */
@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    padding: 40px max(32px, env(safe-area-inset-left)) 40px max(32px, env(safe-area-inset-right));
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
    z-index: 9999;
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
  }

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

  .nav__backdrop {
    display: none;
  }

  .nav__toggle {
    z-index: 10000;
  }

  .nav__links a {
    font-size: 18px;
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--cream);
    text-shadow: none;
    letter-spacing: 0.06em;
  }

  .nav__links a::after {
    background: var(--gold);
  }

  .nav__cta {
    margin-top: 12px;
    color: var(--charcoal) !important;
  }

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

  .drink-card--featured .drink-card__body {
    padding: 28px 24px;
  }

  .impact__mission-headline {
    font-size: clamp(24px, 4.5vw, 32px);
  }

  .gallery__prev,
  .gallery__next {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo {
    max-width: 400px;
  }

  .about__photo::before {
    top: 12px;
    left: -12px;
    right: 12px;
    bottom: -12px;
  }

  .booking__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__mission-bar {
    flex-direction: column;
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .btn--submit {
    max-width: none;
  }

  .menu__grid {
    gap: 20px;
  }

  .drink-card__body {
    padding: 20px 18px;
  }

  .impact__counter {
    flex-direction: column;
    gap: 24px;
  }

  .impact__badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
  }

  .gallery__prev,
  .gallery__next {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .gallery__prev { left: 10px; }
  .gallery__next { right: 10px; }

  .gallery__dots { bottom: 10px; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    gap: 28px;
  }

  .hero__scroll-hint {
    display: none;
  }
}

/* Accessibility: Reduced motion */
@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;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
