:root {
  --cream: #F7F0E8;
  --soft-cream: #FBF7F2;
  --warm-white: #FFF9F4;
  --latte: #D0A073;
  --caramel: #C68F5F;
  --mocha: #5B3929;
  --espresso: #3E2419;
  --border: #D8B99D;
  --footer: #B8835C;
  --footer-dark: #9B6A4C;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --container-padding: clamp(24px, 5vw, 84px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
}

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

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

/* ======= ANNOUNCEMENT BAR ======= */
.announce-bar {
  width: 100%;
  background: var(--mocha);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 16px 10px var(--container-padding);
  gap: 12px;
}

.announce-bar p {
  flex: 1;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.announce-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: .7;
  line-height: 1;
  padding: 0 4px;
  transition: opacity .2s;
}

.announce-close:hover { opacity: 1; }

@media (max-width: 640px) {
  .announce-bar {
    position: relative;
    padding: 10px 16px;
    align-items: flex-start;
  }
  .announce-bar p {
    flex: 1;
    font-size: 10px;
    letter-spacing: 1px;
    white-space: normal;
    text-align: center;
  }
  .announce-break {
    display: block;
    text-align: center;
  }
  .announce-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 16px;
  }
}

/* ======= HEADER ======= */
.header {
  width: 100%;
  height: 92px;
  padding: 0 var(--container-padding);
  background: rgba(251, 247, 242, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand-logo {
  height: 84px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

/* ======= NAV ======= */
.nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav a::after {
  content: '';
  width: 0;
  height: 1px;
  background: var(--caramel);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width .25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  height: 52px;
  padding: 0 30px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--espresso);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.btn-primary {
  background: var(--caramel);
  color: #fff;
  border-color: var(--caramel);
}

.btn-outline {
  background: rgba(255, 249, 244, .32);
}

.btn-outline.light {
  color: #fff;
  border-color: rgba(255,255,255,.72);
}

/* ======= HERO ======= */
.hero {
  min-height: calc(100vh - 92px);
  padding: 80px var(--container-padding) 76px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg,
      #f7f0e8 0%,
      #f7f0e8 38%,
      rgba(247,240,232,.80) 54%,
      rgba(247,240,232,.05) 75%
    ),
    url('../images/hero-coffee.jpg') center right / cover no-repeat;
  background-color: var(--cream);
}

.hero-content {
  max-width: 620px;
}

.hero-logo {
  width: 220px;
  height: auto;
  mix-blend-mode: multiply;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 26px;
  font-family: var(--font-heading);
  font-size: clamp(56px, 6vw, 90px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 4.8px;
  text-transform: uppercase;
}

.line,
.center-line {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--caramel);
}

.hero p {
  max-width: 430px;
  margin: 26px 0 36px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.scroll-mark {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--mocha);
}

.scroll-mouse {
  width: 22px;
  height: 38px;
  border: 1.5px solid var(--mocha);
  border-radius: 20px;
  opacity: .6;
}

@media (max-width: 768px) {
  .scroll-mouse { display: none; }
  .scroll-mark .scroll-label { font-size: 0; letter-spacing: 0; }
  .scroll-mark .scroll-label::after {
    content: 'SWIPE';
    font-size: 9px;
    letter-spacing: 3px;
  }
}

.scroll-mark small {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .7;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  opacity: .6;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* ======= MENU SECTION ======= */
.section {
  padding: 74px var(--container-padding) 88px;
  scroll-margin-top: 92px;
}

/* Category card grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 20px);
  max-width: 1380px;
  margin: 48px auto 0;
}

.category-grid .drink-card {
  flex: 1 1 110px;
  max-width: 190px;
  min-width: 90px;
}

.category-card {
  display: flex;
  flex-direction: column;
}

.category-card .drink-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 20px;
}

.category-card .drink-copy h3 {
  font-size: 17px;
  letter-spacing: 0.5px;
}

.category-card .category-toggle {
  margin-top: auto;
}

/* Gradient card backgrounds (for non-image cards) */
.card-bg {
  width: 100%;
  aspect-ratio: 1.22 / 1;
}

.bg-teas        { background: linear-gradient(135deg, #C8A06E 0%, #7A5230 100%); }
.bg-others      { background: linear-gradient(135deg, #B8906A 0%, #6A4020 100%); }
.bg-pastries    { background: linear-gradient(135deg, #D4AA7A 0%, #9B6A38 100%); }
.bg-toasts      { background: linear-gradient(135deg, #C89060 0%, #885030 100%); }
.bg-sandwiches  { background: linear-gradient(135deg, #B87850 0%, #784020 100%); }
.bg-kids        { background: linear-gradient(135deg, #D0B090 0%, #9B7248 100%); }
.bg-breakfast   { background: linear-gradient(135deg, #C89870 0%, #885A30 100%); }
.bg-omelettes   { background: linear-gradient(135deg, #B87050 0%, #783820 100%); }
.bg-traditional { background: linear-gradient(135deg, #5B3929 0%, #3E2419 100%); }
.bg-summer      { background: linear-gradient(135deg, #D4847A 0%, #9B4040 100%); }
.bg-milkshakes  { background: linear-gradient(135deg, #D8B890 0%, #C09060 100%); }

/* Category toggle button */
.category-toggle {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0 0 2px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--espresso);
  cursor: pointer;
  text-align: left;
  transition: color .2s, border-color .2s;
}

.category-card.active .category-toggle {
  color: var(--caramel);
  border-bottom-color: var(--caramel);
}

/* Accordion panel (default hidden) */
.category-panel {
  display: none;
}

/* Side-by-side view when a panel is open */
.menu-content.active.panel-active {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0 52px;
  align-items: start;
  max-width: 1100px;
  margin: 48px auto 0;
}

.menu-content.active.panel-active .category-grid {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}

.menu-content.active.panel-active .category-grid .drink-card {
  flex: 0 0 auto;
  width: 190px;
  max-width: 190px;
}

.menu-content.active.panel-active .category-grid .drink-card:not(.active) {
  display: none;
}

.menu-content.active.panel-active .category-panel {
  display: none;
  grid-column: 2;
  grid-row: 1;
}

.menu-content.active.panel-active .category-panel.open {
  display: block;
}

.panel-inner {
  padding: 0;
  border-top: none;
  max-width: none;
  margin: 0;
}

.panel-subhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
}

/* Close button */
.panel-close {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mocha);
  padding: 6px 14px;
  margin-bottom: 22px;
  transition: background .2s, color .2s, border-color .2s;
}

.panel-close:hover {
  background: var(--caramel);
  color: #fff;
  border-color: var(--caramel);
}

/* Mobile: revert to stacked accordion */
@media (max-width: 768px) {
  .category-grid .drink-card {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    min-width: 0;
  }

  .menu-content.active.panel-active {
    display: block;
    margin: 48px 0 0;
  }
  .menu-content.active.panel-active .category-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 0 0 24px;
  }
  .menu-content.active.panel-active .category-grid .drink-card {
    flex: 0 0 195px;
    max-width: 195px;
  }
  .menu-content.active.panel-active .category-panel {
    display: none;
  }
  .menu-content.active.panel-active .category-panel.open {
    display: block;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .menu-content.active.panel-active .panel-inner {
    padding: 24px 0 0;
  }
}

/* Menu Landing */
.menu-landing {
  margin-top: 40px;
}

.menu-landing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-landing-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.menu-landing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.menu-landing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,20,10,0.7) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
  transition: opacity 0.3s ease;
}

.menu-landing-card:hover::after {
  opacity: 0.8;
}

.menu-landing-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-align: center;
}

/* Menu Detail */
.menu-detail {
  display: none;
}

.menu-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--caramel);
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #fff;
  cursor: pointer;
  padding: 10px 22px;
  margin: 72px 0 0;
  transition: opacity 0.2s;
}

.menu-back:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .menu-landing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 16px auto 0;
  border-bottom: 1px solid var(--border);
  max-width: 860px;
  flex-wrap: wrap;
}

.menu-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mocha);
  opacity: .5;
  cursor: pointer;
  transition: opacity .2s, border-color .2s;
}

.menu-tab:hover {
  opacity: .8;
}

.menu-tab.active {
  opacity: 1;
  border-bottom-color: var(--caramel);
}

.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
}

.menu-subcategory {
  margin: 48px 0 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--caramel);
}

/* ======= MENU ITEM LISTS ======= */
.menu-body {
  max-width: 1140px;
  margin: 0 auto;
}

.menu-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 72px;
  margin-top: 44px;
}

.menu-subcat-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
}

.size-labels {
  display: flex;
  gap: 20px;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 1.5px;
  color: var(--mocha);
  opacity: .55;
}

.size-labels em { font-style: normal; }

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216,185,157,.22);
}

.menu-item:last-child { border-bottom: none; }

.menu-item--star .item-name::before {
  content: '★ ';
  color: var(--caramel);
  font-size: 9px;
  vertical-align: middle;
}

.menu-item--featured .item-name {
  color: var(--caramel);
}

.item-info {
  display: flex;
  flex-direction: column;
}

.item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.4;
}

.item-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--mocha);
  opacity: .62;
  margin-top: 3px;
  line-height: 1.55;
}

.item-prices {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.item-prices em {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--mocha);
  min-width: 40px;
  text-align: right;
}

.item-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--mocha);
  flex-shrink: 0;
  white-space: nowrap;
}

.menu-note {
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--mocha);
  opacity: .58;
  font-style: italic;
  line-height: 1.7;
}

.coming-soon {
  text-align: center;
  padding: 80px 20px;
  color: var(--mocha);
}

.coming-soon span {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 14px;
  white-space: nowrap;
}

.coming-soon p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  opacity: .7;
  white-space: nowrap;
}

.coming-soon .catering-cta-label {
  margin: 56px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--caramel);
}

