:root {
  --ink: #3d2a24;
  --ink-soft: #6a4f45;
  --berry: #c45b6a;
  --berry-deep: #a34452;
  --blush: #f7ede6;
  --paper: #fff8f2;
  --wash: #f0d7cc;
  --pistachio: #9cb08c;
  --line: rgba(61, 42, 36, 0.14);
  --shadow: 0 18px 40px rgba(61, 42, 36, 0.08);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --radius: 1.25rem;
  --max: 68rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 91, 106, 0.12), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(156, 176, 140, 0.16), transparent 28%),
    linear-gradient(180deg, var(--blush) 0%, var(--paper) 42%, #f4e4d8 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--berry-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.paper-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  color: var(--paper);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.topbar__brand img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 248, 242, 0.75);
  box-shadow: 0 0 0 2px rgba(255, 248, 242, 0.35);
}

.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.topbar__nav a {
  color: inherit;
  text-decoration: none;
  opacity: 0.92;
}

.topbar__nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    var(--hero-image) center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(61, 42, 36, 0.72) 0%, rgba(61, 42, 36, 0.42) 42%, rgba(61, 42, 36, 0.18) 100%),
    linear-gradient(0deg, rgba(61, 42, 36, 0.55) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(6.5rem, 14vh, 8rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 7vh, 4rem);
  animation: rise-in 1s ease both;
}

.hero__mark {
  width: 5.5rem;
  height: 5.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 248, 242, 0.88);
  animation: floaty 5.5s ease-in-out infinite;
}

.hero__brand {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__title {
  margin: 0 0 0.85rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.hero__lead {
  margin: 0 0 1.5rem;
  max-width: 34ch;
  font-size: 1.05rem;
  color: rgba(255, 248, 242, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--berry);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--berry-deep);
}

.btn--ghost {
  border-color: rgba(255, 248, 242, 0.55);
  color: var(--paper);
  background: rgba(255, 248, 242, 0.08);
}

.btn--ghost:hover {
  background: rgba(255, 248, 242, 0.16);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--berry-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  font-weight: 700;
}

.lead {
  margin: 0;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about__name {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--berry-deep);
}

.menu__intro {
  margin-bottom: 2rem;
}

.taste-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.taste-block h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
}

.taste-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.taste-list__title {
  display: block;
  font-weight: 600;
}

.taste-list__desc {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(156, 176, 140, 0.28);
  color: #4d6140;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  vertical-align: middle;
}

.works-rail {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.work {
  margin: 0;
}

.work > img,
.work__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--wash), #e8cfc2);
}

.work__placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(61, 42, 36, 0.22);
}

.work__placeholder img {
  width: 4.5rem;
  height: 4.5rem;
  opacity: 0.75;
  aspect-ratio: auto;
  border-radius: 50%;
  background: transparent;
}

.work__body {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.35rem;
}

.work__body strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.work__body span {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.work__gallery {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 0.45rem;
}

.work__gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.7rem;
}

.news-rail {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.news-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.news-item time {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.news-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.news-item p {
  margin: 0;
  color: var(--ink-soft);
}

.pickup__facts {
  margin: 1.75rem 0 0;
  display: grid;
  gap: 1rem;
}

.pickup__facts div {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.pickup__facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pickup__facts dd {
  margin: 0.25rem 0 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.footer {
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  text-align: center;
  color: var(--ink-soft);
}

.footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.footer__meta {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

@media (max-width: 900px) {
  .taste-grid {
    grid-template-columns: 1fr;
  }

  .works-rail {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__nav {
    gap: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }

  .hero__content {
    padding-top: 7.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media,
  .hero__mark,
  .hero__content,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
