/* ============================================
   DINKY'S – Coastal Restaurant & Cocktail Bar
   Design System & Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-bg: #F7F4EE;
  --color-bg-alt: #EDE9E0;
  --color-blue: #2C3E6B;
  --color-blue-light: #3D5290;
  --color-gold: #C9A96E;
  --color-gold-light: #D4BC8A;
  --color-sand: #E8DFD0;
  --color-gray: #B0ADA5;
  --color-dark: #1A1A1A;
  --color-dark-soft: #2D2D2D;
  --color-white: #FFFFFF;
  --color-overlay: rgba(26, 26, 26, 0.55);

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

  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s ease;
  --transition-slow: 0.8s ease;

  /* Shadows */
  --shadow-soft: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-medium: 0 4px 30px rgba(0,0,0,0.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;
}

/* Page transition */
body {
  animation: pageFadeIn 0.5s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.7;
  font-weight: 400;
  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;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-dark-soft);
}

.text-gold { color: var(--color-gold); }
.text-blue { color: var(--color-blue); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-large {
  padding: var(--space-4xl) 0;
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: var(--space-md) auto;
}

.gold-divider-left {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: var(--space-md) 0;
}

/* ---------- Shiplap Texture ---------- */
.shiplap-band {
  background-color: var(--color-sand);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(0,0,0,0.03) 28px,
    rgba(0,0,0,0.03) 30px
  );
  padding: var(--space-xl) 0;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ============================================
   ADDRESS BAR
   ============================================ */
.address-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #F68D39;
  color: #FFFFFF;
  text-align: center;
  padding: 8px var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}

.address-bar span {
  color: #FFFFFF;
  font-weight: 500;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 0 var(--space-lg);
}

.nav--transparent {
  background: transparent;
}

.nav--scrolled {
  background: rgba(247, 244, 238, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-base);
  line-height: 1;
  position: relative;
  top: 4px;
  margin-left: -30px;
}

.nav__logo-icon {
  height: 70px;
  width: auto;
  transition: transform var(--transition-base);
}

.nav__logo:hover .nav__logo-icon {
  transform: scale(1.05);
}

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

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-white);
}

.nav--scrolled .nav__link {
  color: var(--color-dark-soft);
}

.nav--scrolled .nav__link:hover {
  color: var(--color-dark);
}

.nav__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
}

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

/* Mobile Menu Overlay */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-dark);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav__mobile-menu.active {
  display: flex;
  opacity: 1;
}

.nav__mobile-menu a {
  font-family: var(--font-headline);
  font-size: 2rem;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav__mobile-menu a:hover {
  color: var(--color-gold);
}

.nav__mobile-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   HERO GALLERY
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Blue shiplap with anchors and rope pattern */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6ba3cf;
  background-image:
    /* Anchor icons scattered */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 24 24' fill='none' stroke='%23a8cee8' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.35'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Cpath d='M12 7v14'/%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M8 12c0 2.5 1.8 4 4 4s4-1.5 4-4'/%3E%3Cpath d='M5 20c0-2-1.5-3.5-3.5-3.5'/%3E%3Cpath d='M19 20c0-2 1.5-3.5 3.5-3.5'/%3E%3C/svg%3E"),
    /* Rope/knot pattern */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%2396bfdd' stroke-width='0.4' stroke-linecap='round' stroke-linejoin='round' opacity='0.3'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cpath d='M4 12c0-4 8-4 8 0s8 4 8 0'/%3E%3C/svg%3E"),
    /* Shiplap horizontal planks — lighter shadow lines every 40px */
    repeating-linear-gradient(
      0deg,
      #7ab4dc 0px,
      #7ab4dc 37px,
      #5a93bd 37px,
      #5a93bd 40px
    );
  background-position: 20px 20px, 60px 60px, center;
  background-size: 140px 140px, 100px 100px, auto;
  background-repeat: repeat, repeat, repeat;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(60, 100, 140, 0.2) 0%,
    rgba(60, 100, 140, 0.3) 50%,
    rgba(60, 100, 140, 0.4) 100%
  );
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.hero__logo {
  width: clamp(220px, 32vw, 420px);
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__title--small {
  display: block;
  font-size: 0.32em;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.2em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SPLIT SECTIONS (Editorial Layout)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  position: relative;
  overflow: hidden;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform var(--transition-slow);
}

.split__image:hover img {
  transform: scale(1.03);
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) var(--space-xl);
}

