:root {
  --paper: #f8f5f0;
  --white: #ffffff;
  --ink: #18130f;
  --muted: #776d66;
  --line: #e3dbd1;
  --bronze: #b97a25;
  --bronze-dark: #9c6418;
  --footer: #28231f;
  --shadow: 0 16px 38px rgba(40, 35, 31, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  min-height: 78px;
  padding: 0 clamp(20px, 6vw, 120px);
  background: rgba(248, 245, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
}

.brand span,
.footer-brand span {
  color: var(--bronze);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links .active,
.nav-links a:hover {
  color: var(--bronze);
}

.header-actions,
.hero-actions,
.visit-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.call-link {
  padding: 10px 12px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(40, 35, 31, 0.12);
}

.button.bronze {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button.glass {
  min-width: 154px;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(1.04) contrast(1.04) saturate(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(28, 20, 14, 0.34), rgba(28, 20, 14, 0.38)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.44));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 80px 20px 54px;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-family: "Bodoni 72", "Bodoni MT", "Didot", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.hero p {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 23px);
  font-style: italic;
}

.hero .hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.testimonials h2,
.visit-cta h2,
.tea-details h2 {
  font-size: clamp(32px, 3.2vw, 42px);
}

.section-heading p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}

.intro,
.menu,
.tea-details,
.catering,
.testimonials,
.visit-cta {
  padding: clamp(70px, 8vw, 116px) clamp(20px, 6vw, 120px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 90px auto 0;
}

.feature-card,
.testimonial-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.feature-card img.photo-fit-contain {
  object-fit: cover;
  object-position: center;
  background: #eee8df;
  padding: 0;
  height: 280px;
}

.feature-card div {
  padding: 28px;
}

.feature-card h3 {
  font-size: 22px;
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
}

.feature-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--bronze);
  font-weight: 600;
}

.menu {
  background: var(--white);
}

.menu-heading-block {
  padding-top: 70px;
}

.menu-jump {
  max-width: 1120px;
  margin: 34px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.menu-jump a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  background: var(--paper);
}

.menu-jump a:hover {
  border-color: var(--bronze);
  color: var(--bronze-dark);
}

.menu-list {
  max-width: 820px;
  margin: 58px auto 0;
}

.full-menu-list {
  max-width: 1120px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 58px;
  align-items: start;
}

.menu-category + .menu-category {
  margin-top: 48px;
}

.full-menu-list .menu-category + .menu-category {
  margin-top: 0;
}

.menu-category h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 26px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 0 0;
}

.menu-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.menu-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.menu-item em {
  color: var(--bronze-dark);
  font-style: normal;
  white-space: nowrap;
  text-align: right;
}

.menu-button {
  width: fit-content;
  margin: 44px auto 0;
}

.tea {
  background: var(--paper);
}

.tea-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #1e1713;
}

.tea-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  background: #3a2619;
  filter: none;
}

.tea-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(36, 20, 12, 0.38), rgba(36, 20, 12, 0.10), rgba(36, 20, 12, 0.38)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.04));
}

.tea-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 70px 20px;
}

.tea-hero h2 {
  color: #fff;
  font-size: clamp(42px, 5vw, 62px);
}

.tea-hero h1 {
  font-family: "Bodoni 72", "Bodoni MT", "Didot", Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.98;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.tea-hero p {
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.tea-hero .hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.tea-details {
  text-align: center;
}

.tea-details ul {
  max-width: 680px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.tea-details li {
  margin-top: 14px;
  padding: 15px 22px;
  border-radius: 10px;
  background: #f1eee9;
  text-align: left;
}

.tea-details li::before {
  content: "✓";
  margin-right: 18px;
  color: var(--bronze);
}

.tea-reserve {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 34px;
  max-width: 900px;
  margin: 56px auto 0;
  align-items: center;
  text-align: left;
}

.tea-reserve img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.tea-reserve h3 {
  font-size: 28px;
}

.tea-reserve p {
  margin-top: 16px;
  color: var(--muted);
}

.tea-reserve .button {
  margin-top: 24px;
}

.tea-experience {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 6vw, 120px);
  background:
    linear-gradient(180deg, var(--paper), #fff 44%, var(--paper));
}

.tea-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.tea-intro span,
.tea-details-panel span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tea-intro h2,
.tea-details-panel h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.tea-intro p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
}

.tea-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 52px auto 0;
}

.tea-feature-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.tea-feature-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--bronze);
  font-weight: 800;
}

.tea-feature-grid h3 {
  font-size: 23px;
}

.tea-feature-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.tea-showcase {
  display: grid;
  grid-template-columns: minmax(250px, 410px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1120px;
  margin: 76px auto 0;
}

.tea-menu-frame {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(188, 126, 44, 0.38);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), transparent 40%),
    linear-gradient(180deg, #332923 0%, #211c18 100%);
  box-shadow: 0 28px 70px rgba(34, 24, 18, 0.22);
}

