@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wdth,wght@0,75..125,200..900;1,75..125,200..900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --cream:  #F0EBE1;
  --beige:  #E7E2CE;
  --gray:   #888;
  --red:    #B64632;   /* GGuide terracotta — brand color */
  --accent: #B64632;   /* alias */
  --font:   'Mona Sans', sans-serif;
  --serif:  'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--beige);
  color: var(--black);
  font-family: var(--font);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
button { cursor: none; }

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  /* NO mix-blend-mode — nav'da renk tersine dönmüyor */
  opacity: 0.85;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(10,10,10,0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition: width 0.3s, height 0.3s, opacity 0.3s, border-color 0.3s;
}
/* Dark bg (hero, footer vb.) üstünde beyaz ring */
.hero ~ * .cursor-ring,
.footer .cursor-ring { border-color: rgba(255,255,255,0.35); }
.cursor-ring.hover { width: 56px; height: 56px; opacity: 0.5; }

.cursor-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.25s;
  white-space: nowrap;
  will-change: transform;
}
.cursor-label.show { opacity: 1; }

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.loader.out { opacity: 0; pointer-events: none; transform: scale(1.04); }

.loader-word {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  overflow: hidden;
  height: 1.1em;
}

.loader-word span {
  display: block;
  animation: slideUp 0.6s cubic-bezier(.76,0,.24,1) forwards;
}

@keyframes slideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 0.5s, padding 0.4s;
}

.nav.solid {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  padding: 18px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.65; }

.nav-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1); /* hero üstünde beyaz */
  transition: filter 0.4s;
}
.nav.solid .nav-logo-img {
  filter: brightness(0) invert(0);  /* scroll sonrası siyah */
  opacity: 0.82;
}

.nav-links {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ─── NAV DROPDOWN ─── */
.nav-item { position: relative; display: inline-flex; align-items: center; line-height: 1; }
.nav-item > a { display: inline-flex; align-items: center; }
/* invisible hover-bridge so the menu stays open while the cursor crosses the gap */
.nav-item::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 22px;
  pointer-events: none;
}
.nav-item:hover::before { pointer-events: auto; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 300;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45) !important;
  padding: 10px 24px 10px 1px;
  border-bottom: none !important;
  position: static !important;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: #fff !important; background: rgba(255,255,255,0.06); }

.nav-caret { display:inline-block;margin-left:3px;font-size:7px;opacity:.45;transition:transform .2s; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }

.nav-light .nav-dropdown {
  background: rgba(231,226,206,0.98);
  border-color: rgba(0,0,0,0.08);
}
.nav-light .nav-dropdown a { color: rgba(0,0,0,0.4) !important; }
.nav-light .nav-dropdown a:hover { color: var(--black) !important; background: rgba(0,0,0,0.04); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-map-btn {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 9px 20px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.nav-map-btn:hover { border-color: var(--white); color: var(--white); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
}

.hero-bg img {
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-bg img.loaded { transform: scale(1); }

.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, transparent 35%, transparent 50%, rgba(10,10,10,0.85) 100%),
    linear-gradient(to right, rgba(10,10,10,0.3) 0%, transparent 60%);
}

.hero-content { position: relative; }

.hero-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: slideUp 0.9s cubic-bezier(.76,0,.24,1) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 1.3s; }
.hero-title .line:nth-child(2) span { animation-delay: 1.45s; }
.hero-title .line:nth-child(3) span { animation-delay: 1.6s; }

.hero-title .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.88em;
  letter-spacing: -0.02em;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  animation: fadeUp 0.8s 1.9s forwards;
}

.hero-desc {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  text-transform: uppercase;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── OBSESSIONS TICKER ─── */
.ticker-wrap {
  padding: 20px 0;
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 28px;
}

.ticker-dot {
  color: var(--black);
  opacity: 0.4;
  font-size: 6px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION SHARED ─── */
.sec { padding: 120px 48px; }
.sec-dark { background: var(--black); }
.sec-cream { background: var(--beige); color: var(--black); }
.sec-beige { background: var(--beige); color: var(--black); }

.sec-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.sec-title {
  font-weight: 800;
  font-size: clamp(48px, 7vw, 100px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.sec-title .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9em;
}

/* ─── REVEAL ANIMATIONS ─── */
.r {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94),
              transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.r.on { opacity: 1; transform: translateY(0); }
.r-d1 { transition-delay: 0.1s; }
.r-d2 { transition-delay: 0.2s; }
.r-d3 { transition-delay: 0.3s; }
.r-d4 { transition-delay: 0.45s; }

.r-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94),
              transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.r-left.on { opacity: 1; transform: translateX(0); }

/* ─── CATEGORIES (homepage) ─── */
.cats-sec { padding: 0 48px 120px; background: var(--black); }

.cats-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.3;
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cats-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 420px 320px;
  gap: 6px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  background: #111;
  display: block;
}

.cat-card img {
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94), opacity 0.4s;
  opacity: 0.7;
}
.cat-card:hover img { transform: scale(1.06); opacity: 0.9; }

