:root {
  --ink: #1a1f1b;
  --muted: #5f665e;
  --paper: #fbfaf7;
  --soft: #edf2ec;
  --green: #2f6f58;
  --green-dark: #15382d;
  --gold: #b78a3a;
  --brick: #9d4638;
  --line: rgba(26, 31, 27, 0.13);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px 42px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 12px 36px rgba(20, 28, 24, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  background: transparent;
}

.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.site-header.is-open .nav-toggle::before {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle::after {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 86svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 20, 16, 0.76), rgba(14, 20, 16, 0.35), rgba(14, 20, 16, 0.1)),
    url("assets/images/hero-iced-coffee.jpg") center center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 158px 0 132px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.75rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 1.12rem;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

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

.contact .button-primary {
  margin-top: 30px;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(18, 26, 21, 0.62);
  backdrop-filter: blur(10px);
}

.hero-strip span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.84rem;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--green-dark);
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.25;
}

.section-heading p:not(.eyebrow),
.intro-copy,
.contact p {
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 280px;
  gap: 44px;
  align-items: center;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.logo-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 60px rgba(27, 31, 27, 0.14);
}

.logo-panel img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.menu-card {
  min-height: 236px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-card.featured {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.menu-tag {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.featured .menu-tag {
  color: #d7f0e7;
}

.menu-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.82);
}

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

.process-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(26, 31, 27, 0.08);
}

.process-item img {
  height: 360px;
  object-fit: cover;
}

.process-item div {
  min-height: 178px;
  padding: 24px;
}

.process-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--brick);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}

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

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

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 56px;
  align-items: center;
}

.contact-grid h2 {
  max-width: 700px;
}

.contact-grid p {
  max-width: 650px;
  margin: 24px 0 0;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.qr-panel {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(27, 31, 27, 0.1);
}

.qr-panel img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.qr-panel figcaption {
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 42px;
  color: var(--white);
  background: var(--ink);
}

.site-footer p,
.site-footer small {
  margin: 0;
  font-weight: 800;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.62);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 11, 8, 0.86);
}

.lightbox.is-active {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(900px, 92vw);
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

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

  .hero h1 {
    font-size: 3.5rem;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .logo-panel,
  .qr-panel {
    max-width: 360px;
  }

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

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

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .brand span:last-child {
    max-width: 180px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.96);
    box-shadow: 0 18px 36px rgba(20, 28, 24, 0.08);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

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

  .hero {
    min-height: 82svh;
    background-position: center center;
  }

  .hero-content {
    width: min(100% - 36px, 640px);
    padding: 118px 0 122px;
  }

  .hero h1 {
    font-size: 2.82rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-strip span {
    min-height: 46px;
  }

  .section {
    padding: 72px 0;
  }

  .section-inner {
    width: min(100% - 36px, 640px);
  }

  h2 {
    font-size: 2rem;
  }

  .menu-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 0;
  }

  .menu-tag {
    margin-bottom: 26px;
  }

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

  .process-item img {
    height: 300px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.36rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .contact-list span {
    width: 100%;
    justify-content: center;
  }
}
