@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Lexend+Deca:wght@100..900&display=swap');

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #222;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

html.admin-bar {
  margin-top: 0 !important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin-bottom: 1rem;
  color: #000;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 6px;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
  vertical-align: middle;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
  color: #000;
  cursor: pointer;
}

a:hover {
  color: #8529cd;
}

body {
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: auto;
}

@media (max-width: 520px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

:root {
  --primary-color: #0f0f10;
  --secondary-color: #1a1715;
  --accent-color: #c8a46b;
  --accent-light: #e2c38f;
  --dark-color: #070707;
  --white-color: #f5efe6;
  --text-color: #c9beb0;
}

.jp-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  width: 100%;

  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.96), rgba(15, 15, 16, 0.86)),
    radial-gradient(circle at 12% 0%, rgba(200, 164, 107, 0.14), transparent 34%);

  border-bottom: 1px solid rgba(200, 164, 107, 0.18);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.jp-header.is-sticky {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.jp-header__inner {
  width: min(1320px, calc(100% - 48px));
  height: 82px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.jp-header__logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;

  text-decoration: none;
}

.jp-header__logo span {
  color: var(--accent-light);

  font-size: 28px;
  font-weight: 300;
  letter-spacing: .22em;
}

.jp-header__logo small {
  margin-bottom: 4px;

  color: var(--text-color);

  font-size: 13px;
  letter-spacing: .24em;
}

.jp-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.jp-header__nav a {
  position: relative;

  color: var(--text-color);

  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;

  transition: .35s ease;
}

.jp-header__nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -12px;

  width: 0;
  height: 1px;

  background: linear-gradient(90deg, var(--accent-color), transparent);

  transition: .35s ease;
}

.jp-header__nav a:hover {
  color: var(--accent-light);
}

.jp-header__nav a:hover::after {
  width: 100%;
}

.jp-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.jp-header__phone {
  color: var(--white-color);

  text-decoration: none;
  font-size: 13px;
  letter-spacing: .12em;
}

.jp-header__book {
  padding: 14px 22px;

  border: 1px solid rgba(200, 164, 107, 0.38);
  background: rgba(255, 255, 255, 0.04);

  color: var(--white-color);

  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;

  transition: .35s ease;
}

.jp-header__book:hover {
  background: var(--accent-color);
  color: #111;

  box-shadow: 0 0 28px rgba(200, 164, 107, 0.2);
}

/* Mobile ẩn hẳn menu desktop */
@media (max-width: 1024px) {
  .jp-header {
    display: none !important;
  }
}

.teaMobileHeader,
.teaMobileMenu,
.teaMobileOverlay {
  display: none;
}

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

  .teaMobileHeader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;

    display: block;

    width: 100%;

    padding: 12px 14px;

    background:
      linear-gradient(180deg, rgba(7, 7, 7, .94), rgba(15, 15, 16, .78)),
      radial-gradient(circle at 12% 0%, rgba(200, 164, 107, .18), transparent 36%);

    border-bottom: 1px solid rgba(200, 164, 107, .16);

    backdrop-filter: blur(18px);
  }

  .teaMobileHeader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
  }

  .teaMobileHeader__logo,
  .teaMobileMenu__logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #f5efe6;

    text-decoration: none;
  }

  .teaMobileHeader__logo span,
  .teaMobileMenu__logo span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
  }

  .teaMobileHeader__logo small,
  .teaMobileMenu__logo small {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    color: #111;

    font-size: 12px;

    background: linear-gradient(135deg, #e2c38f, #c8a46b);
  }

  .teaMobileHeader__toggle {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(200, 164, 107, .24);
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    background: rgba(255, 255, 255, .06);

    cursor: pointer;
  }

  .teaMobileHeader__toggle span {
    width: 18px;
    height: 2px;

    border-radius: 99px;

    background: #e2c38f;
  }

  .teaMobileOverlay {
    position: fixed;
    inset: 0;
    z-index: 1002;

    display: block;

    background: rgba(0, 0, 0, .68);

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;
  }

  .teaMobileOverlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .teaMobileMenu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1003;

    display: flex;
    flex-direction: column;

    width: min(86vw, 360px);
    height: 100vh;

    padding: 22px;

    background:
      radial-gradient(circle at 20% 10%, rgba(200, 164, 107, .16), transparent 34%),
      radial-gradient(circle at 90% 90%, rgba(226, 195, 143, .10), transparent 34%),
      linear-gradient(180deg, #090909 0%, #15100d 52%, #070707 100%);

    border-left: 1px solid rgba(200, 164, 107, .22);

    box-shadow: -30px 0 80px rgba(0, 0, 0, .45);

    transform: translateX(105%);
    transition: .45s cubic-bezier(.7, 0, .2, 1);
  }

  .teaMobileMenu.is-active {
    transform: translateX(0);
  }

  .teaMobileMenu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 24px;

    border-bottom: 1px solid rgba(200, 164, 107, .15);
  }

  .teaMobileMenu__close {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(200, 164, 107, .24);
    border-radius: 50%;

    color: #e2c38f;

    font-size: 28px;
    line-height: 1;

    background: rgba(255, 255, 255, .05);

    cursor: pointer;
  }

  .teaMobileMenu__nav {
    display: flex;
    flex-direction: column;

    padding: 28px 0;

    gap: 6px;
  }

  .teaMobileMenu__nav a {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 0;

    color: #f5efe6;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1;

    text-decoration: none;

    border-bottom: 1px solid rgba(245, 239, 230, .08);
  }

  .teaMobileMenu__nav a span {
    color: #c8a46b;

    font-size: 11px;
    letter-spacing: 2px;

    font-family: Arial, sans-serif;
  }

  .teaMobileMenu__nav a::after {
    content: "";

    margin-left: auto;

    width: 34px;
    height: 1px;

    background: linear-gradient(90deg, #c8a46b, transparent);

    opacity: .55;
  }

  .teaMobileMenu__contact {
    margin-top: auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .teaMobileMenu__phone,
  .teaMobileMenu__book {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .teaMobileMenu__phone {
    color: #e2c38f;

    border: 1px solid rgba(200, 164, 107, .28);

    background: rgba(255, 255, 255, .05);
  }

  .teaMobileMenu__book {
    color: #111;

    background: linear-gradient(135deg, #e2c38f, #c8a46b);

    box-shadow: 0 18px 45px rgba(200, 164, 107, .18);
  }

  body.teaMenuOpen {
    overflow: hidden;
  }
}

.jp-footer {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.96)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1600&auto=format&fit=crop") center/cover;

  padding: 110px 0 38px;

  color: var(--white-color);
}

.jp-footer::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 2px,
      transparent 2px,
      transparent 14px);

  opacity: .25;
  pointer-events: none;
}

.jp-footer__glow {
  position: absolute;

  width: 520px;
  height: 520px;

  top: -240px;
  right: -140px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(200, 164, 107, 0.16),
      transparent 72%);

  filter: blur(30px);
}

.jp-footer .container {
  position: relative;
  z-index: 2;

  width: min(1280px, calc(100% - 48px));
  margin: auto;
}

.jp-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 70px;

  padding-bottom: 52px;
  margin-bottom: 34px;

  border-bottom: 1px solid rgba(200, 164, 107, 0.2);
}

.jp-footer__brand h2 {
  margin: 0 0 22px;

  font-size: clamp(38px, 5vw, 64px);
  font-weight: 200;
  letter-spacing: .18em;

  color: var(--accent-light);
}

.jp-footer__brand p {
  max-width: 420px;

  margin: 0 0 30px;

  color: var(--text-color);

  font-size: 15px;
  line-height: 1.9;
}

.jp-footer__socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.jp-footer__socials a {
  position: relative;

  color: var(--white-color);

  text-decoration: none;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;

  transition: .35s ease;
}

.jp-footer__socials a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--accent-color);

  transition: .35s ease;
}

.jp-footer__socials a:hover {
  color: var(--accent-light);
}

.jp-footer__socials a:hover::after {
  width: 100%;
}

.jp-footer__col {
  display: flex;
  flex-direction: column;
}

.jp-footer__label {
  position: relative;

  width: fit-content;

  margin-bottom: 28px;
  padding-bottom: 14px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;

  color: var(--accent-light);
}

.jp-footer__label::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 56px;
  height: 1px;

  background: linear-gradient(90deg,
      var(--accent-color),
      transparent);
}

.jp-footer__col p,
.jp-footer__col a {
  color: var(--text-color);

  text-decoration: none;

  line-height: 1.9;
}

.jp-footer__col a:hover {
  color: var(--accent-light);
}

.jp-footer__hotline {
  margin-bottom: 22px;

  font-size: 30px;
  font-weight: 300;
  letter-spacing: .08em;

  color: var(--white-color) !important;
}

.jp-footer__booking {
  width: fit-content;

  padding: 14px 26px;

  border: 1px solid rgba(200, 164, 107, 0.35);
  background: rgba(255, 255, 255, 0.04);

  color: var(--white-color);

  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;

  cursor: pointer;

  transition: .4s ease;

  backdrop-filter: blur(10px);
}

.jp-footer__booking:hover {
  background: var(--accent-color);

  color: #111;

  box-shadow:
    0 0 30px rgba(200, 164, 107, 0.18);
}

.jp-footer__hours {
  margin: 0;
  padding: 0;

  list-style: none;
}

