/* ==============================
   Global Reset
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff7ef;
  color: #2b2b2b;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1220px;
  margin: 0 auto;
}

/* ==============================
   Header / Navbar
================================= */

.site-header {
  width: 100%;
  background-color: rgba(255, 247, 239, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(75, 46, 43, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: 90%;
  max-width: 1220px;
  margin: 0 auto;
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #0c2b55;
  box-shadow: 0 10px 25px rgba(75, 46, 43, 0.18);
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: #3a241c;
  letter-spacing: -0.5px;
}

.brand-text span {
  font-size: 13px;
  color: #e85d75;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 800;
  color: #4b2e2b;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e85d75;
}

.nav-cta {
  background-color: #3a241c;
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.3s ease;
}

.nav-cta:hover {
  background-color: #e85d75;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: none;
  background-color: #3a241c;
  color: white;
  font-size: 24px;
  padding: 7px 13px;
  border-radius: 10px;
  cursor: pointer;
}

/* ==============================
   Buttons
================================= */

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #e85d75;
  color: white;
  box-shadow: 0 14px 30px rgba(232, 93, 117, 0.3);
}

.btn-primary:hover {
  background-color: #d94b64;
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: #3a241c;
  border: 2px solid rgba(58, 36, 28, 0.18);
}

.btn-outline:hover {
  background-color: #3a241c;
  color: white;
  transform: translateY(-3px);
}

.btn-light {
  background-color: white;
  color: #3a241c;
}

.btn-light:hover {
  transform: translateY(-3px);
}

/* ==============================
   Shared Labels / Headings
================================= */

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e85d75;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow {
  background-color: white;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(75, 46, 43, 0.08);
  margin-bottom: 28px;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #e85d75;
  border-radius: 50%;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: 46px;
  line-height: 1.12;
  color: #3a241c;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}

.text-link {
  color: #e85d75;
  font-weight: 900;
  white-space: nowrap;
}

/* ==============================
   Home Hero
================================= */

.premium-hero {
  background:
    radial-gradient(circle at top left, rgba(232, 93, 117, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(36, 92, 90, 0.12), transparent 35%),
    linear-gradient(135deg, #fff7ef 0%, #f8eadf 48%, #fff2f4 100%);
  padding: 86px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-layout {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 58px;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -3px;
  color: #3a241c;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-copy {
  max-width: 610px;
  font-size: 19px;
  line-height: 1.75;
  color: #6b5750;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  background-color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(75, 46, 43, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(75, 46, 43, 0.08);
}

.hero-stats div {
  padding: 22px;
  border-right: 1px solid rgba(75, 46, 43, 0.08);
}

.hero-stats div:last-child {
  border-right: none;
}

.hero-stats strong {
  display: block;
  font-size: 21px;
  color: #3a241c;
  margin-bottom: 4px;
}

.hero-stats span {
  font-size: 13px;
  color: #7a6560;
  font-weight: 800;
}

.hero-right {
  position: relative;
}

.image-collage {
  position: relative;
  min-height: 650px;
}

.main-menu-card {
  position: absolute;
  right: 0;
  top: 30px;
  width: min(690px, 100%);
  height: 570px;
  border-radius: 44px;
  overflow: hidden;
  background-color: white;
  padding: 14px;
  box-shadow:
    0 30px 80px rgba(75, 46, 43, 0.24),
    inset 0 0 0 1px rgba(255,255,255,0.5);
  transform: rotate(2deg);
}

.main-menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
}

.floating-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(75, 46, 43, 0.08);
  box-shadow: 0 20px 50px rgba(75, 46, 43, 0.16);
  border-radius: 24px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.floating-card span {
  width: 46px;
  height: 46px;
  background-color: #fff0f3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.floating-card strong {
  display: block;
  color: #3a241c;
  font-size: 16px;
}

.floating-card p {
  color: #8a7069;
  font-size: 13px;
  margin: 0;
}

.top-card {
  top: 86px;
  left: -28px;
}

.bottom-card {
  bottom: 86px;
  left: 35px;
}

.circle-badge {
  position: absolute;
  right: 34px;
  bottom: 38px;
  width: 132px;
  height: 132px;
  background-color: #e85d75;
  color: white;
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(232, 93, 117, 0.36);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-9deg);
  z-index: 4;
  border: 8px solid #fff7ef;
}

.circle-badge span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.circle-badge strong {
  font-size: 26px;
  line-height: 1;
}

.hero-category-strip {
  margin-top: 20px;
  background-color: #3a241c;
  color: white;
  display: flex;
  justify-content: center;
  gap: 46px;
  padding: 22px 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  overflow-x: auto;
}

.hero-category-strip span {
  white-space: nowrap;
  color: #ffe7df;
}

/* ==============================
   Home About Section With Café Photo
================================= */

.intro-section {
  padding: 105px 0;
}

.about-home-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-home-text h2 {
  font-size: 46px;
  line-height: 1.12;
  color: #3a241c;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.about-home-text > p {
  color: #6b5750;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-home-points {
  display: grid;
  gap: 14px;
}

.about-home-points div {
  background-color: white;
  border: 1px solid rgba(75, 46, 43, 0.08);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  box-shadow: 0 12px 32px rgba(75, 46, 43, 0.06);
}

.about-home-points span {
  width: 44px;
  height: 44px;
  background-color: #fff0f3;
  color: #e85d75;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  grid-row: span 2;
}

.about-home-points strong {
  color: #3a241c;
  font-size: 17px;
  margin-bottom: 4px;
}

.about-home-points p {
  color: #6b5750;
  line-height: 1.55;
}

.about-home-image {
  background-color: white;
  padding: 14px;
  border-radius: 38px;
  box-shadow: 0 26px 75px rgba(75, 46, 43, 0.16);
  overflow: hidden;
  transform: rotate(1deg);
}

.about-home-image img {
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

/* ==============================
   Home Photo Menu Highlights
================================= */

.highlight-section {
  padding: 105px 0;
  background-color: white;
}

.photo-highlight-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.photo-menu-card {
  background-color: #fff7ef;
  border: 1px solid #f0dfd4;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(75, 46, 43, 0.08);
  transition: 0.35s ease;
}

.photo-menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(75, 46, 43, 0.14);
  border-color: #e85d75;
}

.featured-photo-card {
  grid-row: span 2;
}

.photo-card-image {
  height: 230px;
  overflow: hidden;
  background-color: #f8eadf;
}

.featured-photo-card .photo-card-image {
  height: 420px;
}

.photo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.photo-menu-card:hover .photo-card-image img {
  transform: scale(1.06);
}

.photo-card-content {
  padding: 28px;
}

.photo-card-content span {
  display: inline-block;
  width: fit-content;
  background-color: white;
  color: #e85d75;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.photo-card-content h3 {
  color: #3a241c;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.photo-card-content p {
  color: #6b5750;
  line-height: 1.65;
  margin-bottom: 20px;
}

.photo-card-content strong {
  color: #e85d75;
  font-size: 24px;
  font-weight: 900;
}

/* ==============================
   Menu Showcase
================================= */

.menu-showcase {
  padding: 105px 0;
  background:
    radial-gradient(circle at top right, rgba(232, 93, 117, 0.12), transparent 32%),
    #fff7ef;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.showcase-text h2 {
  font-size: 46px;
  line-height: 1.12;
  color: #3a241c;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.showcase-text p {
  font-size: 17px;
  color: #6b5750;
  line-height: 1.8;
  margin-bottom: 26px;
}

.showcase-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.showcase-list span {
  background-color: white;
  color: #3a241c;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(75, 46, 43, 0.06);
}

.showcase-image {
  background-color: white;
  padding: 14px;
  border-radius: 38px;
  box-shadow: 0 26px 75px rgba(75, 46, 43, 0.16);
  transform: rotate(-1deg);
}

.showcase-image img {
  border-radius: 28px;
}

/* ==============================
   Coffee Beans Section
================================= */

.coffee-beans-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at top left, rgba(142, 20, 72, 0.12), transparent 34%),
    linear-gradient(135deg, #fff7ef 0%, #f8eadf 48%, #fff2f4 100%);
}

.coffee-beans-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: center;
}

.coffee-beans-images {
  position: relative;
  min-height: 620px;
}

.coffee-logo-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  background-color: white;
  padding: 14px;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(75, 46, 43, 0.14);
  z-index: 2;
}

