/* =============================================
   CAFE AURORA — style.css
   Premium Specialty Cafe
   ============================================= */

/* ── 1. RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-deep:   #4E342E;
  --brown-mid:    #8D6E63;
  --brown-light:  #D7CCC8;
  --cream:        #FAF8F5;
  --cream-dark:   #F2EDE6;
  --cream-warm:   #EDE5DA;
  --text:         #2C2C2C;
  --text-mid:     #6B5B52;
  --text-light:   #A89890;
  --white:        #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Noto Sans KR', sans-serif;
  --font-util:    'DM Sans', sans-serif;

  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 64px;
  --sp-xl: 100px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-card: 0 4px 24px rgba(78,52,46,.08);
  --shadow-hover: 0 16px 48px rgba(78,52,46,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);

  --header-h: 70px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1160px, 90%);
  margin-inline: auto;
}

/* ── 2. SECTIONS ── */
.section { padding-block: clamp(72px, 10vw, 120px); }
.section--warm { background: var(--cream-warm); }
.section--cream { background: var(--cream-dark); }

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-sub {
  color: var(--text-mid);
  font-size: 16px;
  margin-top: 12px;
}

/* ── 3. TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--font-util);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown-deep);
  letter-spacing: -0.5px;
}
.section-title em {
  font-style: italic;
  color: var(--brown-mid);
}

/* ── 4. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-util);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--warm {
  background: var(--brown-deep);
  color: var(--white);
}
.btn--warm:hover {
  background: #3a2520;
  box-shadow: 0 8px 28px rgba(78,52,46,.35);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--warm-outline {
  background: transparent;
  color: var(--brown-deep);
  border-color: var(--brown-deep);
}
.btn--warm-outline:hover {
  background: var(--brown-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: 13px; }

/* ── 5. HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(250,248,245,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(78,52,46,.08), 0 4px 24px rgba(78,52,46,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1160px, 90%);
  margin-inline: auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-util);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.header.scrolled .header__logo { color: var(--brown-deep); }
.logo-icon { width: 28px; height: 28px; transition: color var(--transition); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-a {
  font-family: var(--font-util);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  padding: 7px 14px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-a:hover { color: var(--white); background: rgba(255,255,255,.12); }
.header.scrolled .nav-a { color: var(--text-mid); }
.header.scrolled .nav-a:hover { color: var(--brown-deep); background: var(--cream-dark); }
.nav-a--cta {
  background: var(--brown-deep);
  color: var(--white) !important;
  padding: 8px 20px;
  font-weight: 500;
}
.nav-a--cta:hover { background: #3a2520 !important; }
.header.scrolled .nav-a--cta { background: var(--brown-deep); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--brown-deep); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(16px);
  display: none;
  flex-direction: column;
  padding: 12px 0 20px;
  border-bottom: 1px solid var(--brown-light);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mob-a {
  padding: 13px 24px;
  font-family: var(--font-util);
  font-size: 15px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(78,52,46,.06);
  transition: var(--transition);
}
.mob-a:hover { color: var(--brown-deep); padding-left: 32px; }
.mob-a--cta {
  margin: 12px 24px 0;
  padding: 12px 24px;
  background: var(--brown-deep);
  color: var(--white) !important;
  border-radius: 50px;
  text-align: center;
  border: none;
}
.mob-a--cta:hover { background: #3a2520; padding-left: 24px; }

/* ── 6. HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-deep);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(141,110,99,.3) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(78,52,46,.8) 0%, transparent 60%);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,28,22,.3) 0%, rgba(78,52,46,.15) 50%, rgba(44,28,22,.5) 100%);
}
.hero__deco {
  position: absolute;
  right: 10%; bottom: 0;
  width: min(300px, 40vw);
  height: auto;
  opacity: .5;
}
.steam-path { stroke-dasharray: 200; stroke-dashoffset: 200; animation: steamDraw 4s ease-in-out infinite alternate; }
.s1 { animation-delay: 0s; }
.s2 { animation-delay: .8s; }
.s3 { animation-delay: 1.6s; }
@keyframes steamDraw {
  0% { stroke-dashoffset: 200; opacity: 0; }
  40% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: .3; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  max-width: 760px;
}
.hero__label {
  font-family: var(--font-util);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 24px;
  opacity: .8;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 86px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--brown-light);
  font-weight: 300;
}
.hero__sub {
  font-family: var(--font-util);
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.6);
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.hero__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-family: var(--font-util);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s 1.2s both;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* Hero reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp .9s var(--d, 0s) cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── 7. SCROLL REVEAL ── */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s calc(var(--delay, 0s)), transform .7s calc(var(--delay, 0s));
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}
.js-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 8. BRAND STORY ── */
.story__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.story__visual { position: relative; }
.story__img-wrap {
  background: var(--cream-warm);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story__cup { width: 80%; height: auto; }

.steam-anim {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: steamRise 3s ease-in-out infinite;
}
@keyframes steamRise {
  0%, 100% { stroke-dashoffset: 60; opacity: 0; }
  30% { opacity: .7; }
  80% { stroke-dashoffset: 0; opacity: 0; }
}

.story__badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--brown-deep);
  color: var(--white);
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-card);
}
.badge-year { font-family: var(--font-util); font-size: 10px; letter-spacing: 1.5px; opacity: .7; }
.story__badge strong { font-family: var(--font-display); font-size: 24px; font-weight: 400; line-height: 1; }

