:root {
  --cream: #f6efe6;
  --cream-2: #fbf7f0;
  --sand: #e5d1b8;
  --gold: #b98b5d;
  --gold-soft: rgba(185, 139, 93, .14);
  --tea: #6f4e37;
  --deep: #25211d;
  --deep-2: #171411;
  --green: #566b4d;
  --white: #ffffff;
  --radius-lg: 42px;
  --radius-md: 30px;
  --shadow-soft: 0 24px 70px rgba(111, 78, 55, .12);
  --shadow-strong: 0 34px 90px rgba(37, 33, 29, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--deep);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
.brand {
  font-family: "Cormorant Garamond", serif;
}

a {
  text-decoration: none;
}

.max-760 {
  max-width: 760px;
}

.nav-glass {
  background: rgba(246, 239, 230, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(111, 78, 55, .12);
  transition: background .35s ease, box-shadow .35s ease;
}

.nav-glass.nav-scrolled {
  background: rgba(246, 239, 230, .93);
  box-shadow: 0 16px 45px rgba(37, 33, 29, .08);
}

.brand {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--tea);
  letter-spacing: .02em;
}

.brand:hover {
  color: var(--tea);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.nav-link {
  color: var(--deep);
  font-weight: 700;
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold);
}

.btn-tea {
  background: var(--tea);
  color: white;
  border-radius: 999px;
  padding: .85rem 1.35rem;
  font-weight: 800;
  border: 1px solid var(--tea);
  box-shadow: 0 14px 30px rgba(111, 78, 55, .2);
}

.btn-tea:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-1px);
}

.btn-soft {
  border-radius: 999px;
  padding: .85rem 1.35rem;
  font-weight: 800;
}

.premium-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(185, 139, 93, .18), transparent 30%),
    linear-gradient(90deg, rgba(37, 33, 29, .86), rgba(37, 33, 29, .42), rgba(37, 33, 29, .06)),
    linear-gradient(0deg, rgba(37, 33, 29, .52), transparent 48%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
  color: var(--sand);
  margin-bottom: 1rem;
}

.eyebrow.dark {
  color: var(--gold);
}

.display-title {
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: .92;
  font-weight: 700;
  letter-spacing: -.04em;
  max-width: 880px;
}

.hero-text {
  max-width: 660px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .84);
  margin: 1.5rem 0 2rem;
}

.floating-card {
  position: absolute;
  right: 7%;
  bottom: 9%;
  z-index: 3;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 28px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .2);
}

.floating-card span {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 900;
}

.floating-card strong {
  display: block;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.section-pad {
  padding: 110px 0;
}

.bg-cream {
  background: var(--cream);
}

.bg-deep {
  background: var(--deep);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--deep);
}

.lead-soft {
  font-size: 1.18rem;
  color: rgba(37, 33, 29, .72);
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgba(111, 78, 55, .22);
}

.image-badge {
  position: absolute;
  right: -25px;
  bottom: 35px;
  background: var(--deep);
  color: white;
  border-radius: 26px;
  padding: 1.2rem 1.5rem;
}

.image-badge strong {
  display: block;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.image-badge span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}

.link-arrow {
  color: var(--tea);
  font-weight: 900;
}

.link-arrow::after {
  content: " →";
}

.premium-card {
  height: 100%;
  background: white;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(111, 78, 55, .08);
  transition: transform .35s ease, box-shadow .35s ease;
  transform-style: preserve-3d;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(111, 78, 55, .18);
}

.premium-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}

.premium-card:hover img {
  transform: scale(1.07);
}

.premium-card div {
  padding: 1.5rem;
}

.premium-card span,
.menu-item span,
.price-range-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 900;
}

.premium-card h3 {
  font-size: 2rem;
  margin: .4rem 0;
}

.premium-card p {
  color: rgba(37, 33, 29, .65);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  min-height: 260px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  min-height: 540px;
}

.footer {
  background: var(--deep-2);
  color: white;
  padding: 60px 0;
}

.footer h3 {
  font-size: 2.2rem;
}

.footer p {
  color: rgba(255, 255, 255, .62);
}

.price-range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-range-card {
  background: white;
  border-radius: 30px;
  padding: 1.8rem;
  border: 1px solid rgba(111, 78, 55, .1);
  box-shadow: 0 20px 55px rgba(111, 78, 55, .08);
}

.price-range-card.featured {
  background: var(--deep);
  color: white;
  transform: translateY(-8px);
}

.price-range-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  margin: .7rem 0;
}

.price-range-card p {
  margin: 0;
  color: rgba(37, 33, 29, .65);
}

.price-range-card.featured p {
  color: rgba(255, 255, 255, .65);
}

.menu-tabs {
  gap: .8rem;
}