.tea-menu-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(188, 126, 44, 0.24);
  pointer-events: none;
  z-index: 1;
}

.tea-menu-frame img {
  width: 100%;
  min-height: 500px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.tea-details-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(188, 126, 44, 0.44);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #332923 0%, #211c18 100%);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(34, 24, 18, 0.22);
}

.tea-details-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(188, 126, 44, 0.26);
  pointer-events: none;
}

.tea-details-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: rgba(188, 126, 44, 0.18);
  filter: blur(18px);
  pointer-events: none;
}

.tea-details-panel > * {
  position: relative;
  z-index: 1;
}

.tea-details-panel h2 {
  color: #fff;
  max-width: 620px;
}

.tea-details-panel p {
  margin-top: 18px;
  max-width: 640px;
  line-height: 1.75;
}

.tea-details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 24px;
}

.tea-details-grid div {
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 18px 12px;
  border: 1px solid rgba(188, 126, 44, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.tea-details-grid strong,
.tea-details-grid small {
  display: block;
}

.tea-details-grid strong {
  color: #fff;
  margin: 4px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 700;
  line-height: 1;
}

.tea-details-grid small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.tea-details-grid small:first-child {
  color: var(--bronze);
  font-weight: 800;
  letter-spacing: 1px;
}

.tea-details-note {
  padding-top: 20px;
  border-top: 1px solid rgba(188, 126, 44, 0.24);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.tea-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 68px auto 0;
}

.tea-photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.tea-gallery {
  margin: clamp(72px, 8vw, 112px) auto 0;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  max-width: 1180px;
  margin: 46px auto 0;
}

.gallery-open {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.gallery-mosaic img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-open:hover img {
  transform: scale(1.035);
  filter: brightness(1.04);
}

.gallery-mosaic .tall {
  grid-row: span 2;
}

.gallery-mosaic .tall img {
  height: 534px;
}

.gallery-mosaic .wide {
  grid-column: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 14, 10, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1180px, 92vw);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.catering {
  background: var(--white);
}

.testimonials {
  background: #f1eee9;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 42px auto 0;
  text-align: left;
}

.testimonial-grid article {
  padding: 28px;
}

.testimonial-grid span {
  display: block;
  color: var(--bronze);
  letter-spacing: 2px;
}

.testimonial-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-style: italic;
}

.testimonial-grid strong {
  display: block;
  margin-top: 20px;
}

.reviews-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--bronze-dark);
  font-weight: 700;
}

.reviews-link:hover {
  color: var(--bronze);
}

.visit-cta {
  background: var(--white);
  text-align: center;
}

.visit-cta p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.visit-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 80px;
  padding: 70px clamp(20px, 6vw, 120px) 40px;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.site-footer p {
  margin-top: 20px;
}

.footer-brand {
  display: inline-block !important;
  margin: 0 !important;
  color: #fff;
}

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

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .nav-links.is-open,
  .header-actions.is-open {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-grid,
  .testimonial-grid,
  .tea-feature-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .tea-showcase {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .tea-details-grid,
  .tea-photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.page-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(28, 20, 14, 0.50), rgba(28, 20, 14, 0.52)),
    url("assets/street-food-banner.png") center / cover;
  color: #fff;
  text-align: center;
}

.menu-page-hero {
  background: url("assets/menu-banner.png") center / cover;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.catering-page-hero {
  background:
    linear-gradient(rgba(28, 20, 14, 0.50), rgba(28, 20, 14, 0.52)),
    url("assets/tea-service-2.jpg") center / cover;
}

.page-hero h1,
.contact-page h1 {
  font-size: clamp(42px, 5vw, 64px);
}

.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.standalone {
  min-height: 560px;
}

.compact-footer {
  margin-top: 0;
}

.contact-page {
  padding-top: clamp(82px, 9vw, 130px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 0.7fr) minmax(300px, 1fr);
  gap: 28px;
  padding: 0 clamp(20px, 6vw, 120px) clamp(70px, 8vw, 116px);
  background: var(--white);
}

.contact-grid > div {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-grid > div:not(:last-child) {
  padding: 30px;
}

.contact-grid h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.contact-grid p + p {
  margin-top: 18px;
}

.contact-grid .muted {
  color: var(--muted);
}

.contact-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

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

@media (max-width: 700px) {
  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand {
    font-size: 23px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p,
  .tea-hero p,
  .section-heading p {
    font-size: 17px;
  }

  .hero-actions,
  .visit-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .tea-reserve {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tea-details-grid,
  .tea-photo-strip {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic img,
  .gallery-mosaic .tall,
  .gallery-mosaic .wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-mosaic img,
  .gallery-mosaic .tall img,
  .gallery-mosaic .wide img {
    height: 330px;
  }

  .full-menu-list {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .menu-item {
    display: block;
  }

  .menu-item em {
    display: block;
    margin-top: 6px;
  }
}