.jp-footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding: 12px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.jp-footer__hours span {
  color: var(--text-color);
}

.jp-footer__hours strong {
  font-weight: 500;
  color: var(--white-color);
}

.jp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding-top: 10px;
}

.jp-footer__bottom p {
  margin: 0;

  color: rgba(201, 190, 176, 0.7);

  font-size: 13px;
  letter-spacing: .08em;
}

.jp-footer__links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.jp-footer__links a {
  color: rgba(201, 190, 176, 0.78);

  text-decoration: none;

  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;

  transition: .3s ease;
}

.jp-footer__links a:hover {
  color: var(--accent-light);
}

@media (max-width: 1100px) {

  .jp-footer__top {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {

  .jp-footer {
    padding: 80px 0 30px;
  }

  .jp-footer__top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .jp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .jp-footer__hotline {
    font-size: 24px;
  }

}

.teaHero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  padding: 120px 8%;
  color: var(--white-color);
}

.teaHero .teaHero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(7, 7, 7, .92) 0%,
      rgba(7, 7, 7, .68) 45%,
      rgba(7, 7, 7, .25) 100%),
    url("/images/tea-hero.jpg") center/cover;
  animation: teaHeroZoom 12s ease-in-out infinite alternate;
}

.teaHero .teaHero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 35%, rgba(200, 164, 107, .18), transparent 34%),
    radial-gradient(circle at 80% 75%, rgba(226, 195, 143, .12), transparent 32%),
    linear-gradient(180deg, rgba(7, 7, 7, .15), rgba(7, 7, 7, .95));
}

.teaHero .teaHero__logo {
  position: absolute;
  top: 42px;
  left: 8%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.teaHero .teaHero__logo span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 107, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 26px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
}

.teaHero .teaHero__logo p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--text-color);
}

.teaHero .teaHero__content {
  position: relative;
  z-index: 5;
  max-width: 850px;
}

.teaHero .teaHero__sub {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--accent-light);
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.teaHero .teaHero__sub::before {
  content: "";
  width: 70px;
  height: 1px;
  background: var(--accent-color);
}

.teaHero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7vw, 110px);
  line-height: 1;
  font-weight: 500;
  color: var(--white-color);
  letter-spacing: -2px;
}

.teaHero .teaHero__desc {
  max-width: 600px;
  margin-top: 30px;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.9;
}

.teaHero .teaHero__actions {
  display: flex;
  gap: 18px;
  margin-top: 45px;
}

.teaHero .teaHero__btn {
  height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: .35s;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.teaHero .teaHero__btn--primary {
  background: linear-gradient(135deg,
      var(--accent-color),
      var(--accent-light));
  color: #151515;
}

.teaHero .teaHero__btn--outline {
  border: 1px solid rgba(200, 164, 107, .35);
  color: var(--white-color);
  background: rgba(255, 255, 255, .03);
}

.teaHero .teaHero__btn:hover {
  transform: translateY(-4px);
}

.teaHero .teaHero__bottom {
  position: absolute;
  bottom: 40px;
  left: 8%;
  right: 8%;
  z-index: 4;

  display: flex;
  gap: 40px;

  padding-top: 25px;
  border-top: 1px solid rgba(200, 164, 107, .18);
}

.teaHero .teaHero__bottom span {
  color: var(--text-color);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.teaHero .teaHero__steam {
  position: absolute;
  bottom: 15%;
  right: 22%;
  width: 120px;
  height: 260px;

  background: linear-gradient(to top,
      transparent,
      rgba(255, 255, 255, .15),
      transparent);

  filter: blur(20px);
  border-radius: 50%;
  animation: teaHeroSteam 6s linear infinite;
}

.teaHero .steam2 {
  right: 28%;
  animation-delay: 2s;
}

.teaHero .steam3 {
  right: 18%;
  animation-delay: 4s;
}

@keyframes teaHeroSteam {
  from {
    transform: translateY(30px) scale(.8);
    opacity: 0;
  }

  30% {
    opacity: .4;
  }

  to {
    transform: translateY(-140px) translateX(-25px) scale(1.3);
    opacity: 0;
  }
}

@keyframes teaHeroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.teaPhilosophy {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, #f5efe6 0%, #e9decd 52%, #f7f1e8 100%);
  color: #1a1715;
}

.teaPhilosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 23, 21, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 23, 21, .04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.teaPhilosophy::after {
  content: "茶";
  position: absolute;
  right: 6%;
  top: 8%;
  font-size: clamp(120px, 18vw, 260px);
  line-height: 1;
  color: rgba(200, 164, 107, .11);
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}

.teaPhilosophy .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.teaPhilosophy .teaPhilosophy__head {
  max-width: 760px;
  margin-bottom: 64px;
}

.teaPhilosophy .teaPhilosophy__sub {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: #8f6c3f;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.teaPhilosophy .teaPhilosophy__sub::before {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, #c8a46b, transparent);
}

.teaPhilosophy h2 {
  margin: 0;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
  color: #111;
}

.teaPhilosophy .teaPhilosophy__head p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(26, 23, 21, .68);
  font-size: 17px;
  line-height: 1.9;
}

.teaPhilosophy .teaPhilosophy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.teaPhilosophy .teaPhilosophy__card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 34px 28px;
  border: 1px solid rgba(139, 107, 74, .22);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, .18)),
    rgba(245, 239, 230, .52);
  box-shadow: 0 24px 70px rgba(26, 23, 21, .08);
  transition: .45s ease;
}

.teaPhilosophy .teaPhilosophy__card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(200, 164, 107, .22);
  border-radius: 22px;
  pointer-events: none;
}

.teaPhilosophy .teaPhilosophy__card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(200, 164, 107, .14);
  filter: blur(20px);
  opacity: 0;
  transition: .45s ease;
}

.teaPhilosophy .teaPhilosophy__card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 164, 107, .5);
  box-shadow: 0 34px 90px rgba(26, 23, 21, .14);
}

.teaPhilosophy .teaPhilosophy__card:hover::after {
  opacity: 1;
}

.teaPhilosophy .teaPhilosophy__icon {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 64px;
  color: #8b6b4a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
}

.teaPhilosophy .teaPhilosophy__card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  color: #14110f;
}

.teaPhilosophy .teaPhilosophy__card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(26, 23, 21, .68);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .teaPhilosophy {
    padding: 90px 0;
  }

  .teaPhilosophy .teaPhilosophy__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .teaPhilosophy {
    padding: 72px 0;
  }

  .teaPhilosophy .teaPhilosophy__head {
    margin-bottom: 42px;
  }

  .teaPhilosophy .teaPhilosophy__grid {
    grid-template-columns: 1fr;
  }

  .teaPhilosophy .teaPhilosophy__card {
    min-height: auto;
  }
}



.teaCollection {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(200, 164, 107, .13), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(122, 31, 31, .14), transparent 35%),
    linear-gradient(180deg, #090909 0%, #16110e 52%, #0b0b0b 100%);
  color: var(--white-color);
}

.teaCollection::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .07;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 239, 230, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 230, .08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.teaCollection::after {
  content: "一服";
  position: absolute;
  right: 5%;
  top: 8%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(120px, 17vw, 250px);
  line-height: 1;
  color: rgba(200, 164, 107, .055);
  pointer-events: none;
}

.teaCollection .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.teaCollection .teaCollection__head {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 70px;
}

.teaCollection .teaCollection__sub {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.teaCollection .teaCollection__sub::before {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.teaCollection h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--white-color);
}

.teaCollection .teaCollection__head p {
  margin: 0;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.9;
}

.teaCollection .teaCollection__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.teaCollection .teaCollection__card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid rgba(200, 164, 107, .22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(26, 23, 21, .72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  transition: .45s ease;
}

.teaCollection .teaCollection__card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(200, 164, 107, .12);
  z-index: 2;
  pointer-events: none;
}

.teaCollection .teaCollection__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 18%, rgba(7, 7, 7, .22) 52%, rgba(7, 7, 7, .88) 100%);
  z-index: 1;
  pointer-events: none;
}

.teaCollection .teaCollection__card:hover {
  transform: translateY(-10px);
  border-color: rgba(226, 195, 143, .55);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .48);
}

.teaCollection .teaCollection__card--featured {
  transform: translateY(-28px);
  border-color: rgba(226, 195, 143, .5);
}

.teaCollection .teaCollection__card--featured:hover {
  transform: translateY(-38px);
}

.teaCollection .teaCollection__img {
  position: absolute;
  inset: 0;
}

.teaCollection .teaCollection__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .72;
  transform: scale(1.04);
  transition: .6s ease;
}

.teaCollection .teaCollection__card:hover .teaCollection__img img {
  transform: scale(1.12);
  opacity: .9;
}

.teaCollection .teaCollection__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  z-index: 3;
}

.teaCollection .teaCollection__content span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.teaCollection .teaCollection__content h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--white-color);
}

.teaCollection .teaCollection__content p {
  margin: 0;
  color: rgba(245, 239, 230, .78);
  font-size: 14px;
  line-height: 1.75;
}

.teaCollection .teaCollection__content a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--accent-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.teaCollection .teaCollection__content a::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent-color);
  transition: .35s ease;
}

.teaCollection .teaCollection__card:hover .teaCollection__content a::after {
  width: 54px;
}

