:root {
  --espresso: #1c1917;
  --ink: #2a2520;
  --sage: #6e7f68;
  --sage-deep: #55634f;
  --sage-soft: #e6ebe3;
  --cream: #f7f3ec;
  --cream-dark: #efe7d8;
  --paper: #fffcf7;
  --wood: #6b4f3a;
  --terracotta: #c4784a;
  --muted: #6f675d;
  --line: rgba(28, 25, 23, 0.1);
  --shadow: 0 18px 50px rgba(28, 25, 23, 0.12);
  --radius: 1.35rem;
  --header: 6.4rem;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.6rem;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 2.4rem;
  font-family: var(--font);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 4.5rem;
}

.notice {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.notice a {
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
  background: var(--sage);
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
}

.notice a:hover {
  background: var(--sage-deep);
}

.header {
  position: sticky;
  top: 2.4rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(247, 243, 236, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.bg-sage {
  background: var(--sage-soft);
}

.bg-cream {
  background: var(--cream-dark);
}

.bg-paper {
  background: var(--paper);
}

.mt {
  margin-top: 1.6rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.center {
  justify-content: center;
}

.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
}

.nav {
  display: none;
  gap: 1.1rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.8rem;
  padding: 0.7rem 1.15rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header-cta {
  flex-shrink: 0;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.btn-primary,
.header-cta {
  background: var(--espresso);
  color: var(--cream);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--sage-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 243, 236, 0.45);
}

.btn-light {
  background: var(--paper);
  color: var(--espresso);
  box-shadow: var(--shadow);
}

.menu-toggle {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--paper);
  font-size: 1.2rem;
}

.mobile-nav {
  display: none;
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: calc(100% + 0.4rem);
  padding: 0.8rem;
  background: var(--paper);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav a {
  text-decoration: none;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
}

.mobile-nav a:hover {
  background: var(--sage-soft);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

@media (max-height: 820px) {
  .hero {
    min-height: 0;
  }
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  transform: scale(1.06);
  animation: kenburns 22s ease-out forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 25, 23, 0.18), rgba(28, 25, 23, 0.72) 70%),
    linear-gradient(90deg, rgba(28, 25, 23, 0.45), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 5.5rem 1.1rem 3.2rem;
  max-width: 44rem;
}

.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0.35rem 0 0.8rem;
}

h1 {
  font-size: clamp(2.25rem, 6.4vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.lede {
  font-size: 1.05rem;
  max-width: 38rem;
  color: inherit;
  opacity: 0.94;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.14);
  border: 1px solid rgba(247, 243, 236, 0.2);
  font-size: 0.82rem;
}

.section {
  padding: 4.2rem 1.1rem;
  scroll-margin-top: 6.6rem;
}

.hero {
  scroll-margin-top: 6.6rem;
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.kicker {
  color: var(--sage-deep);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.split {
  display: grid;
  gap: 1.6rem;
}

.card,
.glass {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass {
  background: rgba(255, 252, 247, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.6s ease;
}

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

.prose p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.grid-3,
.grid-2,
.menu-grid,
.amenity-grid {
  display: grid;
  gap: 1rem;
}

.why-card,
.feature-card,
.menu-card,
.amenity,
.faq-item,
.diet-card,
.order-card {
  background: var(--paper);
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.06);
  border: 1px solid var(--line);
}

.feature-card,
.menu-card,
.why-card,
.order-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.menu-card:hover,
.why-card:hover,
.order-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--sage-deep);
}

.menu-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}

.diet {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.gallery-frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-frame img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-frame:hover img {
  transform: scale(1.04);
}

.faq-item + .faq-item {
  margin-top: 0.8rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.map {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.hours {
  display: grid;
  gap: 0.45rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
}

.cta-band {
  margin: 0 1.1rem 4rem;
  padding: 3rem 1.3rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(135deg, rgba(28, 25, 23, 0.72), rgba(85, 99, 79, 0.78)),
    url("../images/artizan-coffee-hobart-interior.jpg") center/cover;
  color: var(--cream);
  text-align: center;
}

.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 2.4rem 1.1rem 6.5rem;
}

.footer a {
  color: var(--cream);
}

.crumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.mobile-cta {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  padding: 0.45rem;
  border-radius: 1.1rem;
  background: rgba(28, 25, 23, 0.92);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  color: var(--cream);
  text-decoration: none;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.7rem 0.3rem;
  border-radius: 0.8rem;
}

.mobile-cta a:nth-child(2) {
  background: var(--sage);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes kenburns {
  to {
    transform: scale(1.14) translate3d(0, -1.5%, 0);
  }
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-cta {
    display: none;
  }

  .header {
    padding: 0.75rem 1.5rem;
  }

  .section {
    padding: 5.5rem 1.5rem;
  }

  .split,
  .grid-2,
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3,
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-copy {
    padding: 7rem 1.5rem 4.2rem;
  }

  .footer {
    padding-bottom: 2.4rem;
  }
}

@media (min-width: 980px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split.about-split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .feature-card,
  .menu-card,
  .why-card,
  .order-card,
  .btn,
  .photo-card img,
  .gallery-frame img,
  .hero-media img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
