/* ===================================================
   THE COZY CUP CAFE — Premium Single-Page Website
   Design System & Global Styles
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors */
  --espresso:        #3B2314;
  --espresso-light:  #5C3A24;
  --mocha:           #6F4E37;
  --caramel:         #A67B5B;
  --latte:           #C4A882;
  --cream:           #F5EDE0;
  --cream-light:     #FAF6F0;
  --off-white:       #FDFAF5;
  --gold:            #C9A96E;
  --gold-light:      #D4B97D;
  --gold-shimmer:    #E8D5A8;
  --warm-black:      #1A1209;
  --warm-gray:       #8B7E70;
  --warm-gray-light: #B5A99A;

  /* Semantic Colors */
  --bg-primary:      var(--off-white);
  --bg-secondary:    var(--cream);
  --bg-hero:         var(--warm-black);
  --text-primary:    var(--espresso);
  --text-secondary:  var(--mocha);
  --text-muted:      var(--warm-gray);
  --text-light:      var(--cream);
  --accent:          var(--gold);
  --accent-hover:    var(--gold-light);

  /* Typography */
  --font-heading:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing Scale */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  30px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast:   0.2s var(--ease-smooth);
  --transition-normal: 0.4s var(--ease-smooth);
  --transition-slow:   0.7s var(--ease-smooth);

  /* Glassmorphism */
  --glass-bg:     rgba(253, 250, 245, 0.72);
  --glass-border: rgba(201, 169, 110, 0.2);
  --glass-blur:   20px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(59, 35, 20, 0.06);
  --shadow-md:    0 4px 16px rgba(59, 35, 20, 0.08);
  --shadow-lg:    0 8px 32px rgba(59, 35, 20, 0.12);
  --shadow-xl:    0 16px 48px rgba(59, 35, 20, 0.16);
  --shadow-gold:  0 4px 20px rgba(201, 169, 110, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

::selection {
  background: var(--gold-shimmer);
  color: var(--espresso);
}

/* --- Scrollbar Styling --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--caramel);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mocha);
}


/* ===================================================
   NAVIGATION — Glassmorphism Sticky
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem var(--space-xl);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.navbar-logo:hover img {
  transform: scale(1.08) rotate(-5deg);
}

.navbar-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--espresso);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.navbar.scrolled .navbar-logo-text {
  color: var(--espresso);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  padding: 0.6rem 1.5rem !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--espresso) !important;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4);
  color: var(--warm-black) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--espresso);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
  background: var(--espresso);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}


/* ===================================================
   HERO SECTION — Carousel Animation
   =================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--off-white);
  transition: background-color var(--transition-slow);
}

/* Dynamic background blob */
.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 1200px;
  max-height: 1200px;
  background: radial-gradient(circle, var(--hero-bg-color, rgba(201, 169, 110, 0.15)) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  transition: background var(--transition-slow);
  animation: blobFloat 12s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-45%, -55%) scale(1.05); }
  100% { transform: translate(-55%, -45%) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px var(--space-xl) var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-4xl);
}

/* Left side: Plate image */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-plate {
  position: absolute;
  width: 90%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(100px) rotate(90deg);
  pointer-events: none;
}

.hero-plate.active {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
  pointer-events: auto;
  animation: rollInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-plate.exit {
  animation: rollOutLeft 1s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

@keyframes rollInRight {
  0% { opacity: 0; transform: translateX(200px) rotate(90deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}

@keyframes rollOutLeft {
  0% { opacity: 1; transform: translateX(0) rotate(0deg); }
  100% { opacity: 0; transform: translateX(-200px) rotate(-90deg); }
}

/* Right side: Typography & Info */
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.hero-tagline span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-bounce);
}

.hero.active-slide .hero-tagline span {
  transform: translateY(0);
}

.hero-title-container {
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--espresso);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s var(--ease-smooth) 0.1s, opacity 0.8s var(--ease-smooth) 0.1s;
}

.hero.active-slide .hero-title {
  transform: translateY(0);
  opacity: 1;
}

.hero-subtitle-container {
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s var(--ease-smooth) 0.2s, opacity 0.8s var(--ease-smooth) 0.2s;
}

.hero.active-slide .hero-subtitle {
  transform: translateY(0);
  opacity: 1;
}

/* Info Card */
.hero-info-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  box-shadow: var(--shadow-md);
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s var(--ease-smooth) 0.3s, opacity 0.8s var(--ease-smooth) 0.3s;
}

.hero.active-slide .hero-info-card {
  opacity: 1;
  transform: translateY(0);
}

.info-rating {
  text-align: center;
}

.info-rating-score {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
}

.info-rating-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 4px;
}

.info-details h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 4px;
}

.info-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Thumbnail Navigation */
.hero-nav {
  position: absolute;
  bottom: var(--space-2xl);
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  z-index: 20;
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--espresso);
  transition: all var(--transition-fast);
  margin: 0 var(--space-md);
}