.cat-card.large { grid-row: 1 / 3; }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.cat-num {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.cat-name {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cat-sub {
  font-size: 10px;
  font-weight: 400;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.cat-arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
  transform: translateY(-8px);
  opacity: 0;
}
.cat-card:hover .cat-arrow {
  transform: translateY(0);
  opacity: 1;
  border-color: rgba(255,255,255,0.6);
}

/* ─── I WANT... ─── */
.iwant-sec {
  padding: 140px 48px;
  background: var(--cream);
  color: var(--black);
}

.iwant-intro {
  max-width: 500px;
  margin-bottom: 64px;
}

.iwant-heading {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 20px;
}

.iwant-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.85;
  opacity: 0.5;
  text-transform: uppercase;
}

.iwant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.iwant-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1.5px solid rgba(0,0,0,0.18);
  padding: 12px 22px;
  border-radius: 40px;
  color: var(--black);
  cursor: none;
  transition: all 0.25s;
  background: none;
  font-family: var(--font);
}
.iwant-tag:hover,
.iwant-tag.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ─── G MAP TEASER ─── */
.map-teaser {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: block;
}

.map-teaser img {
  transition: transform 6s ease;
}
.map-teaser:hover img { transform: scale(1.03); }

.map-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.map-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.map-title {
  font-weight: 800;
  font-size: clamp(40px, 7vw, 100px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.map-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  color: var(--white);
  transition: all 0.25s;
}
.map-btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ─── G NOTES ─── */
.notes-sec {
  padding: 120px 48px;
  background: var(--beige);
  color: var(--black);
}

.notes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.note-card {
  background: var(--black);
  color: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 240px;
  transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
  cursor: none;
}
.note-card:hover { transform: translateY(-6px); }

.note-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.note-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  flex: 1;
}

.note-loc {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.35;
}

/* ─── PEOPLE ─── */
.people-sec {
  padding: 120px 48px;
  background: var(--beige);
  color: var(--black);
}

.people-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.people-title {
  font-weight: 800;
  font-size: clamp(48px, 7vw, 100px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.people-title .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9em;
  display: block;
}

.people-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.5;
  font-family: var(--serif);
  font-style: italic;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.person-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
  cursor: none;
}

.person-card img {
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94), filter 0.4s;
  filter: grayscale(0.3);
}
.person-card:hover img { transform: scale(1.05); filter: grayscale(0); }

.person-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  transform: translateY(20px);
  transition: transform 0.4s;
}
.person-card:hover .person-info { transform: translateY(0); }

.person-role {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.person-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.person-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ─── CTA ─── */
.cta-sec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 64px 48px;
  background: var(--beige);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cta-bg { display: none; }

.cta-inner { position: relative; }

.cta-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 16px;
}

.cta-title {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-transform: uppercase;
  display: block;
  color: var(--black);
  transition: opacity 0.2s;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 4px;
  width: fit-content;
}
.cta-title:hover { opacity: 0.55; }

.cta-insta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.35;
  transition: opacity 0.2s;
  display: block;
  color: var(--black);
}
.cta-insta:hover { opacity: 0.7; }

/* ─── FOOTER ─── */
/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

/* Top bar */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding: 40px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-top-left {}
.footer-top-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  opacity: .4; margin-bottom: 12px; display: block;
}
.footer-talk-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 10px 20px; color: var(--white);
  transition: all .2s;
}
.footer-talk-btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.footer-top-center {
  text-align: center;
  display: flex; align-items: center; justify-content: center;
}
.footer-insta {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  opacity: .45; transition: opacity .2s;
}
.footer-insta:hover { opacity: 1; }

.footer-top-right {
  display: flex; align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.footer-back-top {
  display: flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  opacity: .4; transition: opacity .2s;
  cursor: pointer; background: none; border: none;
  color: var(--white); font-family: var(--font);
}
.footer-back-top:hover { opacity: 1; }
.footer-back-top-circle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all .2s;
}
.footer-back-top:hover .footer-back-top-circle {
  background: var(--white); color: var(--black); border-color: var(--white);
}

/* Marquee area with rotating badge */
.footer-marquee-wrap {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}

.footer-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: footerScroll 18s linear infinite;
}