@media (max-width: 1199px) {
  .teaCollection .teaCollection__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .teaCollection .teaCollection__card--featured {
    transform: none;
  }

  .teaCollection .teaCollection__card--featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .teaCollection {
    padding: 90px 0;
  }

  .teaCollection .teaCollection__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 52px;
  }

  .teaCollection .teaCollection__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teaCollection .teaCollection__card {
    min-height: 460px;
  }
}

@media (max-width: 575px) {
  .teaCollection {
    padding: 72px 0;
  }

  .teaCollection .teaCollection__grid {
    grid-template-columns: 1fr;
  }

  .teaCollection .teaCollection__card {
    min-height: 430px;
  }
}


/* ==========================================
   TEA EXPERIENCE - WASHI PREMIUM
========================================== */

.teaExperience {
  position: relative;
  overflow: hidden;
  padding: 120px 0;

  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, #f5efe6 0%, #e9decd 52%, #f7f1e8 100%);

  color: #111;
}

.teaExperience::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: .08;

  background-image:
    linear-gradient(rgba(26, 23, 21, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 23, 21, .05) 1px, transparent 1px);

  background-size: 46px 46px;

  pointer-events: none;
}

.teaExperience::after {
  content: "茶道";

  position: absolute;
  right: 4%;
  bottom: 4%;

  font-size: clamp(120px, 18vw, 260px);
  line-height: 1;

  color: rgba(200, 164, 107, .10);

  font-family: Georgia, serif;

  pointer-events: none;
}

.teaExperience .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ==========================
   HEADER
========================== */

.teaExperience .teaExperience__head {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.teaExperience .teaExperience__sub {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 24px;

  color: #8b6b4a;

  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.teaExperience .teaExperience__sub::before,
.teaExperience .teaExperience__sub::after {
  content: "";

  width: 50px;
  height: 1px;

  background:
    linear-gradient(90deg,
      transparent,
      #c8a46b);
}

.teaExperience h2 {
  margin: 0;

  color: #111;

  font-family: Georgia, serif;
  font-weight: 400;

  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.teaExperience .teaExperience__head p {
  max-width: 620px;
  margin: 28px auto 0;

  color: rgba(26, 23, 21, .72);

  font-size: 17px;
  line-height: 1.9;
}

/* ==========================
   TIMELINE
========================== */

.teaExperience .teaExperience__timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 24px;
}

.teaExperience .teaExperience__line {
  position: absolute;

  left: 10%;
  right: 10%;
  top: 42px;

  height: 2px;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(200, 164, 107, .25),
      #c8a46b,
      rgba(200, 164, 107, .25),
      transparent);
}

.teaExperience .teaExperience__line::after {
  content: "";

  position: absolute;
  inset: -1px;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(226, 195, 143, .8),
      transparent);

  filter: blur(8px);

  opacity: .6;
}

/* ==========================
   ITEM
========================== */

.teaExperience .teaExperience__item {
  position: relative;
  z-index: 2;

  text-align: center;
}

.teaExperience .teaExperience__icon {
  width: 84px;
  height: 84px;

  margin: 0 auto 28px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #8b6b4a;

  font-size: 22px;
  font-family: Georgia, serif;

  border: 1px solid rgba(200, 164, 107, .25);

  background:
    radial-gradient(circle at 30% 25%, rgba(226, 195, 143, .22), transparent 35%),
    rgba(255, 255, 255, .55);

  backdrop-filter: blur(12px);

  box-shadow:
    0 0 0 10px rgba(200, 164, 107, .04),
    0 20px 60px rgba(17, 17, 17, .08);

  transition: .4s ease;
}

.teaExperience .teaExperience__item:hover .teaExperience__icon {
  transform: translateY(-8px);

  border-color: #c8a46b;

  box-shadow:
    0 0 0 14px rgba(200, 164, 107, .08),
    0 25px 70px rgba(17, 17, 17, .12);
}

.teaExperience .teaExperience__item h3 {
  margin: 0 0 14px;

  color: #111;

  font-family: Georgia, serif;
  font-weight: 400;

  font-size: 28px;
}

.teaExperience .teaExperience__item p {
  margin: 0;

  color: rgba(26, 23, 21, .72);

  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 991px) {

  .teaExperience {
    padding: 90px 0;
  }

  .teaExperience .teaExperience__timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .teaExperience .teaExperience__line {
    display: none;
  }

  .teaExperience .teaExperience__item {
    text-align: left;

    padding: 24px;

    border-radius: 22px;

    border: 1px solid rgba(200, 164, 107, .18);

    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, .55),
        rgba(255, 255, 255, .25));

    backdrop-filter: blur(10px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s ease;
  }

  .teaExperience .teaExperience__item:hover {
    transform: translateY(-6px);
  }

  .teaExperience .teaExperience__icon {
    width: 64px;
    height: 64px;

    margin: 0 0 18px;
  }

  .teaExperience .teaExperience__item h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .teaExperience .teaExperience__item p {
    font-size: 14px;
    line-height: 1.7;
  }

}

@media (max-width: 575px) {

  .teaExperience {
    padding: 70px 0;
  }

  .teaExperience .teaExperience__head {
    margin-bottom: 40px;
  }

  .teaExperience h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  .teaExperience .teaExperience__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .teaExperience .teaExperience__item {
    padding: 16px;
    border-radius: 18px;
  }

  .teaExperience .teaExperience__icon {
    width: 52px;
    height: 52px;

    margin-bottom: 12px;

    font-size: 14px;
  }

  .teaExperience .teaExperience__item h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .teaExperience .teaExperience__item p {
    font-size: 12px;
    line-height: 1.6;
  }

  .teaExperience::after {
    font-size: 90px;
  }

}

.teaMaster {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 55%, var(--dark-color) 100%);
  color: var(--white-color);
}

.teaMaster .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.teaMaster__bgText {
  position: absolute;
  right: -20px;
  bottom: -70px;
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 800;
  line-height: 1;
  color: rgba(245, 239, 230, .035);
  letter-spacing: -12px;
  pointer-events: none;
}

.teaMaster__wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 78px;
  align-items: center;
}

.teaMaster__portrait {
  position: relative;
  min-height: 610px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(245, 239, 230, .04);
  border: 1px solid rgba(200, 164, 107, .18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.teaMaster__portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(226, 195, 143, .28);
  border-radius: 24px;
  pointer-events: none;
}

.teaMaster__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .05), rgba(7, 7, 7, .62)),
    radial-gradient(circle at 50% 10%, rgba(200, 164, 107, .18), transparent 42%);
  z-index: 1;
}

.teaMaster__portrait img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.03);
  transition: .7s ease;
}

.teaMaster__portrait:hover img {
  transform: scale(1.08);
  filter: grayscale(.85) contrast(1.12);
}

.teaMaster__vertical {
  position: absolute;
  top: 42px;
  right: 38px;
  z-index: 3;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 28px;
  letter-spacing: 10px;
  color: var(--accent-light);
  text-shadow: 0 0 28px rgba(200, 164, 107, .45);
}

.teaMaster__content {
  position: relative;
}

.teaMaster__sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.teaMaster__sub::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
}

.teaMaster__content h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .95;
  letter-spacing: -3px;
  color: var(--white-color);
  font-weight: 600;
}

.teaMaster__desc {
  max-width: 560px;
  margin: 28px 0 34px;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.9;
}

.teaMaster__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 500px;
  margin-bottom: 34px;
}

.teaMaster__info div {
  padding: 26px;
  border-radius: 24px;
  background: rgba(245, 239, 230, .055);
  border: 1px solid rgba(200, 164, 107, .16);
  backdrop-filter: blur(14px);
}

.teaMaster__info strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
}

.teaMaster__info span {
  color: var(--text-color);
  font-size: 14px;
  letter-spacing: .6px;
}

.teaMaster blockquote {
  position: relative;
  max-width: 560px;
  margin: 0 0 34px;
  padding: 26px 0 26px 28px;
  color: var(--white-color);
  font-size: 22px;
  line-height: 1.55;
  font-style: italic;
  border-left: 1px solid rgba(200, 164, 107, .55);
}

.teaMaster blockquote::before {
  content: "“";
  position: absolute;
  left: 22px;
  top: -28px;
  color: rgba(200, 164, 107, .18);
  font-size: 120px;
  line-height: 1;
  font-style: normal;
}

.teaMaster__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: #15110d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(200, 164, 107, .24);
  transition: .35s ease;
}

.teaMaster__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(200, 164, 107, .35);
}

@media (max-width: 991px) {
  .teaMaster {
    padding: 80px 0;
  }

  .teaMaster__wrap {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .teaMaster__portrait,
  .teaMaster__portrait img {
    min-height: 520px;
  }

  .teaMaster__content h2 {
    letter-spacing: -2px;
  }
}

@media (max-width: 575px) {
  .teaMaster {
    padding: 64px 0;
  }

  .teaMaster__portrait,
  .teaMaster__portrait img {
    min-height: 420px;
    border-radius: 24px;
  }

  .teaMaster__portrait::before {
    inset: 12px;
    border-radius: 18px;
  }

  .teaMaster__vertical {
    top: 30px;
    right: 28px;
    font-size: 22px;
    letter-spacing: 7px;
  }

  .teaMaster__info {
    grid-template-columns: 1fr;
  }

  .teaMaster blockquote {
    font-size: 19px;
  }

  .teaMaster__btn {
    width: 100%;
  }
}

.teaIngredients {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, #f5efe6 0%, #e9decd 52%, #f7f1e8 100%);
  color: #1a1715;
}

.teaIngredients::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(15, 15, 16, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 15, 16, .035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.teaIngredients__texture {
  position: absolute;
  inset: 24px;
  border-radius: 42px;
  border: 1px solid rgba(122, 91, 52, .13);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .38), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(200, 164, 107, .16), transparent 36%);
  pointer-events: none;
}