.eyebrow {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mocha);
}

.eyebrow.align-left {
  text-align: left;
}

.center-line {
  margin: 8px auto 0;
  width: 46px;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px);
  max-width: 1220px;
  margin: 52px auto 0;
}

.drink-card {
  background: rgba(255,255,255,.32);
  box-shadow: 0 18px 40px rgba(62,36,25,.07);
  overflow: hidden;
}

.drink-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.drink-copy {
  padding: 22px 24px 28px;
}

.drink-card h3 {
  margin: 0 0 3px;
  font-family: var(--font-heading);
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.drink-card p {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 500;
}

.drink-card a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

/* ======= STORY ======= */
.story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--cream);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: left center;
}

.story-content {
  padding: clamp(70px, 8vw, 118px) clamp(36px, 8vw, 96px);
  background: linear-gradient(135deg, #FBF4EF 0%, #F0DED0 100%);
}

.story-content h2 {
  margin: 22px 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.story-content p:not(.eyebrow) {
  max-width: 450px;
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.story-content .btn {
  margin-top: 20px;
}

.line.small {
  width: 42px;
  margin-top: 14px;
}

/* ======= CAREERS ======= */
.careers-section {
  padding: 88px var(--container-padding);
  background: #F7EAD8;
  text-align: center;
  scroll-margin-top: 92px;
}

.careers-inner {
  max-width: 600px;
  margin: 0 auto;
}

.careers-inner h2 {
  margin: 20px 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--espresso);
  line-height: 1.05;
}

.careers-inner p:not(.eyebrow) {
  margin: 0 0 36px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--mocha);
  opacity: .85;
}

.careers-inner .eyebrow {
  margin: 0;
}

/* ======= GALLERY / INSTAGRAM ======= */
.gallery {
  padding: 48px var(--container-padding) 58px;
  background: var(--soft-cream);
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.gallery-head p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: none;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.gallery-row img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-row img:hover {
  transform: scale(1.03);
}

/* ======= REVIEWS ======= */
.reviews-section {
  background: var(--cream);
  padding: 64px var(--container-padding);
}

.reviews-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.reviews-inner .line {
  margin: 0 auto 32px;
}

/* ======= FOOTER ======= */
.footer {
  padding: 58px var(--container-padding) 46px;
  background: linear-gradient(135deg, var(--footer-dark), var(--footer));
  color: #fff;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
}

.footer-brand img {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
}

.footer p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.8;
  opacity: .92;
}

.footer h4 {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.socials a {
  color: #fff;
  opacity: .8;
  transition: opacity .2s;
}

.socials a:hover {
  opacity: 1;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  opacity: .7;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: .8;
}

.footer-bottom a:hover { opacity: 1; }
.footer-bottom .sep { margin: 0 8px; opacity: .4; }

/* ======= LOCATION ======= */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 480px;
  scroll-margin-top: 92px;
  background: var(--cream);
}

.location-info {
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.location-info h2 {
  margin: 20px 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.05;
}

.location-info p {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--mocha);
}

.location-info .btn {
  align-self: flex-start;
  margin-top: 10px;
}

.location-map {
  min-height: 480px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .location-section {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 300px;
  }
}

/* ======= SHOP ======= */
.shop-section {
  background: var(--cream);
  padding-top: 48px;
  padding-bottom: 60px;
}

.shop-heading {
  margin: 14px 0 8px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--espresso);
}