.split__content-inner {
  max-width: 480px;
}

.split__content h2 {
  margin-bottom: var(--space-sm);
}

.split__content p {
  margin-bottom: var(--space-md);
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
  text-align: center;
  padding: var(--space-4xl) 0;
  position: relative;
}

.cta-block--dark {
  background: var(--color-dark);
}

.cta-block--blue {
  background: var(--color-blue);
}

.cta-block--gradient {
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a2a4a 100%);
}

.cta-block h2 {
  margin-bottom: var(--space-sm);
}

.cta-block p {
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

.cta-block .gold-divider {
  margin-bottom: var(--space-lg);
}

/* Instagram feed section */
.insta-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.insta-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.insta-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.insta-grid__item:hover img {
  transform: scale(1.08);
}

.insta-grid__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(201, 169, 110, 0);
  transition: background var(--transition-base);
}

.insta-grid__item:hover::after {
  background: rgba(201, 169, 110, 0.15);
}

/* Icon tiles — subtle nautical SVGs in one cohesive tone */
.insta-grid__item--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sand);
}

.insta-grid__item--icon svg {
  width: 48%;
  height: 48%;
  color: var(--color-gold);
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.insta-grid__item--icon:hover svg {
  opacity: 0.65;
}

.insta-grid__item--icon::after {
  display: none;
}

/* ============================================
   GALLERY STRIP (Sneak Peek)
   ============================================ */
.gallery-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 4px;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-strip__item {
  position: relative;
  overflow: hidden;
  flex: 0 0 25%;
  min-width: 280px;
  scroll-snap-align: start;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery-strip__item:hover img {
  transform: scale(1.05);
}

/* ============================================
   MENU TEASER CARDS
   ============================================ */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.menu-card {
  background: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}

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

.menu-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.05);
}

.menu-card__content {
  padding: var(--space-lg);
}

.menu-card__content h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.menu-card__content .gold-divider-left {
  margin: var(--space-xs) 0 var(--space-sm);
}

.menu-card__content p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   VIBE / FEATURE ITEMS
   ============================================ */
.vibe-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.vibe-item {
  padding: var(--space-lg);
  border-left: 3px solid var(--color-gold);
  background: var(--color-white);
}

.vibe-item h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  color: var(--color-blue);
}

.vibe-item p {
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #F2EEE4;
  color: rgba(42, 42, 42, 0.7);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand h3 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  color: rgba(255,255,255,0.6);
  max-width: 350px;
  font-size: 0.95rem;
}

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

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   FOOTER — CLEAN MINIMALIST (3-column, light background)
   ============================================ */

.footer--clean {
  background: #F2EEE4;
  padding: var(--space-3xl) var(--space-xl) var(--space-lg);
}

.footer--clean__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

/* Column 1 — Brand */
.footer--clean__brand {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E6B;
  margin-bottom: var(--space-sm);
}

.footer--clean__address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(42, 42, 42, 0.7);
}

/* Column 2 — Contact (centered) */
.footer--clean__col--center {
  text-align: center;
}

/* Column 3 — Hours (right-aligned) */
.footer--clean__col--right {
  text-align: right;
}

/* Headings */
.footer--clean__heading {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: #2C3E6B;
  margin-bottom: var(--space-sm);
}

/* Accent text (teal) */
.footer--clean__accent {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3B9B9B;
  margin-bottom: 6px;
}

/* Body text */
.footer--clean__text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(42, 42, 42, 0.7);
}

/* Links */
.footer--clean__link {
  display: block;
  font-size: 0.9rem;
  color: rgba(42, 42, 42, 0.7);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.footer--clean__link:hover {
  color: #2C3E6B;
}

/* Social icons */
.footer--clean__social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: var(--space-md);
}