.teaIngredients .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.teaIngredients__head {
  max-width: 760px;
  margin-bottom: 54px;
}

.teaIngredients__head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #8b6a3d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.teaIngredients__head span::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b6a3d);
}

.teaIngredients__head h2 {
  margin: 0;
  color: #0f0f10;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  font-weight: 600;
}

.teaIngredients__head p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #6d6255;
  font-size: 17px;
  line-height: 1.85;
}

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

.teaIngredientCard {
  position: relative;
  min-height: 285px;
  padding: 34px 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .14));
  border: 1px solid rgba(139, 106, 61, .18);
  box-shadow: 0 24px 70px rgba(76, 54, 29, .1);
  backdrop-filter: blur(18px);
  transition: .35s ease;
}

.teaIngredientCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(200, 164, 107, .22), transparent 34%),
    linear-gradient(180deg, transparent, rgba(122, 91, 52, .08));
  opacity: 0;
  transition: .35s ease;
}

.teaIngredientCard::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(139, 106, 61, .16);
}

.teaIngredientCard:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 106, 61, .38);
  box-shadow: 0 34px 90px rgba(76, 54, 29, .16);
}

.teaIngredientCard:hover::before {
  opacity: 1;
}

.teaIngredientCard__icon,
.teaIngredientCard h3,
.teaIngredientCard p {
  position: relative;
  z-index: 2;
}

.teaIngredientCard__icon {
  width: 68px;
  height: 68px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 15, 16, .06);
  border: 1px solid rgba(139, 106, 61, .22);
  color: #8b6a3d;
  font-size: 30px;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, .32);
}

.teaIngredientCard h3 {
  margin: 0 0 14px;
  color: #17120d;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 600;
}

.teaIngredientCard p {
  margin: 0;
  color: #6f6254;
  font-size: 15px;
  line-height: 1.75;
}

.teaIngredientCard--wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(26, 23, 21, .88), rgba(15, 15, 16, .78)),
    radial-gradient(circle at 85% 20%, rgba(200, 164, 107, .28), transparent 36%);
  border-color: rgba(200, 164, 107, .28);
}

.teaIngredientCard--wide h3 {
  color: #f5efe6;
}

.teaIngredientCard--wide p {
  max-width: 520px;
  color: #c9beb0;
}

.teaIngredientCard--wide .teaIngredientCard__icon {
  background: rgba(200, 164, 107, .12);
  border-color: rgba(226, 195, 143, .28);
  color: #e2c38f;
}

@media (max-width: 991px) {
  .teaIngredients {
    padding: 84px 0;
  }

  .teaIngredients__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teaIngredientCard--wide {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .teaIngredients {
    padding: 64px 0;
  }

  .teaIngredients__texture {
    inset: 12px;
    border-radius: 28px;
  }

  .teaIngredients__head h2 {
    letter-spacing: -2px;
  }

  .teaIngredients__grid {
    grid-template-columns: 1fr;
  }

  .teaIngredientCard,
  .teaIngredientCard--wide {
    grid-column: span 1;
    min-height: auto;
  }
}

.teaRoom {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(200, 164, 107, .12), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, #090909 0%, #15120f 52%, #080808 100%);
}

.teaRoom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 164, 107, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 164, 107, .03) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.teaRoom::after {
  content: "茶室";
  position: absolute;
  top: 40px;
  right: -20px;
  font-size: clamp(120px, 18vw, 260px);
  color: rgba(255, 255, 255, .03);
  font-weight: 700;
  line-height: 1;
}

.teaRoom .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

.teaRoom__head {
  max-width: 760px;
  margin-bottom: 60px;
}

.teaRoom__head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.teaRoom__head span::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--accent-color);
}

.teaRoom__head h2 {
  margin: 0;
  color: var(--white-color);
  font-size: clamp(44px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -3px;
  font-weight: 600;
}

.teaRoom__head p {
  margin-top: 24px;
  max-width: 560px;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.9;
}

.teaRoom__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.teaRoom__item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(200, 164, 107, .15);
  background: #111;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .35);
}

.teaRoom__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.teaRoom__item--tall {
  grid-row: span 2;
}

.teaRoom__item--wide {
  grid-column: span 2;
}

.teaRoom__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* ẢNH SÁNG */
  filter:
    brightness(1.15) saturate(1.05) contrast(1.05);

  transform: scale(1.03);
  transition: .8s ease;
}

.teaRoom__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .05),
      rgba(0, 0, 0, .55));

  transition: .4s ease;
}

.teaRoom__item::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  opacity: 0;
  transform: scale(.96);
  transition: .4s ease;
  z-index: 2;
}

.teaRoom__overlay {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  transform: translateY(12px);
  transition: .4s ease;
}

.teaRoom__overlay span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 12px;
  letter-spacing: 3px;
}

.teaRoom__overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}

.teaRoom__item:hover img {
  transform: scale(1.12);

  filter:
    brightness(1.25) saturate(1.12) contrast(1.08);
}

.teaRoom__item:hover::before {
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .02),
      rgba(0, 0, 0, .65));
}

.teaRoom__item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.teaRoom__item:hover .teaRoom__overlay {
  transform: translateY(0);
}

@media(max-width:991px) {

  .teaRoom__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .teaRoom__item--large,
  .teaRoom__item--wide {
    grid-column: span 2;
  }
}

@media(max-width:576px) {

  .teaRoom {
    padding: 80px 0;
  }

  .teaRoom__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .teaRoom__item,
  .teaRoom__item--large,
  .teaRoom__item--wide,
  .teaRoom__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.seasonTea {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, #f5efe6 0%, #e9decd 52%, #f7f1e8 100%);
  color: #17120d;
}

.seasonTea::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(70, 48, 27, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 48, 27, .055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.seasonTea::after {
  content: "四季";
  position: absolute;
  right: -20px;
  top: 40px;
  color: rgba(26, 23, 21, .045);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.seasonTea .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.seasonTea__head {
  max-width: 760px;
  margin-bottom: 56px;
}

.seasonTea__head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #8b6a3d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.seasonTea__head span::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b6a3d);
}

.seasonTea__head h2 {
  margin: 0;
  color: #0f0f10;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  font-weight: 600;
}

.seasonTea__head p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #6d6255;
  font-size: 17px;
  line-height: 1.85;
}

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

.seasonTea__card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 34px 28px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .46), rgba(255, 255, 255, .16));
  border: 1px solid rgba(139, 106, 61, .18);
  box-shadow: 0 26px 80px rgba(76, 54, 29, .11);
  backdrop-filter: blur(18px);
  transition: .4s ease;
}

.seasonTea__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 164, 107, .22), transparent 34%),
    linear-gradient(180deg, transparent, rgba(122, 91, 52, .08));
  opacity: 0;
  transition: .4s ease;
}

.seasonTea__card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 106, 61, .45), transparent);
}

.seasonTea__card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 106, 61, .42);
  box-shadow: 0 36px 100px rgba(76, 54, 29, .18);
}

.seasonTea__card:hover::before {
  opacity: 1;
}

.seasonTea__season,
.seasonTea__card h3,
.seasonTea__card p,
.seasonTea__card strong {
  position: relative;
  z-index: 2;
}

.seasonTea__season {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(15, 15, 16, .06);
  border: 1px solid rgba(139, 106, 61, .18);
  color: #8b6a3d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.seasonTea__card h3 {
  margin: 0;
  color: #17120d;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -1.5px;
  font-weight: 600;
}

.seasonTea__card p {
  margin: 22px 0 0;
  color: #6f6254;
  font-size: 15px;
  line-height: 1.75;
}

.seasonTea__card strong {
  position: absolute;
  right: 24px;
  bottom: 28px;
  color: rgba(139, 106, 61, .13);
  font-size: 110px;
  line-height: .8;
  font-weight: 800;
}

@media (max-width: 991px) {
  .seasonTea {
    padding: 84px 0;
  }

  .seasonTea__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seasonTea__card {
    min-height: 330px;
  }
}

@media (max-width: 575px) {
  .seasonTea {
    padding: 64px 0;
  }

  .seasonTea__head h2 {
    letter-spacing: -2px;
  }

  .seasonTea__grid {
    grid-template-columns: 1fr;
  }

  .seasonTea__card {
    min-height: 300px;
  }

  .seasonTea__card strong {
    font-size: 86px;
  }
}

.teaBenefits {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, #0f0f10 0%, #1a1715 52%, #070707 100%);
  color: var(--white-color);
}

.teaBenefits::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(200, 164, 107, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 164, 107, .03) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.teaBenefits::after {
  content: "効能";
  position: absolute;
  right: -24px;
  top: 36px;
  color: rgba(245, 239, 230, .035);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.teaBenefits .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.teaBenefits__head {
  max-width: 760px;
  margin-bottom: 58px;
}

.teaBenefits__head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.teaBenefits__head span::before {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
}

.teaBenefits__head h2 {
  margin: 0;
  color: var(--white-color);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  font-weight: 600;
}

.teaBenefits__head p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.85;
}

.teaBenefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200, 164, 107, .18);
  border-left: 1px solid rgba(200, 164, 107, .18);
}

.teaBenefitCard {
  position: relative;
  min-height: 390px;
  padding: 34px 28px;
  overflow: hidden;
  background: rgba(245, 239, 230, .035);
  border-right: 1px solid rgba(200, 164, 107, .18);
  border-bottom: 1px solid rgba(200, 164, 107, .18);
  transition: .35s ease;
}

.teaBenefitCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(200, 164, 107, .18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent);
  opacity: 0;
  transition: .35s ease;
}

.teaBenefitCard::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 107, .15);
}

.teaBenefitCard:hover {
  background: rgba(245, 239, 230, .06);
}

.teaBenefitCard:hover::before {
  opacity: 1;
}

.teaBenefitCard__num {
  position: relative;
  z-index: 2;
  margin-bottom: 82px;
  color: rgba(226, 195, 143, .24);
  font-size: clamp(62px, 6vw, 96px);
  line-height: .8;
  font-weight: 700;
  letter-spacing: -4px;
}

.teaBenefitCard__icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 164, 107, .08);
  border: 1px solid rgba(200, 164, 107, .18);
}

.teaBenefitCard__icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--accent-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.teaBenefitCard h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: var(--white-color);
  font-size: 27px;
  line-height: 1.15;
  font-weight: 600;
}

.teaBenefitCard p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .teaBenefits {
    padding: 84px 0;
  }

  .teaBenefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teaBenefitCard {
    min-height: 340px;
  }
}

@media (max-width: 575px) {
  .teaBenefits {
    padding: 64px 0;
  }

  .teaBenefits__head h2 {
    letter-spacing: -2px;
  }

  .teaBenefits__grid {
    grid-template-columns: 1fr;
  }

  .teaBenefitCard {
    min-height: auto;
  }

  .teaBenefitCard__num {
    margin-bottom: 56px;
  }
}

.teaReflections {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, #f5efe6 0%, #e9decd 52%, #f7f1e8 100%);
  color: #17120d;
}

.teaReflections::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(70, 48, 27, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 48, 27, .05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.teaReflections::after {
  content: "感想";
  position: absolute;
  right: -20px;
  top: 44px;
  color: rgba(26, 23, 21, .045);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.teaReflections .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.teaReflections__head {
  max-width: 760px;
  margin-bottom: 58px;
}

.teaReflections__head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #8b6a3d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.teaReflections__head span::before {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b6a3d);
}

.teaReflections__head h2 {
  margin: 0;
  color: #0f0f10;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
  font-weight: 600;
}

.teaReflections__head p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #6d6255;
  font-size: 17px;
  line-height: 1.85;
}

.teaReflections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.teaReflectionCard {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 46px 34px 32px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .28));
  border: 1px solid rgba(139, 106, 61, .16);
  box-shadow: 0 26px 80px rgba(76, 54, 29, .1);
  backdrop-filter: blur(18px);
  transition: .4s ease;
}

.teaReflectionCard::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(122, 91, 52, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 91, 52, .055) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.teaReflectionCard::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(139, 106, 61, .12);
  pointer-events: none;
}

.teaReflectionCard:hover {
  transform: translateY(-9px);
  box-shadow: 0 36px 100px rgba(76, 54, 29, .16);
  border-color: rgba(139, 106, 61, .34);
}

.teaReflectionCard--featured {
  background:
    linear-gradient(145deg, rgba(26, 23, 21, .9), rgba(15, 15, 16, .82));
  border-color: rgba(200, 164, 107, .3);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .2);
}

.teaReflectionCard__quote {
  position: relative;
  z-index: 2;
  height: 84px;
  margin-bottom: 14px;
  color: rgba(139, 106, 61, .22);
  font-size: 150px;
  line-height: .75;
  font-family: Georgia, serif;
}

.teaReflectionCard p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #51483d;
  font-size: 18px;
  line-height: 1.8;
}

.teaReflectionCard__bottom {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(139, 106, 61, .16);
}

.teaReflectionCard__bottom img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 164, 107, .55);
}

.teaReflectionCard__bottom h3 {
  margin: 0 0 6px;
  color: #17120d;
  font-size: 18px;
  font-weight: 600;
}

.teaReflectionCard__bottom span {
  color: #a77b35;
  font-size: 13px;
  letter-spacing: 2px;
}

.teaReflectionCard--featured .teaReflectionCard__quote {
  color: rgba(226, 195, 143, .22);
}

.teaReflectionCard--featured p {
  color: var(--text-color);
}

.teaReflectionCard--featured .teaReflectionCard__bottom {
  border-color: rgba(200, 164, 107, .22);
}

.teaReflectionCard--featured .teaReflectionCard__bottom h3 {
  color: var(--white-color);
}

.teaReflectionCard--featured .teaReflectionCard__bottom span {
  color: var(--accent-light);
}

@media (max-width: 991px) {
  .teaReflections {
    padding: 84px 0;
  }

  .teaReflections__grid {
    grid-template-columns: 1fr;
  }

  .teaReflectionCard {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .teaReflections {
    padding: 64px 0;
  }

  .teaReflections__head h2 {
    letter-spacing: -2px;
  }

  .teaReflectionCard {
    min-height: auto;
    padding: 38px 26px 28px;
  }

  .teaReflectionCard__bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .teaReflectionCard__quote {
    font-size: 120px;
  }
}

.teaReserve {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(226, 195, 143, .2), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(200, 164, 107, .12), transparent 34%),
    linear-gradient(180deg, #070707 0%, #15110e 52%, #050505 100%);
  color: var(--white-color);
}

.teaReserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(200, 164, 107, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 164, 107, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .45;
  pointer-events: none;
}

.teaReserve::after {
  content: "予約";
  position: absolute;
  right: -22px;
  bottom: -54px;
  color: rgba(245, 239, 230, .035);
  font-size: clamp(130px, 20vw, 300px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.teaReserve__spotlight {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(226, 195, 143, .22), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}

.teaReserve .container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.teaReserve__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  min-height: 620px;
}

.teaReserve__content {
  position: relative;
}

.teaReserve__sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.teaReserve__sub::before {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
}

.teaReserve__content h2 {
  margin: 0;
  color: var(--white-color);
  font-size: clamp(48px, 7vw, 98px);
  line-height: .92;
  letter-spacing: -4px;
  font-weight: 600;
}

.teaReserve__content h2 small {
  display: block;
  margin-top: 18px;
  color: rgba(245, 239, 230, .72);
  font-size: clamp(34px, 5vw, 70px);
  line-height: .98;
  font-weight: 400;
}

.teaReserve__content p {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.9;
}

.teaReserve__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.teaReserve__btn,
.teaReserve__link {
  min-height: 56px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .35s ease;
}

.teaReserve__btn {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: #15110d;
  box-shadow: 0 20px 60px rgba(200, 164, 107, .28);
}

.teaReserve__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(200, 164, 107, .38);
}

.teaReserve__link {
  color: var(--white-color);
  border: 1px solid rgba(200, 164, 107, .28);
  background: rgba(245, 239, 230, .04);
}

.teaReserve__link:hover {
  border-color: rgba(226, 195, 143, .55);
  background: rgba(245, 239, 230, .08);
}

.teaReserve__panel {
  display: grid;
  gap: 18px;
}

.teaReserve__card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(245, 239, 230, .08), rgba(245, 239, 230, .035));
  border: 1px solid rgba(200, 164, 107, .18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  transition: .35s ease;
}

.teaReserve__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(226, 195, 143, .18), transparent 38%);
  opacity: 0;
  transition: .35s ease;
}

.teaReserve__card:hover {
  transform: translateX(-8px);
  border-color: rgba(226, 195, 143, .42);
  background:
    linear-gradient(145deg, rgba(245, 239, 230, .11), rgba(245, 239, 230, .045));
}

.teaReserve__card:hover::before {
  opacity: 1;
}

.teaReserve__card span,
.teaReserve__card h3,
.teaReserve__card p {
  position: relative;
  z-index: 2;
}

.teaReserve__card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(226, 195, 143, .55);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}

.teaReserve__card h3 {
  margin: 0 0 12px;
  color: var(--white-color);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
}

.teaReserve__card p {
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .teaReserve {
    padding: 88px 0;
  }

  .teaReserve__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .teaReserve {
    padding: 68px 0;
  }

  .teaReserve__content h2 {
    letter-spacing: -2px;
  }

  .teaReserve__actions {
    flex-direction: column;
  }

  .teaReserve__btn,
  .teaReserve__link {
    width: 100%;
  }

  .teaReserve__card:hover {
    transform: translateY(-6px);
  }
}

.teaFinalCTA {
  position: relative;
  overflow: hidden;
  padding: 130px 0;

  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, #f5efe6 0%, #e9decd 52%, #f7f1e8 100%);
}

.teaFinalCTA::before {
  content: "";
  position: absolute;
  top: -35%;
  left: 50%;

  width: 500px;
  height: 150%;

  transform: translateX(-50%);

  background:
    linear-gradient(180deg,
      rgba(200, 164, 107, .22),
      rgba(200, 164, 107, .08),
      transparent);

  filter: blur(28px);
  opacity: .8;
}

