:root {
  --black: #0a0a0a;
  --dark: #151515;
  --card: #1c1c1c;
  --white: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --warm: #f5f2ec;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(36px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 190px;
  height: 58px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

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

.nav-button {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.nav-button:hover {
  background: var(--white);
  color: var(--black) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.82)),
    url("images/hero-image-daily-2.webp") center center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 720px;
}

.eyebrow {
  margin: 0;
  color: var(--warm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(52px, 7vw, 96px);
}

h2 {
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 76px);
}

h3 {
  font-size: 34px;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.button.primary {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--black);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.button:hover {
  transform: translateY(-3px);
}

.location {
  margin-top: 26px;
  font-size: 14px;
}

.section {
  padding: 110px 0;
  background: var(--black);
}

.dark-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--dark);
}

.two-columns {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.section-text p {
  max-width: 650px;
  font-size: 17px;
}

.image-card,
.wide-image,
.tall-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.image-card {
  aspect-ratio: 4 / 5;
}

.image-card img,
.wide-image img,
.tall-image img,
.gallery-grid img,
.coffee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.image-card:hover img,
.wide-image:hover img,
.tall-image:hover img,
.gallery-grid img:hover,
.coffee-card:hover img {
  transform: scale(1.06);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.weekend-rituals {
  position: relative;
}

.weekend-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 18px;
  grid-auto-flow: dense;
}

.weekend-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}

.weekend-photo.large {
  grid-row: span 2;
}

.weekend-photo.wide {
  grid-column: span 2;
}

.weekend-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.weekend-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.34));
  pointer-events: none;
}

.weekend-photo:hover img {
  transform: scale(1.06);
}

.cocktails {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.06), transparent 28rem),
    var(--black);
}

.cocktails .section-text .button {
  margin-top: 18px;
}

.cocktail-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.cocktail-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  opacity: 0;
  transform: none;
  transition: opacity 0.45s ease;
}

.cocktail-slide.active {
  opacity: 1;
  transform: none;
}

.cocktail-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
  z-index: 2;
}

.cocktail-dots span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: transparent;
}

.cocktail-dots span.active {
  background: var(--warm);
  border-color: var(--warm);
}

.coffee-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.coffee-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.32);
}

.coffee-card img {
  aspect-ratio: 4 / 5;
}

.coffee-card div {
  padding: 24px;
}

.coffee-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}

.wide-image,
.tall-image {
  min-height: 520px;
}

.interior-carousel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.interior-track {
  position: absolute;
  inset: 0;
}

.interior-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.interior-slide.active {
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.58);
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.carousel-arrow:hover {
  border-color: var(--white);
  background: rgba(10, 10, 10, 0.86);
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev {
  left: 22px;
}

.carousel-next {
  right: 22px;
}

.interior-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.interior-dots span {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.interior-dots span.active {
  background: var(--warm);
  border-color: var(--warm);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.menu-preview-action {
  margin-top: 34px;
  text-align: center;
}

.menu-box {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--card);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item strong {
  color: var(--warm);
  white-space: nowrap;
}

.menu-page-hero {
  padding: 170px 0 90px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(10, 10, 10, 0.66), rgba(10, 10, 10, 0.86)),
    url("images/cocktail-2.webp") center center / cover no-repeat;
}

.menu-page-hero .container {
  max-width: 900px;
}

.menu-page-hero p:last-child {
  max-width: 650px;
  font-size: 18px;
}

.menu-page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(28, 28, 28, 0.86);
}

.menu-sidebar a {
  padding: 12px 14px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 14px;
  transition: 0.25s ease;
}

.menu-sidebar a:hover {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.full-menu {
  display: grid;
  gap: 24px;
}

.full-menu-card {
  scroll-margin-top: 110px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--card);
}

.full-menu-card h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 5vw, 64px);
}

.full-menu-card h3 {
  margin-bottom: 18px;
  font-size: 30px;
}

.full-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.full-menu-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.full-menu-list strong {
  color: var(--warm);
  white-space: nowrap;
}

.full-menu-list.compact {
  grid-template-columns: 1fr;
}

.menu-with-description {
  grid-template-columns: 1fr;
}

.menu-with-description span {
  display: grid;
  gap: 4px;
}

.menu-with-description b {
  color: var(--white);
  font-weight: 700;
}

.menu-with-description small {
  color: var(--muted);
  line-height: 1.5;
}

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

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}

.gallery-preview-action {
  margin-top: 34px;
  text-align: center;
}

.gallery-grid img {
  border: 1px solid var(--line);
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-page-hero {
  padding: 170px 0 90px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(10, 10, 10, 0.66), rgba(10, 10, 10, 0.86)),
    url("images/interior-daily.webp") center center / cover no-repeat;
}