.nav-arrow:hover {
  background: var(--gold);
  color: white;
  transform: scale(1.1);
}

.hero-thumbnails {
  display: flex;
  gap: var(--space-md);
  max-width: 60vw;
  overflow-x: auto;
  padding: 10px;
  scrollbar-width: none;
}

.hero-thumbnails::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  opacity: 0.6;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.thumbnail:hover, .thumbnail.active {
  opacity: 1;
  transform: scale(1.15);
  box-shadow: var(--shadow-gold);
}

.thumbnail.active {
  border: 2px solid var(--gold);
}


/* ===================================================
   SECTION COMMON STYLES
   =================================================== */
.section {
  padding: var(--space-5xl) var(--space-xl);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Reveal-on-scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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


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

/* Tab navigation */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.7rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  background: transparent;
}

.menu-tab:hover {
  color: var(--text-primary);
  border-color: var(--latte);
}

.menu-tab.active {
  color: var(--espresso);
  background: white;
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

/* Menu display grid */
.menu-display {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  align-items: start;
}

.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
}

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

.menu-card-image-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.menu-card-image-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease-smooth);
}

.menu-card:hover .menu-card-image-wrap img {
  transform: scale(1.04);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 9, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-xl);
}

.menu-card:hover .menu-card-overlay {
  opacity: 1;
}

.menu-card-overlay span {
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.menu-card-overlay span:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.menu-card-body {
  padding: var(--space-lg) var(--space-xl);
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Menu image lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 9, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}


/* ===================================================
   GALLERY / AMBIANCE SECTION
   =================================================== */
.gallery-section {
  background: var(--off-white);
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  columns: 3;
  column-gap: var(--space-lg);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 9, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}


/* ===================================================
   ABOUT / STORY SECTION
   =================================================== */
.about-section {
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

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

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.about-image-wrap:hover img {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  padding: 0.8rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.about-image-badge .badge-icon {
  font-size: 1.5rem;
}

.about-image-badge .badge-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--espresso);
}

.about-content {
  padding: var(--space-xl) 0;
}

.about-content .section-label {
  justify-content: flex-start;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.about-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.about-feature .feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.12);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}


/* ===================================================
   TESTIMONIALS SECTION
   =================================================== */
.testimonials-section {
  background: linear-gradient(160deg, #1A1209 0%, #2C1B0E 50%, #3B2314 100%);
  color: var(--cream);
}

.testimonials-section .section-title {
  color: var(--cream);
}

.testimonials-section .section-subtitle {
  color: rgba(245, 237, 224, 0.6);
}

.testimonials-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(245, 237, 224, 0.75);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--caramel));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-author-info p {
  font-size: 0.78rem;
  color: rgba(245, 237, 224, 0.45);
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: var(--space-md);
}


/* ===================================================
   CONTACT / CTA SECTION
   =================================================== */
.contact-section {
  background: var(--cream-light);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.05));
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: white;
  border: 1.5px solid var(--cream);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray-light);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--espresso);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold);
  align-self: flex-start;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4);
}


/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--warm-black);
  color: rgba(245, 237, 224, 0.6);
  padding: var(--space-4xl) var(--space-xl) var(--space-xl);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-brand-logo span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(245, 237, 224, 0.55);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold-shimmer);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  font-size: 1rem;
  color: rgba(245, 237, 224, 0.6);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}


/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */
@media (max-width: 1024px) {
  .menu-display {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .gallery-grid {
    columns: 2;
  }

  .testimonials-slider {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-content .section-label {
    justify-content: center;
  }

  .about-text {
    text-align: center;
  }

  .about-features {
    max-width: 400px;
    margin: 0 auto var(--space-2xl);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-3xl) var(--space-md);
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-3xl);
    gap: var(--space-xl);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-normal);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text-primary) !important;
    font-size: 1.05rem;
  }

  .nav-cta {
    margin-top: var(--space-md);
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero adjustments */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .hero-visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-content {
    align-items: center;
  }

  .hero-info-card {
    align-self: center;
    margin-top: var(--space-md);
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero-content {
    padding: var(--space-md);
  }

  /* Gallery */
  .gallery-grid {
    columns: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Testimonials */
  .testimonials-slider {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-cta {
    padding: 0.85rem 1.8rem;
    font-size: 0.88rem;
  }

  .hero-visual {
    max-width: 260px;
  }
  
  .hero-inner {
    padding-top: 120px;
    padding-bottom: 160px;
  }

  .hero-nav {
    bottom: var(--space-lg);
  }
  
  .nav-arrow {
    width: 36px;
    height: 36px;
    margin: 0 var(--space-xs);
  }
  
  .thumbnail {
    width: 50px;
    height: 50px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: var(--space-xs);
  }

  .menu-tab {
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
  }
}