.footer-marquee-track span {
  font-weight: 800;
  font-size: clamp(72px, 11vw, 148px);
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
  padding: 0 40px;
}

@keyframes footerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Rotating circular badge */
.footer-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  cursor: none;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}

.footer-badge-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(8px);
  transition: all .3s;
}

.footer-badge:hover .footer-badge-ring {
  border-color: var(--white);
  background: rgba(10,10,10,.9);
}

.footer-badge-svg {
  position: absolute; inset: 0;
  animation: rotateBadge 8s linear infinite;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.footer-badge-arrow {
  font-size: 22px;
  color: var(--white);
  position: relative; z-index: 1;
  transition: transform .3s;
}
.footer-badge:hover .footer-badge-arrow { transform: scale(1.2); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-nav { display: flex; gap: 24px; align-items: center; }
.footer-nav .nav-item { display: inline-flex; align-items: center; line-height: 1; }
.footer-nav .nav-item > a { display: inline-flex; align-items: center; }
.footer-nav a {
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: .3; transition: opacity .2s;
}
.footer-nav a:hover { opacity: 1; }
.footer-copy { font-size: 10px; opacity: .15; letter-spacing: .04em; }

/* ─── SUB PAGES ─── */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 56px;
  overflow: hidden;
}

.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { opacity: 0.45; }

.page-hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,10,10,0.85) 100%);
}

.page-hero-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.page-hero-title {
  font-weight: 800;
  font-size: clamp(56px, 9vw, 130px);
  letter-spacing: -0.05em;
  line-height: 0.88;
  text-transform: lowercase;
}

.page-hero-right { text-align: right; }
.page-hero-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.page-hero-plain {
  background: var(--black);
  padding: 150px 48px 60px;
}

/* Article list */
.art-list { padding: 60px 48px 100px; background: var(--beige); color: var(--black); }

.art-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--black);
  transition: opacity 0.2s;
}
.art-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.art-item:hover { opacity: 0.65; }
.art-thumb { height: 130px; overflow: hidden; }
.art-date { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.32; margin-bottom: 10px; }
.art-title { font-weight: 800; font-size: 19px; letter-spacing: -0.03em; line-height: 1.15; text-transform: uppercase; }
.art-arrow { font-size: 20px; opacity: 0.25; }

/* Map page */
.g-map-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  background: #0f0f0f;
  overflow: hidden;
}

.g-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(0.5) contrast(1.1);
}

.map-pin-layer {
  position: absolute;
  inset: 0;
}

.map-pin {
  position: absolute;
  cursor: none;
  transform: translate(-50%, -100%);
}

.pin-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200,169,110,0.2);
  transition: transform 0.2s;
  margin: 0 auto;
}
.map-pin:hover .pin-dot { transform: scale(1.6); }

.pin-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--black);
  color: var(--white);
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(4px);
  pointer-events: none;
}
.map-pin:hover .pin-label { opacity: 1; transform: translateX(-50%) translateY(0); }

.map-pin-type {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  color: var(--accent);
  text-align: center;
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}
.map-pin:hover .map-pin-type { opacity: 1; }