.shop-sub {
  margin: 0 auto 32px;
  max-width: 700px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--mocha);
  opacity: .75;
  line-height: 1.8;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  max-width: 1380px;
  margin: 0 auto;
}

.shop-card {
  background: var(--soft-cream);
  box-shadow: 0 18px 40px rgba(62,36,25,.07);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(62,36,25,.13);
}

.shop-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
}

.bg-shop-house,
.bg-shop-ethiopia,
.bg-shop-turkish  { background: url("../images/coffe beans1.jpeg") center / cover no-repeat; }

.shop-badge {
  background: var(--caramel);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.shop-card-body {
  padding: 24px 26px 28px;
}

.shop-card-tag {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
}

.shop-card-name {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--espresso);
  line-height: 1.1;
}

.shop-card-desc {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mocha);
  line-height: 1.75;
  opacity: .75;
}

.shop-sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.shop-size {
  background: transparent;
  border: 1px solid var(--border);
  padding: 7px 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--mocha);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.shop-size.active,
.shop-size:hover {
  background: var(--espresso);
  color: #fff;
  border-color: var(--espresso);
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(216,185,157,.35);
}

.shop-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 1px;
}

.shop-cta {
  min-width: 140px;
  height: 44px;
  font-size: 10px;
  letter-spacing: 1.8px;
}