.teaFinalCTA::after {
  content: "茶";
  position: absolute;
  right: -20px;
  bottom: -60px;

  font-size: clamp(140px, 20vw, 300px);
  font-weight: 700;
  line-height: 1;

  color: rgba(15, 15, 16, .04);
}

.teaFinalCTA .container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  position: relative;
  z-index: 3;
}

.teaFinalCTA__inner {
  position: relative;

  text-align: center;

  padding: 90px 50px;

  border-radius: 40px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, .58),
      rgba(255, 255, 255, .28));

  border: 1px solid rgba(200, 164, 107, .15);

  box-shadow:
    0 30px 90px rgba(98, 75, 42, .12);

  backdrop-filter: blur(20px);
}

.teaFinalCTA__inner::before {
  content: "";
  position: absolute;
  inset: 16px;

  border-radius: 28px;

  border: 1px solid rgba(200, 164, 107, .12);
}

.teaFinalCTA__inner::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 50px;

  width: 220px;
  height: 1px;

  transform: translateX(-50%);

  background:
    linear-gradient(90deg,
      transparent,
      rgba(200, 164, 107, .5),
      transparent);
}

.teaFinalCTA__sub {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 24px;

  color: #8b6a3d;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.teaFinalCTA__sub::before,
.teaFinalCTA__sub::after {
  content: "";
  width: 50px;
  height: 1px;
  background: #c8a46b;
}

.teaFinalCTA h2 {
  max-width: 1050px;
  margin: auto;

  color: #0f0f10;

  font-size: clamp(54px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -5px;
  font-weight: 600;
}

.teaFinalCTA p {
  margin-top: 28px;

  color: #6d6255;

  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.4;
}

.teaFinalCTA__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;

  margin-top: 42px;
}

.teaFinalCTA__btn,
.teaFinalCTA__link {
  min-height: 58px;
  padding: 0 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  text-decoration: none;
  text-transform: uppercase;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;

  transition: .35s ease;
}

.teaFinalCTA__btn {
  color: #15110d;

  background:
    linear-gradient(135deg,
      #c8a46b,
      #e2c38f);

  box-shadow:
    0 20px 60px rgba(200, 164, 107, .25);
}

.teaFinalCTA__btn:hover {
  transform: translateY(-4px);

  box-shadow:
    0 28px 80px rgba(200, 164, 107, .35);
}

.teaFinalCTA__link {
  color: #0f0f10;

  border: 1px solid rgba(200, 164, 107, .2);

  background:
    rgba(255, 255, 255, .35);
}

.teaFinalCTA__link:hover {
  background:
    rgba(255, 255, 255, .6);

  border-color:
    rgba(200, 164, 107, .4);
}

/* Steam */

.teaFinalCTA__steam {
  position: absolute;
  bottom: 70px;

  width: 120px;
  height: 280px;

  border-radius: 999px;

  background:
    linear-gradient(180deg,
      transparent,
      rgba(255, 255, 255, .3),
      transparent);

  filter: blur(26px);

  opacity: .4;

  animation: teaSteam 7s ease-in-out infinite;
}

.teaFinalCTA__steam--one {
  left: 18%;
}

.teaFinalCTA__steam--two {
  left: 50%;
  animation-delay: 2s;
}

.teaFinalCTA__steam--three {
  right: 18%;
  animation-delay: 4s;
}

@keyframes teaSteam {
  0% {
    transform: translateY(50px) scale(.8);
    opacity: 0;
  }

  40% {
    opacity: .4;
  }

  100% {
    transform: translateY(-90px) scale(1.2);
    opacity: 0;
  }
}

@media(max-width:991px) {

  .teaFinalCTA {
    padding: 90px 0;
  }

  .teaFinalCTA h2 {
    letter-spacing: -3px;
  }

}

@media(max-width:576px) {

  .teaFinalCTA {
    padding: 70px 0;
  }

  .teaFinalCTA__inner {
    padding: 60px 24px;
  }

  .teaFinalCTA h2 {
    letter-spacing: -2px;
  }

  .teaFinalCTA__actions {
    flex-direction: column;
  }

  .teaFinalCTA__btn,
  .teaFinalCTA__link {
    width: 100%;
  }

}

.teaAboutHero {
  position: relative;
  min-height: 92vh;
  width: 100%;
  overflow: hidden;
  background: var(--dark-color);
  display: flex;
  align-items: center;
}

.teaAboutHero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.teaAboutHero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(0.55) contrast(1.12) saturate(0.9);
}

.teaAboutHero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 30%, rgba(200, 164, 107, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.68) 42%, rgba(7, 7, 7, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.12) 0%, rgba(7, 7, 7, 0.85) 100%);
}

.teaAboutHero::before {
  content: "";
  position: absolute;
  left: 8%;
  top: 12%;
  width: 1px;
  height: 76%;
  z-index: 3;
  background: linear-gradient(180deg,
      transparent,
      rgba(200, 164, 107, 0.65),
      transparent);
}

.teaAboutHero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  z-index: 3;
  background: rgba(226, 195, 143, 0.12);
  filter: blur(80px);
  border-radius: 50%;
}

.teaAboutHero__content {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 90px;
  color: var(--white-color);
}

.teaAboutHero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.teaAboutHero__label::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--accent-color);
}

.teaAboutHero__content h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 500;
  color: var(--white-color);
  text-shadow: 0 26px 80px rgba(0, 0, 0, 0.75);
}

.teaAboutHero__content p {
  margin: 30px 0 0;
  max-width: 720px;
  font-size: clamp(20px, 2.4vw, 38px);
  line-height: 1.25;
  color: var(--accent-light);
  font-weight: 300;
}

.teaAboutHero__desc {
  margin-top: 28px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
}

.teaAboutHero__jpText {
  position: absolute;
  right: 8%;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: clamp(46px, 6vw, 92px);
  letter-spacing: 0.18em;
  color: rgba(245, 239, 230, 0.2);
  text-shadow: 0 0 38px rgba(200, 164, 107, 0.22);
  font-family: serif;
}

@media (max-width: 991px) {
  .teaAboutHero {
    min-height: 780px;
  }

  .teaAboutHero__jpText {
    right: 28px;
    font-size: 56px;
    opacity: 0.55;
  }

  .teaAboutHero__content {
    padding: 110px 0 80px;
  }
}

@media (max-width: 575px) {
  .teaAboutHero {
    min-height: 720px;
  }

  .teaAboutHero__overlay {
    background:
      radial-gradient(circle at 20% 20%, rgba(200, 164, 107, 0.18), transparent 38%),
      linear-gradient(180deg, rgba(7, 7, 7, 0.62), rgba(7, 7, 7, 0.9));
  }

  .teaAboutHero::before {
    left: 20px;
  }

  .teaAboutHero__content {
    width: calc(100% - 34px);
  }

  .teaAboutHero__content h1 {
    font-size: 54px;
    line-height: 0.95;
  }

  .teaAboutHero__content p {
    font-size: 22px;
  }

  .teaAboutHero__desc {
    font-size: 15px;
  }

  .teaAboutHero__jpText {
    right: 16px;
    top: 44%;
    font-size: 42px;
    opacity: 0.35;
  }
}

.teaStory {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, 0.12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, 0.08), transparent 35%),
    linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 55%, var(--dark-color) 100%);
}

.teaStory::before {
  content: "";
  position: absolute;
  left: 0;
  top: 90px;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 107, 0.75));
}

.teaStory::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(226, 195, 143, 0.08);
  filter: blur(80px);
}

.teaStory__container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.teaStory__image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 260px 260px 12px 12px;
  border: 1px solid rgba(200, 164, 107, 0.28);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.45);
}

.teaStory__image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(226, 195, 143, 0.28);
  border-radius: 230px 230px 8px 8px;
  pointer-events: none;
}

.teaStory__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 7, 7, 0.82) 100%),
    radial-gradient(circle at 50% 20%, rgba(200, 164, 107, 0.18), transparent 38%);
}

.teaStory__image img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.08) saturate(0.88);
  transform: scale(1.04);
  transition: 0.8s ease;
}

.teaStory__image:hover img {
  transform: scale(1.09);
}

.teaStory__vertical {
  position: absolute;
  left: 34px;
  bottom: 42px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 54px;
  letter-spacing: 0.24em;
  color: rgba(245, 239, 230, 0.78);
  font-family: serif;
}

.teaStory__content {
  color: var(--white-color);
}

.teaStory__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.teaStory__label::before {
  content: "";
  width: 58px;
  height: 1px;
  background: var(--accent-color);
}

.teaStory__content h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: var(--white-color);
}

.teaStory__line {
  width: 100%;
  max-width: 420px;
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.teaStory__content p {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-color);
}

.teaStory__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.teaStory__stats div {
  padding: 24px 18px;
  background: rgba(245, 239, 230, 0.035);
  border: 1px solid rgba(200, 164, 107, 0.18);
  backdrop-filter: blur(12px);
}

.teaStory__stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
  color: var(--accent-light);
  font-weight: 500;
}

.teaStory__stats span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-color);
}

@media (max-width: 991px) {
  .teaStory {
    padding: 90px 0;
  }

  .teaStory__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .teaStory__image,
  .teaStory__image img {
    min-height: 560px;
  }
}

