/* === GRACES PRIVATE FOOD SERVICES — styles.css === */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

:root {
  --font-heading: 'Instrument Serif', serif;
  --font-body:    'Inter', sans-serif;
  --color-bg:     #000000;
  --color-text:   #ffffff;
  --section-light-bg:   #f0f0ee;
  --section-light-text: #111111;
  --card-dark-bg:           rgba(255,255,255,0.05);
  --card-dark-border:       rgba(255,255,255,0.12);
  --card-dark-shadow:       0 8px 32px rgba(0,0,0,0.3);
  --card-dark-shadow-hover: 0 12px 48px rgba(0,0,0,0.4);
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; }

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

button { font-family: inherit; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #000;
  z-index: 9999;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* === LIQUID GLASS === */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.10);
  position: relative;
  border-radius: 9999px;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0.00) 40%,
    rgba(255,255,255,0.00) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  background: rgba(255, 255, 255, 0.07);
  position: relative;
  border-radius: 9999px;
  overflow: hidden;
}
.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0.00) 40%,
    rgba(255,255,255,0.00) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  max-width: calc(100vw - 2rem);
}

.nav-logo-pill {
  height: 48px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-logo-icon { color: #fff; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
  user-select: none;
}

.nav-center-pill {
  display: none;
  align-items: center;
  height: 48px;
  padding: 0 0.375rem;
}
.nav-center-pill a {
  display: block;
  padding: 0 0.875rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
  line-height: 48px;
  white-space: nowrap;
}
.nav-center-pill a:hover { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-inquire {
  display: none;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0.5rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-inquire:hover { color: #fff; }
.nav-book-pill {
  display: none;
  align-items: center;
  gap: 0.35rem;
  height: 48px;
  padding: 0 1.125rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.nav-hamburger {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-center-pill { display: flex; }
  .nav-inquire     { display: block; }
  .nav-book-pill   { display: flex; }
  .nav-hamburger   { display: none; }
}

/* === MOBILE SHEET === */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 99;
}
.sheet-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sheet {
  position: fixed;
  right: 0;
  top: 0;
  width: min(88vw, 360px);
  height: 100dvh;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-sheet.open { transform: translateX(0); }

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sheet-logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: #fff;
}
.sheet-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.sheet-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sheet-links {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.sheet-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 0.75rem;
  opacity: 0;
  transform: translateX(16px);
  transition: background 0.2s, color 0.2s, opacity 0.35s ease, transform 0.35s ease;
}
.sheet-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.mobile-sheet.open .sheet-link {
  opacity: 1;
  transform: translateX(0);
}

/* === FULL-VIEWPORT SECTION === */
.full-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* === VIDEO BACKGROUND === */
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 45%);
  mask-image: linear-gradient(to top, black 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

/* === HERO === */
#hero { background: #000; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 1.5rem 5rem;
  max-width: 820px;
  width: 100%;
}

.hero-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
}

.hero-cta-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  min-height: 52px;
}

.hero-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 52px;
  padding: 0 1.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s;
}
.hero-reserve-btn:hover { transform: scale(1.04); filter: brightness(1.1); }
.hero-reserve-btn:active { transform: scale(0.96); }

.email-form-pill {
  display: none;
  align-items: center;
  height: 52px;
  padding: 0 0.4rem 0 1.375rem;
  gap: 0.375rem;
  width: min(380px, calc(100vw - 3rem));
}

.email-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 300;
  min-width: 0;
}
.email-input::placeholder { color: rgba(255, 255, 255, 0.45); }

.email-submit-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
}
.email-submit-btn:hover { background: rgba(255, 255, 255, 0.28); }

.hero-play-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.hero-play-link:hover { color: rgba(255, 255, 255, 0.82); }

/* === SHARED TYPOGRAPHY === */
.section-kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.section-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-heading-lg {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.section-subheading {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 300;
  line-height: 1.65;
  margin-top: 0.625rem;
  max-width: 460px;
}

/* === SERVICES === */
#services {
  background: #000;
  padding: 8rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  min-height: 320px;
  gap: 0.875rem;
  border-radius: 1.25rem;
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  background: rgba(255, 255, 255, 0.07);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.service-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.service-tag {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
}
.service-card-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  margin-top: auto;
  line-height: 1.1;
}
.service-card-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

/* === MENU (light) === */
#menu {
  background: var(--section-light-bg);
  padding: 6rem 2rem;
}
.menu-inner { max-width: 1200px; margin: 0 auto; }
#menu .section-heading { color: var(--section-light-text); }
#menu .section-subheading { color: rgba(0, 0, 0, 0.52); }

.dish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 3rem;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(4, 1fr); }
}

.dish-card {
  background: #fff;
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.dish-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--section-light-text);
  line-height: 1.15;
  margin-bottom: 0.125rem;
}
.dish-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.52);
  line-height: 1.55;
  flex: 1;
}
.dish-meta {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}
.dish-note {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.38);
}

/* === ABOUT === */
#about {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about-inner { max-width: 1200px; margin: 0 auto; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-image-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1rem;
}
.about-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.about-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1.5rem;
}
.about-quote {
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.25rem;
}
.about-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.about-quote cite {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.32);
  font-style: normal;
}

/* === PROCESS === */
#process {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
#process .section-heading { color: #fff; }
#process .section-subheading { color: rgba(255, 255, 255, 0.5); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.process-number {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
}
.process-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
}
.process-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
}

/* === TESTIMONIALS === */
#testimonials {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
#testimonials .section-heading { color: #fff; text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}
.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.testimonial-title {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
}

/* === FAQ === */
#faq {
  background: #000;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
#faq .section-heading { color: #fff; text-align: center; margin-bottom: 3rem; }

.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.375rem 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.975rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: #fff; }
.faq-item-open .faq-question { color: #fff; }
.faq-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item-open .faq-chevron {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.6);
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.faq-item-open .faq-answer { max-height: 500px; opacity: 1; }
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.52);
}

/* === BOOK === */
#book {
  background: #000;
  padding: 8rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.book-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.book-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
}
.book-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  line-height: 1.6;
}
.book-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.25rem;
}
.book-cta-secondary {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.book-cta-secondary:hover { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.book-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}

/* === FOOTER === */
footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 2rem 2.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-wordmark {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
}
.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.55;
}
.footer-socials { display: flex; gap: 0.625rem; margin-top: 0.25rem; }
.footer-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  transition: background 0.2s, color 0.2s;
}
.footer-social:hover { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.8); }
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255, 255, 255, 0.82); }
.footer-address {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy { font-size: 0.76rem; font-weight: 300; color: rgba(255, 255, 255, 0.22); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal-link {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.2s;
}
.footer-legal-link:hover { color: rgba(255, 255, 255, 0.45); }

/* === HERO ENTRANCE ANIMATIONS === */
.hero-tagline,
.hero-heading,
.hero-cta-area,
.hero-play-link {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes gp-blurFadeUp {
    from { opacity: 0; filter: blur(20px); transform: translateY(40px); }
    to   { opacity: 1; filter: blur(0px); transform: translateY(0); }
  }
  .hero-tagline   { animation: gp-blurFadeUp 1s ease-out 0.1s  both; }
  .hero-heading   { animation: gp-blurFadeUp 1s ease-out 0.3s  both; }
  .hero-cta-area  { animation: gp-blurFadeUp 1s ease-out 0.5s  both; }
  .hero-play-link { animation: gp-blurFadeUp 1s ease-out 0.7s  both; }
}
