/* ============================================================
   GRUPO ARTIGIANO — Premium Design System
   ============================================================ */

/* ---------- 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;1,600;1,700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --color-dark:        #1A120B;
  --color-chocolate:   #2C1810;
  --color-espresso:    #3C2415;
  --color-mocha:       #5C3D2E;
  --color-gold:        #C9A84C;
  --color-gold-light:  #D4B86A;
  --color-gold-dim:    #8B7332;
  --color-cream:       #F5E6D3;
  --color-cream-light: #FAF3EB;
  --color-offwhite:    #FDFAF6;
  --color-olive:       #6B7F3A;
  --color-olive-dark:  #4A5A28;
  --color-wine:        #722F37;
  --color-wine-light:  #8B3A44;
  --color-terracotta:  #C67B5C;
  --color-white:       #FFFFFF;
  --color-text:        #2C1810;
  --color-text-light:  #6B5B4E;
  --color-text-muted:  #9E8E82;
  --color-border:      rgba(201, 168, 76, 0.2);
  --color-overlay:     rgba(26, 18, 11, 0.65);
  --color-overlay-heavy: rgba(26, 18, 11, 0.8);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'Cormorant Garamond', 'Georgia', serif;

  /* Font Sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.25rem;
  --text-5xl:  4rem;
  --text-hero: 5rem;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  4rem;
  --space-3xl:  6rem;
  --space-4xl:  8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 80px;

  /* Effects */
  --shadow-sm:  0 2px 8px rgba(26, 18, 11, 0.08);
  --shadow-md:  0 4px 20px rgba(26, 18, 11, 0.1);
  --shadow-lg:  0 8px 40px rgba(26, 18, 11, 0.15);
  --shadow-xl:  0 16px 60px rgba(26, 18, 11, 0.2);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.2);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 50px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 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(--color-text);
  background-color: var(--color-offwhite);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-chocolate);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl);  }

p {
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--color-text-light);
}

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-gold);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--cream {
  background-color: var(--color-cream-light);
}

.section--dark {
  background-color: var(--color-chocolate);
  color: var(--color-cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-cream);
}

.section--dark p {
  color: rgba(245, 230, 211, 0.8);
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: var(--space-md) 0;
  border: none;
}

.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(26, 18, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  font-size: 14px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(245, 230, 211, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: color var(--transition-fast);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-gold);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

/* Mobile Menu */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--short {
  height: 70vh;
  min-height: 500px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero:hover .hero__bg img {
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 18, 11, 0.4) 0%,
    rgba(26, 18, 11, 0.2) 40%,
    rgba(26, 18, 11, 0.6) 80%,
    rgba(26, 18, 11, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-lg);
}

.hero__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: rgba(245, 230, 211, 0.85);
  font-style: italic;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s 1s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-gold);
  animation: scrollLine 2s infinite;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-dark);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(245, 230, 211, 0.4);
}

.btn--outline-light:hover {
  background: rgba(245, 230, 211, 0.1);
  border-color: var(--color-cream);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-chocolate);
  color: var(--color-cream);
}

.btn--dark:hover {
  background: var(--color-espresso);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Brand Cards ---------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  group: true;
}

.brand-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-elegant);
}

.brand-card:hover .brand-card__img {
  transform: scale(1.08);
}

.brand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(26, 18, 11, 0.9) 100%
  );
  transition: background var(--transition-base);
}

.brand-card:hover .brand-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.1) 0%,
    rgba(26, 18, 11, 0.95) 100%
  );
}

.brand-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 2;
}

.brand-card__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.brand-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.brand-card__desc {
  font-size: var(--text-sm);
  color: rgba(245, 230, 211, 0.75);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap var(--transition-base);
}

.brand-card:hover .brand-card__link {
  gap: 14px;
}

.brand-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.brand-card:hover .brand-card__link svg {
  transform: translateX(4px);
}

/* ---------- About / CEO Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-image__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text h3 {
  margin-bottom: var(--space-md);
}

.about-text p {
  margin-bottom: var(--space-md);
}

.about-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Info Cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.info-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border-radius: 50%;
  font-size: 28px;
}

.info-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.info-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
  letter-spacing: 2px;
}

.review-card__text {
  font-family: var(--font-accent);
  font-size: var(--text-md);
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.review-card__author {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-chocolate);
}

.review-card__source {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ---------- Location / Map Section ---------- */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.location-details h4 {
  margin-bottom: var(--space-md);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.location-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 18px;
}