.coffee-logo-card img {
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.coffee-photo-card {
  position: absolute;
  background-color: white;
  padding: 12px;
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(75, 46, 43, 0.16);
  overflow: hidden;
}

.coffee-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-one {
  left: 8%;
  bottom: 0;
  width: 46%;
  height: 340px;
  z-index: 3;
}

.photo-one img {
  border-radius: 22px;
}

.photo-two {
  right: 0;
  bottom: 70px;
  width: 54%;
  height: 390px;
  z-index: 1;
}

.photo-two img {
  border-radius: 22px;
}

.coffee-beans-text h2 {
  font-size: 46px;
  line-height: 1.12;
  color: #3a241c;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.coffee-beans-text p {
  color: #6b5750;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.coffee-beans-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.coffee-beans-points div {
  background-color: white;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(75, 46, 43, 0.08);
}

.coffee-beans-points span {
  font-size: 20px;
}

.coffee-beans-points strong {
  color: #3a241c;
  font-size: 14px;
}

/* ==============================
   Experience
================================= */

.experience-section {
  padding: 105px 0;
  background-color: #3a241c;
  color: white;
}

.experience-header {
  max-width: 760px;
  margin-bottom: 46px;
}

.experience-header h2 {
  font-size: 46px;
  line-height: 1.12;
  color: white;
  letter-spacing: -1.5px;
}

.experience-section .section-label {
  color: #ffb6c4;
}

.experience-section .section-label::before {
  background-color: #ffb6c4;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.experience-card {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 30px;
  transition: 0.3s ease;
}

.experience-card:hover {
  background-color: rgba(255,255,255,0.13);
  transform: translateY(-7px);
}

.experience-card span {
  width: 54px;
  height: 54px;
  background-color: rgba(255,255,255,0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.experience-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.experience-card p {
  color: #eedbd4;
}

/* ==============================
   Reviews
================================= */

.review-section {
  padding: 105px 0;
  background-color: white;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background-color: #fff7ef;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid #f0dfd4;
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(75, 46, 43, 0.1);
}

.stars {
  color: #e85d75;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-card p {
  color: #5f514c;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.review-card strong {
  color: #3a241c;
}

/* ==============================
   CTA
================================= */

.cta-section {
  padding: 105px 0;
  background-color: #fff7ef;
}

.cta-box {
  background:
    radial-gradient(circle at top left, rgba(232, 93, 117, 0.32), transparent 28%),
    #3a241c;
  color: white;
  padding: 56px;
  border-radius: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 24px 70px rgba(75, 46, 43, 0.2);
}

.cta-box h2 {
  color: white;
  margin-bottom: 0;
  max-width: 760px;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.cta-box .section-label {
  color: #ffb6c4;
}

.cta-box .section-label::before {
  background-color: #ffb6c4;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==============================
   Menu Page
================================= */

.menu-page-hero {
  background:
    radial-gradient(circle at top left, rgba(232, 93, 117, 0.18), transparent 34%),
    linear-gradient(135deg, #fff7ef 0%, #f9e8de 52%, #fff2f4 100%);
  padding: 105px 0 80px;
}

.menu-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.menu-hero-text h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  color: #3a241c;
  letter-spacing: -3px;
  margin-bottom: 28px;
  max-width: 820px;
}

.menu-hero-text p {
  max-width: 680px;
  color: #6b5750;
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.menu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.menu-hero-card {
  background-color: white;
  padding: 36px;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(75, 46, 43, 0.12);
  border: 1px solid rgba(232, 93, 117, 0.12);
}

.menu-hero-card span {
  display: inline-block;
  background-color: #fff0f3;
  color: #e85d75;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.menu-hero-card strong {
  display: block;
  color: #3a241c;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.menu-hero-card p {
  color: #6b5750;
  font-size: 16px;
  line-height: 1.7;
}

.full-menu-section {
  padding: 105px 0;
  background-color: white;
}

.full-menu-image {
  background-color: #fff7ef;
  padding: 16px;
  border-radius: 38px;
  box-shadow: 0 26px 75px rgba(75, 46, 43, 0.16);
  overflow: hidden;
}

.full-menu-image img {
  border-radius: 28px;
}

.drink-menu-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at top left, rgba(232, 93, 117, 0.14), transparent 34%),
    linear-gradient(135deg, #fff7ef 0%, #fff0f3 100%);
}

.drink-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.drink-menu-card {
  background-color: white;
  padding: 14px;
  border-radius: 36px;
  box-shadow: 0 24px 70px rgba(75, 46, 43, 0.14);
  overflow: hidden;
  transition: 0.35s ease;
}

.drink-menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 85px rgba(75, 46, 43, 0.2);
}

.drink-menu-card img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  display: block;
}

.menu-list-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at bottom left, rgba(232, 93, 117, 0.14), transparent 34%),
    #fff7ef;
}

.menu-list-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.menu-list-heading h2 {
  font-size: 50px;
  line-height: 1.1;
  color: #3a241c;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.menu-list-heading p {
  color: #6b5750;
  font-size: 17px;
}

.menu-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.filter-btn {
  border: none;
  background-color: white;
  color: #3a241c;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(75, 46, 43, 0.07);
  transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #e85d75;
  color: white;
  transform: translateY(-2px);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-item-card {
  background-color: white;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(75, 46, 43, 0.08);
  box-shadow: 0 16px 42px rgba(75, 46, 43, 0.07);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.menu-item-card:hover {
  transform: translateY(-7px);
  border-color: #e85d75;
  box-shadow: 0 24px 60px rgba(75, 46, 43, 0.12);
}

.menu-category {
  display: inline-block;
  width: fit-content;
  background-color: #fff0f3;
  color: #e85d75;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.menu-item-card h3 {
  color: #3a241c;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.menu-item-card p {
  color: #6b5750;
  line-height: 1.65;
  margin-bottom: 22px;
}

.menu-item-card strong {
  color: #e85d75;
  font-size: 23px;
  font-weight: 900;
}

.menu-photo-item {
  padding: 0;
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.menu-photo-item .menu-item-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: #f8eadf;
}

.menu-photo-item .menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.menu-photo-item:hover .menu-item-image img {
  transform: scale(1.06);
}

.menu-photo-item .menu-item-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-photo-item .menu-item-body strong {
  margin-top: auto;
}

.compact-item {
  min-height: 140px;
}

.compact-item h3 {
  margin-bottom: 16px;
}

.drink-card {
  background:
    linear-gradient(135deg, #ffffff 0%, #fff0f3 100%);
}

.pastry-card {
  background:
    linear-gradient(135deg, #ffffff 0%, #fff3e6 100%);
}

.menu-item-card.hide {
  display: none;
}

.menu-cta-section {
  padding: 105px 0;
  background-color: white;
}

.menu-cta-box {
  background:
    radial-gradient(circle at top left, rgba(232, 93, 117, 0.28), transparent 30%),
    #3a241c;
  color: white;
  padding: 56px;
  border-radius: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  box-shadow: 0 24px 70px rgba(75, 46, 43, 0.2);
}

.menu-cta-box h2 {
  color: white;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.menu-cta-box p {
  color: #eedbd4;
  max-width: 650px;
  font-size: 17px;
}

.menu-cta-box .section-label {
  color: #ffb6c4;
}

.menu-cta-box .section-label::before {
  background-color: #ffb6c4;
}

/* ==============================
   Gallery Page
================================= */

.gallery-hero {
  background:
    radial-gradient(circle at top left, rgba(232, 93, 117, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(36, 92, 90, 0.12), transparent 35%),
    linear-gradient(135deg, #fff7ef 0%, #f8eadf 50%, #fff2f4 100%);
  padding: 105px 0 90px;
}

.gallery-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.gallery-hero-text h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  color: #3a241c;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.gallery-hero-text p {
  max-width: 680px;
  color: #6b5750;
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.gallery-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-hero-tags span {
  background-color: white;
  color: #3a241c;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(75, 46, 43, 0.07);
}

.gallery-hero-preview {
  background-color: white;
  padding: 14px;
  border-radius: 42px;
  box-shadow: 0 28px 80px rgba(75, 46, 43, 0.16);
  transform: rotate(2deg);
}

.gallery-hero-preview img {
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
}

.gallery-section {
  padding: 105px 0;
  background-color: white;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 22px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background-color: #fff7ef;
  box-shadow: 0 18px 50px rgba(75, 46, 43, 0.1);
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.tall-card {
  grid-row: span 2;
}

.wide-card {
  grid-column: span 2;
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background-color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  padding: 18px;
  border-radius: 22px;
  transform: translateY(8px);
  opacity: 0;
  transition: 0.35s ease;
}

.gallery-card:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption span {
  display: inline-block;
  color: #e85d75;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gallery-caption h3 {
  color: #3a241c;
  font-size: 18px;
  line-height: 1.2;
}

.atmosphere-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at top right, rgba(232, 93, 117, 0.12), transparent 34%),
    #fff7ef;
}

.atmosphere-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.atmosphere-text h2 {
  font-size: 46px;
  line-height: 1.12;
  color: #3a241c;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.atmosphere-text p {
  color: #6b5750;
  font-size: 18px;
  line-height: 1.8;
}

.atmosphere-cards {
  display: grid;
  gap: 18px;
}

.atmosphere-card {
  background-color: white;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(75, 46, 43, 0.08);
  box-shadow: 0 16px 42px rgba(75, 46, 43, 0.07);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
}

.atmosphere-card strong {
  width: 52px;
  height: 52px;
  background-color: #fff0f3;
  color: #e85d75;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atmosphere-card h3 {
  color: #3a241c;
  margin-bottom: 6px;
}

.atmosphere-card p {
  color: #6b5750;
}

/* ==============================
   Contact Page
================================= */

.contact-hero {
  background:
    radial-gradient(circle at top left, rgba(232, 93, 117, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(36, 92, 90, 0.12), transparent 35%),
    linear-gradient(135deg, #fff7ef 0%, #f8eadf 50%, #fff2f4 100%);
  padding: 105px 0 90px;
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.contact-hero-text h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  color: #3a241c;
  letter-spacing: -3px;
  margin-bottom: 28px;
  max-width: 820px;
}

.contact-hero-text p {
  max-width: 680px;
  color: #6b5750;
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-hero-card {
  background-color: white;
  padding: 36px;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(75, 46, 43, 0.12);
  border: 1px solid rgba(232, 93, 117, 0.12);
}

.contact-hero-card span {
  display: inline-block;
  background-color: #fff0f3;
  color: #e85d75;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.contact-hero-card strong {
  display: block;
  color: #3a241c;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.contact-hero-card p {
  color: #6b5750;
  font-size: 16px;
  line-height: 1.7;
}

.contact-info-section {
  padding: 90px 0;
  background-color: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-info-card {
  background-color: #fff7ef;
  border: 1px solid #f0dfd4;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 42px rgba(75, 46, 43, 0.07);
  transition: 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-7px);
  border-color: #e85d75;
}

.contact-info-card span {
  width: 54px;
  height: 54px;
  background-color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.contact-info-card h3 {
  color: #3a241c;
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-info-card p {
  color: #6b5750;
  margin-bottom: 8px;
}

.contact-info-card a {
  color: #e85d75;
  font-weight: 900;
}

.contact-main-section {
  padding: 105px 0;
  background-color: #fff7ef;
}

.contact-main-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: stretch;
}

.contact-form-card,
.visit-card {
  background-color: white;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 22px 70px rgba(75, 46, 43, 0.1);
  border: 1px solid rgba(75, 46, 43, 0.08);
}

.contact-form-card h2,
.visit-card h2 {
  font-size: 42px;
  line-height: 1.12;
  color: #3a241c;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.contact-form-card > p,
.visit-card > p {
  color: #6b5750;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #f0dfd4;
  background-color: #fff7ef;
  border-radius: 18px;
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e85d75;
  background-color: white;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: none;
  cursor: pointer;
  width: fit-content;
}

.visit-card {
  background:
    radial-gradient(circle at top left, rgba(232, 93, 117, 0.18), transparent 36%),
    #3a241c;
  color: white;
}

.visit-card h2 {
  color: white;
}

.visit-card > p {
  color: #eedbd4;
}

.visit-card .section-label {
  color: #ffb6c4;
}

.visit-card .section-label::before {
  background-color: #ffb6c4;
}

.visit-list {
  display: grid;
  gap: 16px;
}

.visit-list div {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 22px;
}

.visit-list strong {
  display: block;
  margin-bottom: 6px;
  color: white;
}

.visit-list span {
  color: #eedbd4;
}

/* ==============================
   Full Width Map
================================= */

.map-full-section {
  padding: 0;
  background-color: white;
}

.map-title-bar {
  padding: 90px 0 38px;
  background-color: white;
}

.map-title-bar h2 {
  font-size: 46px;
  line-height: 1.12;
  color: #3a241c;
  letter-spacing: -1.5px;
  max-width: 850px;
}

.map-full-card {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background-color: #f5efe7;
}

.map-full-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.92) contrast(0.98);
}

.map-location-label {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(75, 46, 43, 0.18);
  border: 1px solid rgba(75, 46, 43, 0.08);
  pointer-events: none;
  min-width: 280px;
}

.map-pin {
  width: 38px;
  height: 38px;
  background-color: #e34234;
  color: #e34234;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-pin::after {
  content: "";
  width: 13px;
  height: 13px;
  background-color: white;
  border-radius: 50%;
}

.map-location-label strong {
  display: block;
  color: #3a241c;
  font-size: 16px;
  margin-bottom: 3px;
}

.map-location-label span {
  display: block;
  color: #6b5750;
  font-size: 13px;
  line-height: 1.4;
}

/* ==============================
   Upgraded Global Footer
================================= */

.site-footer {
  background-color: #251615;
  color: white;
  padding-top: 68px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.2fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
}

.footer-main-grid h3 {
  color: #ff6b3a;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
}

.footer-about p {
  color: #eadbd3;
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 15px;
}

.footer-read-more {
  display: inline-block;
  color: #ff6b3a;
  font-weight: 900;
  margin-top: 4px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a {
  color: #eadbd3;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #ff6b3a;
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item span {
  font-size: 18px;
  line-height: 1.4;
  flex-shrink: 0;
}

.footer-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact-item strong {
  color: #ffffff;
  font-size: 15px;
}

.footer-contact-item p,
.footer-contact-item a {
  color: #eadbd3;
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact-item a {
  font-weight: 900;
  color: #ff6b3a;
}

.footer-contact-item.highlight-contact {
  background-color: rgba(255, 107, 58, 0.12);
  border: 1px solid rgba(255, 107, 58, 0.32);
  padding: 12px 14px;
  border-radius: 16px;
}

.footer-contact-item.highlight-contact a {
  color: #ff6b3a;
  font-size: 17px;
  font-weight: 900;
}

.footer-map-box {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 18px;
  overflow: hidden;
}

.footer-map-box iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 12px;
  display: block;
  filter: saturate(0.9) contrast(0.95);
}

.footer-bottom {
  text-align: center;
  padding: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #d8c6bd;
  background-color: #1d1211;
}

.footer-bottom p {
  margin: 0;
  color: #d8c6bd;
}

/* ==============================
   Responsive
================================= */

@media (max-width: 1100px) {
  .hero-layout,
  .about-home-layout,
  .showcase-layout,
  .coffee-beans-layout,
  .menu-hero-layout,
  .gallery-hero-layout,
  .atmosphere-layout,
  .contact-hero-layout,
  .contact-main-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
  }

  .image-collage {
    min-height: 560px;
  }

  .main-menu-card {
    position: relative;
    width: 100%;
    height: 520px;
    top: 0;
  }

  .top-card {
    top: 30px;
    left: 20px;
  }

  .bottom-card {
    bottom: 60px;
    left: 20px;
  }

  .photo-highlight-grid,
  .menu-items-grid,
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-photo-card {
    grid-row: auto;
  }

  .featured-photo-card .photo-card-image {
    height: 280px;
  }

  .experience-grid,
  .review-grid,
  .contact-info-grid,
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .drink-menu-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .menu-cta-box,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .coffee-beans-images {
    min-height: 620px;
  }

  .gallery-hero-preview img {
    height: 460px;
  }
}

@media (max-width: 760px) {
  .navbar {
    height: 74px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 5%;
    width: 90%;
    background-color: white;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(75, 46, 43, 0.16);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid #f0dfd4;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px;
  }

  .premium-hero {
    padding-top: 52px;
  }

  .hero-left h1,
  .menu-hero-text h1,
  .gallery-hero-text h1,
  .contact-hero-text h1 {
    font-size: 46px;
    letter-spacing: -1.8px;
  }

  .hero-copy,
  .menu-hero-text p,
  .gallery-hero-text p,
  .contact-hero-text p {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: none;
    border-bottom: 1px solid rgba(75, 46, 43, 0.08);
  }

  .hero-stats div:last-child {
    border-bottom: none;
  }

  .image-collage {
    min-height: 440px;
  }

  .main-menu-card {
    height: 410px;
    border-radius: 30px;
    transform: rotate(0deg);
  }

  .main-menu-card img {
    border-radius: 22px;
  }

  .floating-card {
    display: none;
  }

  .circle-badge {
    width: 100px;
    height: 100px;
    right: 16px;
    bottom: 16px;
  }

  .circle-badge strong {
    font-size: 20px;
  }

  .hero-category-strip {
    justify-content: flex-start;
    gap: 28px;
  }

  .intro-section,
  .highlight-section,
  .menu-showcase,
  .coffee-beans-section,
  .experience-section,
  .review-section,
  .cta-section,
  .menu-page-hero,
  .full-menu-section,
  .drink-menu-section,
  .menu-list-section,
  .menu-cta-section,
  .gallery-hero,
  .gallery-section,
  .atmosphere-section,
  .contact-hero,
  .contact-info-section,
  .contact-main-section {
    padding: 72px 0;
  }

  .about-home-text h2,
  .showcase-text h2,
  .coffee-beans-text h2,
  .experience-header h2,
  .cta-box h2,
  .menu-list-heading h2,
  .menu-cta-box h2,
  .atmosphere-text h2,
  .contact-form-card h2,
  .visit-card h2,
  .map-title-bar h2,
  .section-heading h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .about-home-text > p,
  .coffee-beans-text p,
  .atmosphere-text p {
    font-size: 16px;
  }

  .about-home-image {
    transform: rotate(0deg);
    border-radius: 28px;
  }

  .about-home-image img {
    height: 330px;
    border-radius: 20px;
  }

  .about-home-points div {
    grid-template-columns: 1fr;
  }

  .about-home-points span {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .photo-highlight-grid,
  .menu-items-grid,
  .experience-grid,
  .review-grid,
  .gallery-masonry,
  .contact-info-grid,
  .form-row,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .photo-card-image,
  .featured-photo-card .photo-card-image,
  .menu-photo-item .menu-item-image {
    height: 260px;
  }

  .showcase-image,
  .gallery-hero-preview {
    transform: rotate(0deg);
  }

  .coffee-beans-images {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .coffee-logo-card,
  .coffee-photo-card,
  .photo-one,
  .photo-two {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .coffee-logo-card img,
  .coffee-photo-card img {
    height: auto;
  }

  .coffee-beans-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .drink-menu-card,
  .full-menu-image {
    padding: 8px;
    border-radius: 24px;
  }

  .drink-menu-card img,
  .full-menu-image img {
    border-radius: 18px;
  }

  .gallery-hero-preview img {
    height: 360px;
    border-radius: 22px;
  }

  .gallery-masonry {
    grid-auto-rows: 300px;
  }

  .tall-card,
  .wide-card {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }

  .atmosphere-card {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .visit-card,
  .cta-box,
  .menu-cta-box {
    padding: 36px;
  }

  .map-title-bar {
    padding: 72px 0 30px;
  }

  .map-full-card {
    height: 420px;
  }

  .map-location-label {
    left: 50%;
    top: 50%;
    min-width: 240px;
    max-width: 88%;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-main-grid {
    gap: 34px;
  }

  .footer-main-grid h3 {
    margin-bottom: 16px;
  }

  .footer-map-box iframe {
    height: 260px;
  }
}
/* ==============================
   Single Updated Drink Menu
================================= */

.single-drink-menu-card {
  background-color: white;
  padding: 16px;
  border-radius: 36px;
  box-shadow: 0 24px 70px rgba(75, 46, 43, 0.14);
  overflow: hidden;
  transition: 0.35s ease;
  max-width: 980px;
  margin: 0 auto;
}

.single-drink-menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 85px rgba(75, 46, 43, 0.2);
}

.single-drink-menu-card img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  display: block;
}

@media (max-width: 760px) {
  .single-drink-menu-card {
    padding: 8px;
    border-radius: 24px;
  }

  .single-drink-menu-card img {
    border-radius: 18px;
  }
}
/* Drink and pastry image display fix */

.menu-photo-item.drink-card .menu-item-image,
.menu-photo-item.pastry-card .menu-item-image {
  background-color: #ffffff;
}

.menu-photo-item.drink-card .menu-item-image img,
.menu-photo-item.pastry-card .menu-item-image img {
  object-fit: contain;
  padding: 18px;
}