/* Contact */
.contact-page { padding: 120px 48px; background: var(--beige); color: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.contact-heading { font-weight: 800; font-size: clamp(40px, 5vw, 72px); letter-spacing: -0.04em; line-height: 1.0; text-transform: uppercase; margin-bottom: 36px; }
.contact-body p { font-size: 12px; line-height: 1.9; opacity: 0.55; margin-bottom: 18px; font-family: var(--serif); }
.contact-detail { display: block; font-size: 13px; font-weight: 600; opacity: 0.75; margin-bottom: 8px; transition: opacity 0.2s; }
.contact-detail:hover { opacity: 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: 8px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.38; }
.form-input, .form-textarea { font-family: var(--font); font-size: 14px; background: none; border: none; border-bottom: 1.5px solid rgba(0,0,0,0.15); padding: 10px 0; outline: none; width: 100%; transition: border-color 0.2s; color: var(--black); }
.form-input:focus, .form-textarea:focus { border-bottom-color: var(--black); }
.form-textarea { resize: none; height: 120px; }
.form-submit { font-family: var(--font); font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; background: var(--black); color: #fff; border: none; padding: 15px 36px; transition: opacity 0.2s; cursor: none; }
.form-submit:hover { opacity: 0.7; }

/* Tabs (conversations) */
.conv-tabs { border-bottom: 1px solid rgba(0,0,0,0.1); display: flex; padding: 0 48px; overflow-x: auto; background: var(--beige); }
.conv-tab { font-family: var(--font); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 18px 28px; border: none; background: none; cursor: none; opacity: 0.32; border-bottom: 2px solid transparent; white-space: nowrap; transition: opacity 0.2s, border-color 0.2s; color: var(--black); }
.conv-tab.active { opacity: 1; border-bottom-color: var(--black); }
.conv-panel { display: none; padding: 80px 48px; background: var(--beige); color: var(--black); }
.conv-panel.active { display: block; }
.conv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.conv-photo { height: 520px; overflow: hidden; }
.conv-heading { font-weight: 800; font-size: clamp(48px, 6vw, 88px); letter-spacing: -0.05em; line-height: 1.0; text-transform: uppercase; margin-bottom: 28px; }
.conv-body { font-size: 12px; line-height: 1.95; opacity: 0.58; font-family: var(--serif); margin-bottom: 32px; }
.conv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.conv-tag { font-size: 8px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border: 1.5px solid rgba(0,0,0,0.2); padding: 7px 14px; opacity: 0.6; color: var(--black); }

/* NAV shared for sub pages */
.nav-light {
  background: var(--beige);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-light .nav-links a { color: rgba(0,0,0,0.55); }
.nav-light .nav-links a:hover { color: var(--black); }
.nav-light .nav-logo-img { filter: brightness(0) invert(0) !important; opacity: 0.82 !important; }
.nav-light .nav-map-btn { border-color: rgba(0,0,0,0.2); color: rgba(0,0,0,0.6); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav { padding: 20px 24px; }
  .nav-links { gap: 18px; position: static; transform: none; }
  .nav-coords, .nav-map-btn { display: none; }

  .hero { padding: 0 24px 48px; }
  .sec { padding: 80px 24px; }
  .cats-sec { padding: 0 24px 80px; }
  .cats-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cat-card { height: 280px; }
  .cat-card.large { grid-row: auto; height: 380px; }
  .notes-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .people-header { grid-template-columns: 1fr; gap: 24px; }
  .art-item { grid-template-columns: 100px 1fr auto; gap: 20px; }
  .art-thumb { height: 80px; }
  .conv-grid { grid-template-columns: 1fr; gap: 40px; }
  .conv-photo { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .conv-tabs, .conv-panel, .art-list, .contact-page { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding-left: 24px; padding-right: 24px; }
  .page-hero-plain { padding-left: 24px; padding-right: 24px; }
  .footer-word { font-size: clamp(52px, 10vw, 100px); }
  .footer-bar { flex-direction: column; gap: 16px; padding: 20px 24px 28px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .iwant-sec { padding: 80px 24px; }
}

/* ─── REVEAL COUNTDOWN STRIP (Stay/Restaurant of the Year) ─── */
.reveal {
  background: var(--red); color: #fff;
  padding: 30px 48px;
  margin-top: 60px;                 /* breathing room: detaches the countdown from the dark hero above */
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.reveal-l { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.reveal-l b { color: #fff; }
.reveal-units { display: flex; gap: 14px; }
.reveal-unit { display: flex; align-items: baseline; gap: 7px; }
.reveal-unit b { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; line-height: 1; }
.reveal-unit span { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
@media (max-width: 640px) { .reveal { padding: 26px 24px; justify-content: flex-start; margin-top: 40px; } }

/* ─── ARTICLE BYLINE (Written by … · date) ─── */
.art-wrap .art-byline, .art-byline { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(0,0,0,0.42); line-height: 1.4; border-bottom: 1px solid rgba(0,0,0,0.12);
  padding-bottom: 22px; margin-bottom: 40px; }
.art-byline b { color: var(--black); font-weight: 800; }
.art-byline .sep { color: var(--red); margin: 0 12px; }

/* ════════════════ HERO CAROUSEL (sliding backgrounds) ════════════════ */
[data-carousel] { overflow: hidden; }
.hc-track { display: flex; width: 100%; height: 100%; will-change: transform; }
.hc-slide { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }
.hc-slide.hc-dead { display: none; }

/* ════════════════ PLACE LINKS (Map / Website / Instagram) ════════════════ */
.pl-links { display: inline-flex; align-items: center; gap: 13px; }
.pl-ic { display: inline-flex; width: 17px; height: 17px; color: inherit; opacity: .45;
  transition: opacity .2s, color .2s, transform .2s; cursor: none; }
.pl-ic:hover { opacity: 1; color: var(--red); transform: translateY(-1px); }
.pl-ic svg { width: 100%; height: 100%; display: block; fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
/* on dark surfaces, lift the resting opacity for contrast */
.pl-links.on-dark .pl-ic, .ov .pl-ic { opacity: .6; }
.pl-links.on-dark .pl-ic:hover, .ov .pl-ic:hover { opacity: 1; }

/* ════════════════ MOBILE / TOUCH ════════════════ */

/* Touch devices: restore the native cursor, kill the custom one */
@media (hover: none), (pointer: coarse) {
  body, button, a, .nav, .nav-links a, [data-cursor] { cursor: auto !important; }
  .cursor, .cursor-ring, .cursor-label { display: none !important; }
}

/* Phones & small tablets */
@media (max-width: 768px) {
  .nav { padding: 14px 18px; }
  .nav-links { display: none !important; }       /* replaced by hamburger overlay */
  .nav-map-btn, .nav-coords, .nav-right { display: none !important; }
  .sub-trigger.in-nav, .sub-trigger.in-topbar { display: none !important; }  /* Subscribe lives in mobile menu */
  .mnav-btn { display: flex !important; }
  .nav-logo-img, .nav.solid .nav-logo-img { height: 30px; }

  /* generous tap room + readable type */
  .sec { padding: 64px 20px; }
  .hero { padding: 0 20px 40px; }
  .cats-sec, .iwant-sec { padding: 0 20px 64px; }

  /* stack common grids to a single column */
  .cats-grid, .notes-grid, .people-grid, .conv-grid, .contact-grid,
  .people-header { grid-template-columns: 1fr !important; }
  .cat-card, .cat-card.large { height: 300px; }

  /* footer */
  .footer-word { font-size: clamp(40px, 13vw, 72px); }
  .footer-nav { gap: 12px 16px; }
  .reveal { padding: 24px 20px; gap: 16px 24px; }
  .reveal-units { flex-wrap: wrap; }

  /* tame oversized display headings globally (only break a word if it truly can't fit) */
  h1, h2 { overflow-wrap: break-word; word-break: normal; }

  /* cinematic hero foot: right-align the meta labels on mobile (.sh wins page styles via specificity) */
  .sh .sh-foot { flex-direction: column; align-items: flex-end; gap: 14px; }
  .sh .sh-tagline { text-align: right; max-width: 100%; }
  .sh .sh-meta { text-align: right; }

  /* ── footer: stack cleanly, no overlapping text ── */
  .footer-top { grid-template-columns: 1fr; gap: 16px; justify-items: center; text-align: center; padding: 30px 20px; }
  .footer-top-right { justify-content: center; }
  .footer-marquee-wrap { padding: 40px 0; }
  .footer-marquee-track span { font-size: clamp(48px, 16vw, 92px); padding: 0 24px; }
  .footer-badge { width: 100px; height: 100px; }
  .footer-badge-arrow { font-size: 18px; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; padding: 26px 20px 34px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
  .footer-copy { opacity: .35; }
}

/* Respect notches / safe areas */
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    .nav { padding-left: max(18px, env(safe-area-inset-left)); padding-right: max(18px, env(safe-area-inset-right)); }
    .mnav-btn { right: max(14px, env(safe-area-inset-right)); }
  }
}

/* ─── Saved / favorites button (injected by favorites.js) ─── */
.tcard, .p-card, .note-full, .idx-row, a.sc, a.sc-sm, .h48-band { position: relative; }
.fav-btn {
  position: absolute; top: 14px; right: 14px; z-index: 6;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(10,10,10,0.42); backdrop-filter: blur(6px);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; transition: background .2s, border-color .2s, transform .2s;
}
.fav-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.fav-btn:hover { border-color: #fff; background: rgba(10,10,10,0.7); transform: translateY(-1px); }
.fav-btn.on { background: var(--red); border-color: var(--red); }
.fav-btn.on svg { fill: #fff; stroke: #fff; }
/* floating save on interview/story pages */
.fav-fab { position: fixed; bottom: 24px; right: 24px; z-index: 150; width: 50px; height: 50px; box-shadow: 0 8px 24px rgba(0,0,0,.32); }
.fav-fab svg { width: 19px; height: 19px; }
/* inline "Save" pill inside interview/story hero meta */
.fav-page-wrap { display: flex; justify-content: flex-end; margin-bottom: 22px; }
.fav-page { position: static; top: auto; right: auto; z-index: auto; display: inline-flex; align-items: center; gap: 8px; width: auto; height: auto; padding: 9px 16px; border-radius: 40px; }
.fav-page svg { width: 14px; height: 14px; }
.fav-page-lbl { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

/* ── person hero: website / instagram icon pills (above the divider line) ── */
.sh-links { position: relative; z-index: 2; display: flex; gap: 10px; margin-top: 30px; }
.sh-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.04);
  color: #fff; text-decoration: none; transition: background .2s, border-color .2s, transform .2s; }
.sh-link:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.sh-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