.location-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

.location-item__text strong {
  display: block;
  color: var(--color-chocolate);
  font-weight: 600;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/12;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
  margin-bottom: var(--space-lg);
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  font-size: var(--text-sm);
  color: rgba(245, 230, 211, 0.6);
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer__links a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(245, 230, 211, 0.6);
  padding: 6px 0;
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.footer__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 230, 211, 0.2);
  border-radius: 50%;
  color: var(--color-cream);
  transition: all var(--transition-base);
  font-size: 18px;
}

.footer__social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-3px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(245, 230, 211, 0.4);
}

.footer__lang {
  display: flex;
  gap: var(--space-sm);
}

.footer__lang a {
  font-size: var(--text-xs);
  color: rgba(245, 230, 211, 0.4);
  padding: 4px 10px;
  border: 1px solid rgba(245, 230, 211, 0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.footer__lang a:hover,
.footer__lang a.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ---------- Reservation CTA Bar ---------- */
.cta-bar {
  background: linear-gradient(135deg, var(--color-chocolate), var(--color-dark));
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-bar h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.cta-bar p {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: rgba(245, 230, 211, 0.7);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

/* ---------- Feature Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.badge--wine {
  background: rgba(114, 47, 55, 0.1);
  color: var(--color-wine);
  border-color: rgba(114, 47, 55, 0.2);
}

.badge--olive {
  background: rgba(107, 127, 58, 0.1);
  color: var(--color-olive);
  border-color: rgba(107, 127, 58, 0.2);
}

/* ---------- Page Header (Inner Pages) ---------- */
.page-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 18, 11, 0.3) 0%,
    rgba(26, 18, 11, 0.8) 100%
  );
}

.page-header__content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-2xl);
  width: 100%;
}

.page-header__content .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.page-header__title {
  font-size: var(--text-4xl);
  color: var(--color-white);
}

.page-header__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: rgba(245, 230, 211, 0.75);
  font-style: italic;
}

/* ---------- Content Section (Text blocks) ---------- */
.content-block {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.content-block p {
  font-size: var(--text-md);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.content-block blockquote {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-mocha);
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform var(--transition-elegant);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-elegant);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ---------- Floating Reserve Button ---------- */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  transition: all var(--transition-base);
}

.floating-cta a:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4), var(--shadow-xl);
}

/* ---------- Menu Download Bar ---------- */
.menu-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding: var(--space-xl) 0;
}

/* ---------- NiT Badge ---------- */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-xl);
  transition: all var(--transition-base);
}

.award-badge:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.award-badge__icon {
  font-size: 32px;
}

.award-badge__text {
  text-align: left;
}

.award-badge__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-chocolate);
}

.award-badge__subtitle {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ---------- Two-Column Content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform var(--transition-elegant);
}

.two-col__image:hover img {
  transform: scale(1.03);
}

/* ---------- Mobile Overlay Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 11, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-cream);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--color-gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --text-hero: 3.5rem;
    --text-5xl:  3rem;
    --text-4xl:  2.5rem;
    --text-3xl:  2rem;
  }

  .brands-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .brand-card {
    aspect-ratio: 3/2;
  }

  .about-grid,
  .two-col,
  .location-section {
    grid-template-columns: 1fr;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --text-hero: 2.5rem;
    --text-5xl:  2.25rem;
    --text-4xl:  2rem;
    --text-3xl:  1.75rem;
    --text-2xl:  1.5rem;
    --space-4xl: 5rem;
    --space-3xl: 3.5rem;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: 500px;
  }

  .hero--short {
    min-height: 350px;
    height: 50vh;
  }

  .page-header {
    min-height: 300px;
    height: 40vh;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .floating-cta {
    bottom: 20px;
    right: 20px;
  }

  .floating-cta a {
    padding: 12px 20px;
    font-size: var(--text-xs);
  }
}

@media (max-width: 480px) {
  :root {
    --text-hero: 2rem;
    --text-5xl:  1.75rem;
    --text-4xl:  1.5rem;
    --space-4xl: 4rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-bar {
    flex-direction: column;
  }
}