@media (max-width: 575px) {
  .teaStory {
    padding: 70px 0;
  }

  .teaStory__container {
    width: calc(100% - 34px);
  }

  .teaStory__image {
    min-height: 440px;
    border-radius: 180px 180px 10px 10px;
  }

  .teaStory__image img {
    min-height: 440px;
  }

  .teaStory__vertical {
    font-size: 38px;
    left: 24px;
    bottom: 30px;
  }

  .teaStory__content h2 {
    font-size: 42px;
  }

  .teaStory__stats {
    grid-template-columns: 1fr;
  }
}

.teaPhilosophy {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 164, 107, 0.13), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(226, 195, 143, 0.08), transparent 36%),
    linear-gradient(180deg, var(--dark-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
}

.teaPhilosophy::before {
  content: "和敬清寂";
  position: absolute;
  right: 4%;
  top: 48%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: serif;
  font-size: clamp(80px, 12vw, 180px);
  letter-spacing: 0.12em;
  color: rgba(245, 239, 230, 0.035);
  pointer-events: none;
}

.teaPhilosophy__container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.teaPhilosophy__head {
  max-width: 760px;
  margin-bottom: 64px;
}

.teaPhilosophy__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.teaPhilosophy__label::before {
  content: "";
  width: 58px;
  height: 1px;
  background: var(--accent-color);
}

.teaPhilosophy__head h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: var(--white-color);
}

.teaPhilosophy__head p {
  max-width: 600px;
  margin: 26px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
}

.teaPhilosophy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.teaPhilosophy__item {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 107, 0.24);
  background: var(--secondary-color);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.teaPhilosophy__item::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 3;
  border: 1px solid rgba(226, 195, 143, 0.22);
  opacity: 0.55;
  pointer-events: none;
  transition: 0.45s ease;
}

.teaPhilosophy__item::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 4;
  width: 1px;
  height: 88px;
  background: linear-gradient(180deg, var(--accent-light), transparent);
}

.teaPhilosophy__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.08) saturate(0.85);
  transform: scale(1.05);
  transition: 0.8s ease;
}

.teaPhilosophy__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 18%, rgba(200, 164, 107, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.18) 0%, rgba(7, 7, 7, 0.58) 48%, rgba(7, 7, 7, 0.92) 100%);
}

.teaPhilosophy__content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: 34px 28px 36px;
  color: var(--white-color);
}

.teaPhilosophy__content span {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.teaPhilosophy__content h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: var(--white-color);
}

.teaPhilosophy__content p {
  margin: 0;
  max-width: 260px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-color);
}

.teaPhilosophy__item:hover img {
  transform: scale(1.13);
  filter: brightness(0.85) contrast(1.12) saturate(0.95);
}

.teaPhilosophy__item:hover::before {
  inset: 22px;
  opacity: 1;
  border-color: rgba(226, 195, 143, 0.45);
}

@media (max-width: 1100px) {
  .teaPhilosophy__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teaPhilosophy__item {
    min-height: 420px;
  }
}

@media (max-width: 575px) {
  .teaPhilosophy {
    padding: 75px 0;
  }

  .teaPhilosophy__container {
    width: calc(100% - 34px);
  }

  .teaPhilosophy__head {
    margin-bottom: 42px;
  }

  .teaPhilosophy__head h2 {
    font-size: 43px;
  }

  .teaPhilosophy__grid {
    grid-template-columns: 1fr;
  }

  .teaPhilosophy__item {
    min-height: 390px;
  }

  .teaPhilosophy__content {
    padding: 32px 26px;
  }
}


.tea-values {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .10), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(226, 195, 143, .07), transparent 35%),
    linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 52%, var(--dark-color) 100%);
  color: var(--white-color);
}

.tea-values::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(200, 164, 107, .12);
  pointer-events: none;
}

.tea-values__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.tea-values__head {
  max-width: 760px;
  margin-bottom: 58px;
}

.tea-values__head span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-color);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.tea-values__head h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -2px;
  color: white;
}

.tea-values__head p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
}

.tea-values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.tea-values__card {
  position: relative;
  min-height: 310px;
  padding: 34px 24px 30px;
  background: rgba(245, 239, 230, .035);
  border: 1px solid rgba(200, 164, 107, .14);
  transition: .45s ease;
}

.tea-values__card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 164, 107, .08);
  opacity: 0;
  transition: .45s ease;
}

.tea-values__card::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 1px;
  height: 70px;
  background: linear-gradient(to top, var(--accent-color), transparent);
  opacity: .35;
}

.tea-values__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 164, 107, .34);
  border-radius: 50%;
  color: var(--accent-light);
  font-size: 28px;
  font-weight: 300;
  transition: .45s ease;
}

.tea-values__card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.4px;
  color: white;
}

.tea-values__card p {
  margin: 0;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.75;
}

.tea-values__card:hover {
  transform: translateY(-10px);
  background: rgba(200, 164, 107, .08);
  border-color: rgba(200, 164, 107, .55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.tea-values__card:hover::before {
  opacity: 1;
}

.tea-values__card:hover .tea-values__icon {
  color: var(--dark-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 34px rgba(200, 164, 107, .28);
}

@media (max-width: 1200px) {
  .tea-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tea-values {
    padding: 80px 16px;
  }

  .tea-values::before {
    inset: 18px;
  }

  .tea-values__grid {
    grid-template-columns: 1fr;
  }

  .tea-values__card {
    min-height: auto;
  }
}

.teaAboutCta {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 140px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(200, 164, 107, 0.13), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0d0b09 50%, #030303 100%);
  color: #f5efe6;
}

.teaAboutCta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(0, 0, 0, 0.88) 44%, transparent 72%);
  opacity: 0.75;
  pointer-events: none;
}

.teaAboutCta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.22;
  pointer-events: none;
}

.teaAboutCta__beam {
  position: absolute;
  top: -18%;
  left: 50%;
  width: 34vw;
  height: 130%;
  transform: translateX(-50%) rotate(9deg);
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.96) 36%,
      rgba(0, 0, 0, 0.68) 58%,
      transparent 100%);
  filter: blur(14px);
  opacity: 0.9;
  pointer-events: none;
}

.teaAboutCta__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  text-align: center;
}

.teaAboutCta__sub {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 15px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #c8a46b;
}

.teaAboutCta__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 136px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.055em;
  color: #f7efe2;
  text-shadow:
    0 20px 70px rgba(0, 0, 0, 0.85),
    0 0 36px rgba(200, 164, 107, 0.16);
}

.teaAboutCta__desc {
  max-width: 640px;
  margin: 34px auto 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(245, 239, 230, 0.68);
}

.teaAboutCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  min-height: 58px;
  padding: 0 34px;
  border: 1px solid rgba(200, 164, 107, 0.58);
  border-radius: 999px;
  color: #f5efe6;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(200, 164, 107, 0.08);
  backdrop-filter: blur(14px);
  transition: 0.35s ease;
}

.teaAboutCta__btn:hover {
  color: #080808;
  background: #c8a46b;
  box-shadow: 0 0 42px rgba(200, 164, 107, 0.35);
  transform: translateY(-3px);
}

.teaAboutCta__steam {
  position: absolute;
  bottom: -120px;
  width: 220px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(180deg,
      transparent,
      rgba(245, 239, 230, 0.08),
      transparent);
  filter: blur(30px);
  opacity: 0.6;
  animation: teaSteam 8s ease-in-out infinite;
  pointer-events: none;
}

.teaAboutCta__steam--1 {
  left: 18%;
  animation-delay: 0s;
}

.teaAboutCta__steam--2 {
  left: 48%;
  width: 280px;
  opacity: 0.45;
  animation-delay: 1.6s;
}

.teaAboutCta__steam--3 {
  right: 16%;
  animation-delay: 3s;
}

@keyframes teaSteam {
  0% {
    transform: translateY(80px) scale(0.8);
    opacity: 0;
  }

  35% {
    opacity: 0.55;
  }

  100% {
    transform: translateY(-260px) scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .teaAboutCta {
    min-height: 560px;
    padding: 100px 18px;
  }

  .teaAboutCta__title {
    font-size: clamp(48px, 15vw, 82px);
  }

  .teaAboutCta__desc {
    font-size: 15px;
  }

  .teaAboutCta__btn {
    width: 100%;
    max-width: 340px;
    padding: 0 22px;
    font-size: 12px;
  }
}

.teaMenuPage {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, var(--dark-color) 0%, var(--primary-color) 52%, #080706 100%);
  color: var(--white-color);
}

.teaMenuPage__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.teaMenuPage__bgText {
  position: absolute;
  top: 40px;
  right: 5%;
  font-size: clamp(180px, 22vw, 420px);
  line-height: 1;
  color: rgba(200, 164, 107, .04);
  font-family: 'Shippori Mincho', serif;
  pointer-events: none;
}

.teaMenuPage__head {
  max-width: 760px;
  margin-bottom: 60px;
}

.teaMenuPage__sub {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.teaMenuPage__head h1 {
  margin-bottom: 20px;
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white-color);
}

.teaMenuPage__head p {
  max-width: 620px;
  color: var(--text-color);
  font-size: 16px;
}

.teaMenuPage__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.teaMenuPage__tabs a {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 107, .2);
  color: var(--text-color);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .03);
}

.teaMenuPage__tabs a.active,
.teaMenuPage__tabs a:hover {
  background: var(--accent-color);
  color: var(--dark-color);
  border-color: var(--accent-color);
}