@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .shop-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ======= FLOATING SHARE BUTTON ======= */
.share-fab {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--latte);
  color: #fff;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(62,36,25,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.share-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(62,36,25,.36);
}

@media (max-width: 768px) {
  .share-fab { display: flex; }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 980px) {
  .header {
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    height: 76px;
    width: auto;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
  }

  .hero {
    min-height: 650px;
    padding-top: 100px;
  }

  .drink-grid,
  .story,
  .footer {
    grid-template-columns: 1fr;
  }

  .menu-category-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .menu-tabs {
    gap: 0;
  }

  .menu-tab {
    padding: 12px 18px;
    font-size: 10px;
  }

  .story-image img {
    min-height: 420px;
  }

  .story-content {
    text-align: center;
    padding: 48px clamp(24px, 6vw, 64px);
  }

  .story-content p:not(.eyebrow) {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .story-content .line.small {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow.align-left {
    text-align: center;
  }

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

  .footer-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-btn {
    display: none;
  }

  .nav {
    justify-content: flex-start;
    font-size: 11px;
  }

  .nav a {
    white-space: nowrap;
  }

  .menu-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 20px;
  }

  .hero {
    min-height: 610px;
    padding-top: 86px;
    padding-bottom: 120px;
    background:
      linear-gradient(180deg, rgba(247,240,232,.90) 0%, rgba(247,240,232,.78) 30%, rgba(247,240,232,.30) 60%, rgba(247,240,232,.08) 100%),
      url('../images/hero-coffee.jpg') 60% center / cover no-repeat;
    background-color: var(--cream);
  }

  .hero h1 {
    font-size: 45px;
    letter-spacing: 2.5px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .drink-grid {
    gap: 28px;
  }

  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