.gallery-page-hero .container {
  max-width: 860px;
}

.gallery-page-hero p:last-child {
  max-width: 650px;
  font-size: 18px;
}

.full-gallery-grid {
  display: block;
  column-count: 3;
  column-gap: 18px;
}

.full-gallery-grid.coffee-gallery-grid {
  column-count: 3;
}

.full-gallery-grid img,
.full-gallery-grid.coffee-gallery-grid img {
  display: block;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
  break-inside: avoid;
}

.gallery-group {
  margin-bottom: 72px;
}

.gallery-group:last-child {
  margin-bottom: 0;
}

.gallery-group-title {
  margin-bottom: 28px;
}

.gallery-group-title h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 64px);
}

.full-gallery-grid img {
  width: 100%;
  border: 1px solid var(--line);
  transition: transform 0.55s ease, border-color 0.25s ease;
}

.full-gallery-grid img:hover {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.34);
}

.full-gallery-grid .tall {
  grid-row: span 2;
}

.full-gallery-grid .wide {
  grid-column: span 2;
}

.about-page-hero {
  padding: 170px 0 100px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(10, 10, 10, 0.58), rgba(10, 10, 10, 0.86)),
    url("images/sank-1.jpg") center center / cover no-repeat;
}

.about-page-hero .container {
  max-width: 920px;
}

.about-page-hero p:last-child {
  max-width: 680px;
  font-size: 18px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-card {
  min-height: 420px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--card);
}

.story-card.muted-card {
  background:
    linear-gradient(rgba(21, 21, 21, 0.86), rgba(21, 21, 21, 0.92)),
    url("images/dailycoffehouse-hero-background.png") center center / cover no-repeat;
}

.story-year {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story-card h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 64px);
}

.story-card p:not(.story-year) {
  font-size: 16px;
}

.about-team-section .two-columns {
  grid-template-columns: 1.1fr 0.9fr;
}

.team-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.team-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: stretch;
}

.contact-line {
  margin: 12px 0;
  color: var(--white);
}

.contact-line a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-line a:hover {
  color: var(--warm);
}

.hours-list {
  max-width: 360px;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.hours-list strong {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.small-note {
  font-size: 14px;
}

.instagram-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    url("images/people-3.jpg") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.instagram-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
}

.instagram-card > * {
  position: relative;
  z-index: 1;
}

.instagram-card h3 {
  max-width: 520px;
  font-size: clamp(42px, 5vw, 68px);
}

.instagram-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 26px;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--dark);
  padding: 54px 0 24px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer h2 {
  font-size: 38px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  color: var(--warm);
  border-color: var(--warm);
}

.copyright {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 0 18px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--dark);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-button {
    margin-top: 12px;
    text-align: center;
  }

  .two-columns,
  .contact-grid,
  .atmosphere-grid,
  .menu-page-layout,
  .about-story-grid,
  .about-team-section .two-columns {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .full-gallery-grid {
    column-count: 2;
  }

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

  .weekend-photo.large,
  .weekend-photo.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .cocktail-carousel {
    min-height: 560px;
  }

  .interior-carousel {
    min-height: 520px;
  }

  .full-menu-list,
  .menu-columns,
  .menu-columns.two {
    grid-template-columns: 1fr;
  }

  .team-image img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 78px 0;
  }

  .intro .section-text {
    order: -1;
  }

  .hero {
    min-height: 100svh;
    align-items: stretch;
    padding: 132px 0 30px;
  }

  .hero-bg {
    background:
      linear-gradient(to bottom, rgba(10, 10, 10, 0.42), rgba(10, 10, 10, 0.9)),
      url("images/hero-image-daily-2.webp") 58% center / cover no-repeat;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 162px);
    margin: 0 auto;
  }

  .hero .location {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }

  .logo {
    width: 150px;
    height: 50px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-text {
    font-size: 18px;
  }

  .cards-grid,
  .menu-grid,
  .gallery-grid,
  .gallery-preview-grid,
  .weekend-grid {
    grid-template-columns: 1fr;
  }

  .full-gallery-grid {
    column-count: 1;
  }

  .full-gallery-grid.coffee-gallery-grid {
    column-count: 1;
  }

  .full-gallery-grid .tall,
  .full-gallery-grid .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .cocktail-carousel {
    min-height: 480px;
  }

  .interior-carousel {
    min-height: 380px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }

  .menu-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .full-menu-card {
    padding: 24px;
  }

  .story-card {
    min-height: auto;
    padding: 26px;
  }

  .team-image img {
    min-height: 320px;
  }

  .full-menu-list div {
    align-items: flex-start;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .wide-image,
  .tall-image {
    min-height: 340px;
  }

  .footer-grid {
    flex-direction: column;
  }
}