.story__text { display: flex; flex-direction: column; gap: 20px; }
.story__desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 480px;
}

.value-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(78,52,46,.06);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--brown-light);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}
.value-card__icon { width: 36px; height: 36px; flex-shrink: 0; margin-top: 2px; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 4px;
}
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ── 9. MENU ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.menu-card__img {
  background: var(--cream);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}
.menu-card__img svg { width: 100%; max-width: 160px; height: auto; }
.menu-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.menu-badge {
  font-family: var(--font-util);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-deep);
  background: var(--cream-warm);
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}
.menu-badge--new { background: #F3E8D0; color: #8B5E2A; }
.menu-badge--pick { background: #E8EEF5; color: #2A4A6B; }
.menu-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.2;
}
.menu-card__desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; flex: 1; }
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(78,52,46,.06);
}
.menu-price {
  font-family: var(--font-util);
  font-size: 16px;
  font-weight: 500;
  color: var(--brown-deep);
}
.menu-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--brown-deep);
  color: var(--white);
  border: none;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.menu-btn:hover { background: #3a2520; transform: rotate(90deg) scale(1.1); }
.menu-cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}

/* ── 10. GALLERY ── */
.gallery-section { padding-bottom: 0; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: clamp(32px, 5vw, 56px);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item__inner {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item__inner:hover { transform: scale(.98); box-shadow: var(--shadow-hover); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,28,22,.5);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item__inner:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span {
  font-family: var(--font-util);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  opacity: .9;
}

/* ── 11. FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.feature { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.feature__icon {
  width: 80px; height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.feature:hover .feature__icon { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature__icon svg { width: 36px; height: 36px; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-deep);
}
.feature p { font-size: 14px; color: var(--text-mid); line-height: 1.8; max-width: 280px; }

/* ── 12. REVIEWS ── */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(5, 100%);
  gap: 24px;
  overflow: hidden;
  cursor: grab;
}
.reviews-track.dragging { cursor: grabbing; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { font-size: 18px; color: #D4A843; letter-spacing: 2px; }
.review-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(78,52,46,.06);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; color: var(--brown-deep); font-weight: 600; }
.review-author span { font-size: 12px; color: var(--text-light); }

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.rev-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-light);
  background: transparent;
  color: var(--brown-deep);
  font-size: 18px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.rev-nav:hover { background: var(--brown-deep); color: var(--white); border-color: var(--brown-deep); }
.rev-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brown-light);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.rev-dot.active { background: var(--brown-deep); transform: scale(1.3); }

/* ── 13. LOCATION ── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 24px; }
.location-dl { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.location-dl__row {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(78,52,46,.08);
}
.location-dl__row:last-child { border-bottom: none; }
.location-dl__row dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-util);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown-mid);
  min-width: 64px;
  padding-top: 2px;
}
.location-dl__row dd { font-size: 14px; color: var(--text); line-height: 1.8; }
.location-dl__row dd span { font-weight: 600; color: var(--brown-deep); margin-right: 6px; }
.location-closed {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-light);
  background: rgba(78,52,46,.06);
  padding: 2px 10px;
  border-radius: 50px;
}

.location-map { border-radius: var(--radius-xl); overflow: hidden; }
.map-placeholder {
  aspect-ratio: 1;
  background: var(--cream);
  border: 1.5px dashed var(--brown-light);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
}
.map-placeholder p { font-size: 15px; color: var(--brown-deep); font-weight: 500; }
.map-placeholder span { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ── 14. INSTAGRAM ── */
.insta-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  gap: 16px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.insta-item__inner {
  width: 100%; height: 100%;
  position: relative;
  transition: var(--transition);
}
.insta-item__inner:hover { transform: scale(.96); border-radius: var(--radius-sm); }
.insta-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,28,22,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.insta-item__inner:hover .insta-item__overlay { opacity: 1; }

/* ── 15. FOOTER ── */
.footer {
  background: var(--brown-deep);
  color: rgba(255,255,255,.75);
  padding-top: clamp(56px, 7vw, 80px);
}
.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { color: var(--white) !important; }
.footer__brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.5); }
.footer__sns { display: flex; gap: 14px; margin-top: 4px; }
.footer__sns a {
  color: rgba(255,255,255,.45);
  transition: var(--transition);
  display: flex;
}
.footer__sns a:hover { color: var(--white); }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col strong {
  font-family: var(--font-util);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
  display: block;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: block;
}
.footer__col a:hover { color: var(--white); padding-left: 4px; }
.footer__bottom {
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.footer__links { display: flex; gap: 20px; margin-left: auto; }
.footer__links a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer__links a:hover { color: rgba(255,255,255,.7); }
.footer__copy { width: 100%; }

/* ── 16. BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brown-deep);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(78,52,46,.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  z-index: 800;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: #3a2520; transform: translateY(-3px); }

/* ── 17. RESPONSIVE ── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .story__layout { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .story__img-wrap { aspect-ratio: 3/2; }
  .location-layout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer__links { margin-left: 0; }
  .insta-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; align-items: center; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__nav { grid-template-columns: 1fr; }
  .story__badge { width: 70px; height: 70px; bottom: -12px; right: -8px; }
}

/* ── 18. ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--brown-mid);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
