:root {
  --bg: #f6efe6;
  --surface: rgba(255, 250, 244, 0.82);
  --surface-strong: #fff8f0;
  --text: #2f1c14;
  --muted: #6e5144;
  --line: rgba(96, 64, 47, 0.16);
  --accent: #a64c23;
  --accent-soft: #d68e58;
  --gold: #d7a54b;
  --shadow: 0 24px 60px rgba(74, 37, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 165, 75, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(166, 76, 35, 0.14), transparent 26%),
    linear-gradient(180deg, #f8f1e8 0%, #f5ebe1 100%);
}

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

.enhanced-photo {
  filter: brightness(1.08) contrast(1.04) saturate(1.07);
}

.page-shell {
  min-height: 100vh;
  padding: 24px;
}

.hero,
.intro-strip,
.vision-section,
.restaurant-line-section,
.products {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
}

.hero {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(243, 230, 217, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -100px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 165, 75, 0.2), transparent 70%);
  pointer-events: none;
}

.topbar,
.hero-grid,
.hero-points,
.section-heading,
.product-grid,
.business-grid,
.showcase,
.showcase-gallery,
.banner {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 34px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

h1 {
  margin-top: 8px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 700;
}

h2 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  max-width: 11ch;
}

h3 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  max-width: 16ch;
}

h4 {
  font-size: 2rem;
  margin-bottom: 12px;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.cta-link {
  color: var(--surface-strong);
  background: linear-gradient(135deg, #2f1c14, #71422f);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 16px 36px rgba(47, 28, 20, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.hero-grid-single {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-copy > p {
  margin-top: 22px;
  max-width: 62ch;
  font-size: 1.04rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-points div,
.business-grid article,
.product-card,
.intro-strip,
.showcase-gallery figure,
.banner-content {
  backdrop-filter: blur(10px);
}

.hero-points div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.7);
}

.hero-points strong,
.business-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}

.hero-visual-compact {
  grid-template-columns: 1.15fr 0.9fr;
}

.hero-main-photo,
.detail-card,
.product-media {
  overflow: hidden;
  border-radius: 28px;
}

.hero-main-photo {
  min-height: 100%;
  box-shadow: var(--shadow);
}

.hero-main-photo img,
.product-media img {
  height: 100%;
  object-fit: cover;
}

.detail-card {
  position: relative;
  min-height: 220px;
  box-shadow: var(--shadow);
}

.detail-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(180deg, rgba(28, 16, 11, 0.1), rgba(28, 16, 11, 0.82));
  font-weight: 700;
  letter-spacing: 0.03em;
}

.intro-strip {
  padding: 22px 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.75);
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 26px;
}

.vision-section {
  padding: 30px 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(215, 165, 75, 0.14), transparent 32%),
    rgba(255, 250, 244, 0.78);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: stretch;
}

.vision-copy p {
  margin-top: 18px;
  max-width: 62ch;
}

.vision-highlight {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(92, 46, 28, 0.95), rgba(166, 76, 35, 0.88));
  color: #fff9f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.vision-highlight strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision-highlight p {
  color: rgba(255, 249, 242, 0.92);
  font-size: 1.02rem;
}

.restaurant-line-section {
  padding: 34px 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(166, 76, 35, 0.08), transparent 26%),
    rgba(255, 250, 244, 0.8);
  box-shadow: var(--shadow);
}

.restaurant-heading p {
  margin-top: 18px;
  max-width: 70ch;
}

.restaurant-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.restaurant-note,
.restaurant-card {
  border: 1px solid rgba(96, 64, 47, 0.12);
  background: rgba(255, 252, 248, 0.88);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.restaurant-note {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.restaurant-note strong {
  font-size: 0.95rem;
}

.restaurant-note span {
  color: var(--muted);
  line-height: 1.55;
}

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

.restaurant-card {
  padding: 22px;
}

.restaurant-card-media {
  margin: -22px -22px 18px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  aspect-ratio: 1 / 1;
  background: rgba(255, 248, 240, 0.8);
}

.restaurant-card-media img {
  height: 100%;
  object-fit: cover;
}

.restaurant-card h4 {
  margin: 14px 0 12px;
}

.card-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 165, 75, 0.16);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.products {
  padding: 34px 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.72);
  box-shadow: var(--shadow);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid rgba(96, 64, 47, 0.12);
}

.product-card.highlight {
  background: linear-gradient(135deg, rgba(255, 247, 235, 0.95), rgba(255, 240, 221, 0.92));
}

.product-card.lime {
  background: linear-gradient(135deg, rgba(251, 255, 244, 0.96), rgba(244, 250, 230, 0.92));
}

.product-card.no-photo {
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.96), rgba(247, 233, 214, 0.92));
}

.product-media {
  min-height: 230px;
}

.product-media-text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 35%),
    linear-gradient(160deg, #d7a54b 0%, #b5622f 52%, #5a2d1f 100%);
  color: #fff8f0;
}

.product-media-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 0.95;
  margin-bottom: 10px;
}

.product-media-text small,
.media-kicker {
  line-height: 1.5;
}

.media-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 240, 0.36);
  background: rgba(255, 248, 240, 0.12);
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-grid,
  .vision-section,
  .restaurant-notes,
  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px;
  }

  .hero,
  .vision-section,
  .restaurant-line-section,
  .products,
  .intro-strip {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-media,
  .detail-card {
    min-height: 240px;
  }

  h2 {
    max-width: 12ch;
  }
}