.teaMenuPage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.teaMenuCard {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(200, 164, 107, .18);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(10px);
  transition: .4s;
}

.teaMenuCard:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 195, 143, .5);
}

.teaMenuCard__img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.teaMenuCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.teaMenuCard:hover img {
  transform: scale(1.08);
}

.teaMenuCard__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, .65));
}

.teaMenuCard__img span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .65);
  border: 1px solid rgba(226, 195, 143, .4);
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.teaMenuCard__content {
  padding: 28px;
}

.teaMenuCard__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.teaMenuCard h3 {
  margin: 0;
  color: var(--white-color);
  font-size: 26px;
  font-weight: 500;
}

.teaMenuCard strong {
  color: var(--accent-light);
  font-size: 18px;
}

.teaMenuCard p {
  margin-bottom: 22px;
  color: var(--text-color);
}

.teaMenuCard a {
  color: var(--accent-light);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.teaMenuCard--feature {
  background:
    radial-gradient(circle at top left,
      rgba(200, 164, 107, .18),
      transparent 35%),
    var(--secondary-color);
}

.teaMenuCard--feature .teaMenuCard__content {
  padding: 40px;
}

.teaMenuCard__label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.teaMenuCard--feature h3 {
  margin-bottom: 16px;
  font-size: 38px;
}

.teaMenuCard--feature strong {
  display: block;
  margin: 24px 0;
  font-size: 24px;
}

@media(max-width:991px) {

  .teaMenuPage__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:767px) {

  .teaMenuPage {
    padding: 80px 16px;
  }

  .teaMenuPage__grid {
    grid-template-columns: 1fr;
  }

  .teaMenuCard__img {
    height: 240px;
  }

}

.teaChef {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, var(--dark-color) 0%, var(--primary-color) 52%, #080706 100%);
  color: var(--white-color);
}

.teaChef::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  width: 1px;
  height: 76%;
  background: linear-gradient(180deg,
      transparent,
      rgba(200, 164, 107, .35),
      transparent);
}

.teaChef__container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.teaChef__image {
  position: relative;
  min-height: 620px;
  border-radius: 280px 280px 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 107, .25);
  background: var(--secondary-color);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
}

.teaChef__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 7, 7, .75)),
    radial-gradient(circle at 50% 12%, rgba(226, 195, 143, .16), transparent 35%);
}

.teaChef__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  transition: transform .8s ease, filter .8s ease;
}

.teaChef__image:hover img {
  transform: scale(1.06);
  filter: grayscale(40%) contrast(1.05);
}

.teaChef__jp {
  position: absolute;
  right: 26px;
  top: 42px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: var(--accent-light);
  font-family: 'Shippori Mincho', serif;
  font-size: 44px;
  letter-spacing: .18em;
  text-shadow: 0 0 25px rgba(200, 164, 107, .35);
}

.teaChef__sub {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.teaChef__content h2 {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--white-color);
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: .04em;
}

.teaChef__content p {
  max-width: 600px;
  margin: 0 0 38px;
  color: var(--text-color);
  font-size: 16px;
}

.teaChef__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}

.teaChef__info div {
  padding: 24px 18px;
  border: 1px solid rgba(200, 164, 107, .18);
  background: rgba(255, 255, 255, .035);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.teaChef__info strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-light);
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 500;
}

.teaChef__info span {
  color: var(--text-color);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.teaChef blockquote {
  position: relative;
  max-width: 620px;
  margin: 0 0 38px;
  padding-left: 28px;
  border-left: 1px solid var(--accent-color);
  color: var(--white-color);
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 400;
}

.teaChef__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 107, .45);
  color: var(--dark-color);
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.teaChef__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(200, 164, 107, .22);
  color: var(--dark-color);
}

@media (max-width: 991px) {
  .teaChef {
    padding: 90px 18px;
  }

  .teaChef::before {
    display: none;
  }

  .teaChef__container {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .teaChef__image,
  .teaChef__image img {
    min-height: 520px;
  }
}

@media (max-width: 575px) {
  .teaChef {
    padding: 72px 16px;
  }

  .teaChef__image {
    border-radius: 180px 180px 24px 24px;
  }

  .teaChef__image,
  .teaChef__image img {
    min-height: 430px;
  }

  .teaChef__info {
    grid-template-columns: 1fr;
  }

  .teaChef blockquote {
    font-size: 20px;
  }
}

.teaGallery {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, var(--dark-color) 0%, var(--primary-color) 52%, #080706 100%);
  color: var(--white-color);
}

.teaGallery::before {
  content: "茶";
  position: absolute;
  top: 40px;
  right: 6%;
  color: rgba(200, 164, 107, .04);
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(160px, 24vw, 360px);
  line-height: 1;
  pointer-events: none;
}

.teaGallery__container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.teaGallery__head {
  max-width: 720px;
  margin-bottom: 56px;
}

.teaGallery__head span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.teaGallery__head h2 {
  margin: 0 0 20px;
  color: var(--white-color);
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: .04em;
}

.teaGallery__head p {
  max-width: 610px;
  margin: 0;
  color: var(--text-color);
  font-size: 16px;
}

.teaGallery__grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  grid-auto-rows: 260px;
  gap: 24px;
}

.teaGallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(200, 164, 107, .18);
  background: var(--secondary-color);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .32);
}

.teaGallery__item--large {
  grid-row: span 2;
}

.teaGallery__item--tall {
  grid-row: span 2;
}

.teaGallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) saturate(.85) contrast(1.05);
  transition: transform .8s ease, filter .8s ease;
}

.teaGallery__item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) saturate(1) contrast(1.05);
}

.teaGallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 7, 7, .76)),
    radial-gradient(circle at 50% 20%, rgba(226, 195, 143, .12), transparent 36%);
  opacity: .9;
  transition: opacity .35s ease;
}

.teaGallery__item:hover::after {
  opacity: 1;
}

.teaGallery__overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  transform: translateY(10px);
  transition: transform .35s ease;
}

.teaGallery__item:hover .teaGallery__overlay {
  transform: translateY(0);
}

.teaGallery__overlay span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.teaGallery__overlay h3 {
  margin: 0;
  color: var(--white-color);
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

@media (max-width: 991px) {
  .teaGallery {
    padding: 90px 18px;
  }

  .teaGallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .teaGallery__item--large,
  .teaGallery__item--tall {
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .teaGallery {
    padding: 72px 16px;
  }

  .teaGallery__head {
    margin-bottom: 36px;
  }

  .teaGallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 18px;
  }

  .teaGallery__item {
    border-radius: 22px;
  }

  .teaGallery__overlay {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .teaGallery__overlay h3 {
    font-size: 26px;
  }
}

.teaContact {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 107, .12), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(226, 195, 143, .08), transparent 35%),
    linear-gradient(180deg, var(--dark-color) 0%, var(--primary-color) 52%, #080706 100%);
  color: var(--white-color);
}

.teaContact::before {
  content: "茶";
  position: absolute;
  top: 40px;
  right: 6%;
  color: rgba(200, 164, 107, .04);
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(170px, 24vw, 380px);
  line-height: 1;
  pointer-events: none;
}

.teaContact__container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.teaContact__sub {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.teaContact__content h2 {
  margin: 0 0 24px;
  color: var(--white-color);
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: .04em;
}

.teaContact__content p {
  max-width: 560px;
  margin: 0 0 42px;
  color: var(--text-color);
  font-size: 16px;
}

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

.teaContact__item {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(200, 164, 107, .18);
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(10px);
}

.teaContact__item span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.teaContact__item strong {
  display: block;
  color: var(--white-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.teaContact__formWrap {
  position: relative;
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(200, 164, 107, .22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    var(--secondary-color);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .42);
}

.teaContact__jp {
  position: absolute;
  top: -34px;
  right: 30px;
  color: rgba(226, 195, 143, .32);
  font-family: 'Shippori Mincho', serif;
  font-size: 46px;
  letter-spacing: .18em;
  white-space: nowrap;
}

.teaContact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.teaContact__form input,
.teaContact__form select,
.teaContact__form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(200, 164, 107, .2);
  outline: none;
  background: rgba(7, 7, 7, .42);
  color: var(--white-color);
  font-size: 14px;
  font-family: inherit;
}

.teaContact__form textarea {
  min-height: 140px;
  padding-top: 18px;
  resize: none;
}

.teaContact__form input::placeholder,
.teaContact__form textarea::placeholder {
  color: rgba(201, 190, 176, .72);
}

.teaContact__form select {
  color: rgba(201, 190, 176, .9);
}

.teaContact__form input:focus,
.teaContact__form select:focus,
.teaContact__form textarea:focus {
  border-color: rgba(226, 195, 143, .7);
  box-shadow: 0 0 0 4px rgba(200, 164, 107, .08);
}

.teaContact__form button {
  min-height: 56px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  color: var(--dark-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .35s ease;
}

.teaContact__form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(200, 164, 107, .22);
}

@media (max-width: 991px) {
  .teaContact {
    padding: 90px 18px;
  }

  .teaContact__container {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 575px) {
  .teaContact {
    padding: 72px 16px;
  }

  .teaContact__info,
  .teaContact__row {
    grid-template-columns: 1fr;
  }

  .teaContact__formWrap {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .teaContact__jp {
    top: -24px;
    right: 20px;
    font-size: 30px;
  }
}