.menu-tabs .nav-link {
  border-radius: 999px;
  background: white;
  color: var(--deep);
  padding: .8rem 1.2rem;
  font-weight: 900;
  border: 1px solid rgba(111, 78, 55, .12);
}

.menu-tabs .nav-link.active {
  background: var(--tea);
  color: white;
}

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

.menu-item {
  background: white;
  border-radius: 30px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(111, 78, 55, .1);
  box-shadow: 0 20px 50px rgba(111, 78, 55, .09);
}

.menu-item span {
  display: inline-block;
  background: var(--gold-soft);
  border-radius: 999px;
  padding: .25rem .65rem;
  margin-bottom: .6rem;
}

.menu-item h3 {
  font-size: 1.75rem;
  margin-bottom: .3rem;
}

.menu-item p {
  color: rgba(37, 33, 29, .62);
  margin: 0;
}

.menu-item strong {
  color: var(--tea);
  font-size: 1.2rem;
  white-space: nowrap;
}

.takeaway-box {
  background: var(--deep);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 2rem;
  box-shadow: var(--shadow-strong);
}

.takeaway-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 4rem);
}

.takeaway-box p {
  color: rgba(255, 255, 255, .7);
}

.info-list {
  background: rgba(255, 255, 255, .08);
  border-radius: 26px;
  padding: 1.5rem;
}

.infusion-tip {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.infusion-tip:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(111, 78, 55, .12);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.infusion-tool {
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .08);
  border: 1px solid rgba(111, 78, 55, .08);
}

.form-label-custom {
  display: block;
  margin-bottom: .8rem;
  font-weight: 800;
  color: var(--tea);
}

.tea-select {
  width: 100%;
  height: 64px;
  border-radius: 22px;
  border: 1px solid rgba(111, 78, 55, .15);
  padding: 0 1.2rem;
  background: #fff;
  font-weight: 700;
  color: var(--deep);
  transition: border-color .3s ease, box-shadow .3s ease, opacity .3s ease;
  outline: none;
}

.tea-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 139, 93, .12);
}

.tea-select:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.infusion-result {
  margin-top: 3rem;
  min-height: 320px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.result-empty {
  background: var(--cream);
  border-radius: 32px;
  padding: 4rem 2rem;
  text-align: center;
  color: rgba(37, 33, 29, .55);
  font-size: 1.1rem;
}

.result-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 3rem;
  color: white;
  min-height: 320px;
}

.result-heading span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 900;
  opacity: .78;
  margin-bottom: .5rem;
}

.result-heading h3 {
  font-size: clamp(2.7rem, 4vw, 4.1rem);
  margin-bottom: .25rem;
}

.result-heading p {
  font-size: 1.2rem;
  opacity: .84;
  margin-bottom: 2rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.result-box {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1.5rem;
}

.result-box span {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .74;
  margin-bottom: .4rem;
}

.result-box strong {
  font-size: 1.5rem;
}

.result-black {
  background: linear-gradient(135deg, #2d2724, #51433a);
}

.result-darktea {
  background: linear-gradient(135deg, #8b713a, #c2b28b);
}

.result-green {
  background: linear-gradient(135deg, #7f9a47, #c3d89c);
}

.result-japan {
  background: linear-gradient(135deg, #55724e, #98bf7b);
}

.result-oolong {
  background: linear-gradient(135deg, #2b5f63, #7ba5a8);
}

.result-white {
  background: linear-gradient(135deg, #dadada, #f2f2f2);
  color: #222;
}

.result-yellow {
  background: linear-gradient(135deg, #fff06b, #fff8b8);
  color: #222;
}

.result-perfumed {
  background: linear-gradient(135deg, #9c256e, #c18aa5);
}

.result-rooibos {
  background: linear-gradient(135deg, #bb7a44, #efb27b);
}

.result-tisane {
  background: linear-gradient(135deg, #39a94a, #a7d19b);
}

.result-white .result-box,
.result-yellow .result-box {
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(0, 0, 0, .05);
}

.infusion-visual img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

@media (max-width: 991px) {
  .section-pad {
    padding: 78px 0;
  }

  .floating-card {
    display: none;
  }

  .image-stack img {
    height: 440px;
  }

  .image-badge {
    right: 20px;
  }

  .price-range-grid,
  .menu-grid,
  .takeaway-box,
  .gallery-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .price-range-card.featured {
    transform: none;
  }

  .gallery-grid img:first-child {
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .display-title {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  .premium-hero .min-vh-100 {
    min-height: 88vh !important;
  }

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

  .infusion-tool,
  .result-card,
  .takeaway-box {
    border-radius: 28px;
  }

  .result-card {
    padding: 2rem;
  }

  .menu-item {
    flex-direction: column;
  }
}