.footer--clean__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2C3E6B;
  color: #fff;
  transition: all var(--transition-base);
}

.footer--clean__social a:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer--clean__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(44, 62, 107, 0.12);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(42, 42, 42, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .footer--clean__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer--clean__col--right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer--clean {
    padding: var(--space-2xl) var(--space-md) var(--space-lg);
  }
}

/* ============================================
   FLOATING IG BUTTON
   ============================================ */
.floating-ig {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-gold);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-base);
  text-decoration: none;
}

.floating-ig:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(201, 169, 110, 0.4);
}

.floating-ig svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.4) 0%,
    rgba(26, 26, 26, 0.65) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero__content h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* ============================================
   ABOUT PAGE SPECIFICS
   ============================================ */
.about-story {
  padding: var(--space-4xl) 0;
}

.about-story__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-story__content p {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.team-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.team-placeholder__item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-sand);
}

.team-placeholder__item .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-sand);
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--color-gold);
}

.team-placeholder__item h4 {
  margin-bottom: var(--space-xs);
}

.team-placeholder__item p {
  font-size: 0.9rem;
  color: var(--color-gray);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split--reverse {
    direction: ltr;
  }

  .split__content {
    padding: var(--space-xl);
  }

  .menu-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .gallery-strip {
    -webkit-overflow-scrolling: touch;
  }

  .team-placeholder {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 65px;
  }

  .address-bar {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    padding: 7px var(--space-sm);
  }

  .nav {
    top: 22px;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-large {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .vibe-list {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    -webkit-overflow-scrolling: touch;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .floating-ig {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .cta-block {
    padding: var(--space-3xl) 0;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta-group .btn {
    width: 100%;
    max-width: 280px;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   ANIMATIONS (AOS overrides)
   ============================================ */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Custom fade-up with slight scale */
.aos-fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.aos-initialized .aos-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

html.aos-initialized .aos-fade-up.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================
   SCROLL-TRIGGERED MODAL
   ============================================ */
.scroll-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.5s ease;
}

.scroll-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.5s ease;
}

/* Backdrop with premium blur */
.scroll-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Modal card */
.scroll-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: var(--color-bg);
  border-radius: 4px;
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.92) translateY(24px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
              opacity 0.6s ease 0.1s;
}

.scroll-modal.is-open .scroll-modal__card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close button */
.scroll-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-gray);
  cursor: pointer;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.scroll-modal__close:hover,
.scroll-modal__close:focus-visible {
  color: var(--color-dark);
  background: var(--color-sand);
  outline: none;
}

/* Staggered inner content */
.scroll-modal__body > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-modal.is-open .scroll-modal__body > *:nth-child(1) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.scroll-modal.is-open .scroll-modal__body > *:nth-child(2) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.scroll-modal.is-open .scroll-modal__body > *:nth-child(3) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.scroll-modal.is-open .scroll-modal__body > *:nth-child(4) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.scroll-modal.is-open .scroll-modal__body > *:nth-child(5) { transition-delay: 0.65s; opacity: 1; transform: translateY(0); }
.scroll-modal.is-open .scroll-modal__body > *:nth-child(6) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }

/* Typography */
.scroll-modal__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.scroll-modal__title {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.15;
}

.scroll-modal__title + .gold-divider {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.scroll-modal__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark-soft);
  margin-bottom: var(--space-lg);
}

.scroll-modal__cta {
  margin-bottom: var(--space-md);
}

.scroll-modal__dismiss {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.scroll-modal__dismiss:hover,
.scroll-modal__dismiss:focus-visible {
  color: var(--color-dark);
  outline: none;
}

/* Responsive */
@media (max-width: 600px) {
  .scroll-modal {
    padding: var(--space-md);
  }

  .scroll-modal__card {
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  }

  .scroll-modal__title {
    font-size: 1.6rem;
  }

  .scroll-modal__cta {
    width: 100%;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-modal,
  .scroll-modal__card,
  .scroll-modal__body > * {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}