* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #080808;
  color: #f5f0e6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.header-inner {
  min-height: 220px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-areas:
    "logo button ."
    "nav nav nav";
  align-items: center;
  gap: 18px 36px;
  padding: 24px 0 22px;
}

.logo-wrap {  grid-area: logo;  display: flex;  align-items: center;  gap: 24px;  flex-shrink: 0;}

.logo-img {
  width: 140px;
  height: 140px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.7);
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.28),
    0 0 70px rgba(212, 175, 55, 0.13);
}


.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 0.92;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.22);
}

.logo-text span {
  color: #d4af37;
}

.logo-text small {
  display: block;
  width: 100%;
  margin-top: 14px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 11px;
  color: #d4af37;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  font-size: 24px;
  color: #d8caa5;
  margin-top: 35px;
}


.main-nav a {
  position: relative;
  transition: 0.25s;
}

.main-nav a:hover {
  color: #f0c94a;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: 0.25s;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-button {
  grid-area: button;
  justify-self: start;
  margin-left: 120px;
  background: linear-gradient(135deg, #f6dc79, #d4af37 45%, #8f6b18);
  color: #090909;
  padding: 28px 56px;
  font-size: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 231, 153, 0.45);
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: 0.25s;
}

.header-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 34px rgba(212, 175, 55, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.22), transparent 34%),
    radial-gradient(circle at 20% 15%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111111 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  margin-bottom: 26px;
}

.hero p {
  max-width: 610px;
  color: #c7bfae;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #96701d);
  color: #070707;
}

.btn-secondary {
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #d4af37;
}

.hero-card {
  min-height: 440px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 34px;
  padding: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(212,175,55,0.08));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.tea-circle {
  width: 230px;
  height: 230px;
  margin: 20px auto 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, #f6dc79, #b78321 42%, #2a1606 75%);
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.24);
}

.hero-card h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.hero-card p {
  font-size: 17px;
}

.categories,
.about {
  padding: 95px 0;
}

.categories h2,
.about h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.section-text {
  color: #b9ae9a;
  font-size: 18px;
  margin-bottom: 38px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 220px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 26px;
  padding: 26px;
  background: #111111;
  transition: 0.25s;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 18px 55px rgba(212, 175, 55, 0.08);
}

.category-card h3 {
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 18px;
}

.category-card p {
  color: #bfb5a3;
  line-height: 1.55;
}

.about {
  background: #0d0d0d;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  max-width: 820px;
}

.about p {
  color: #bfb5a3;
  font-size: 18px;
  line-height: 1.7;
}

.about-box {
  border-radius: 28px;
  padding: 32px;
  background: linear-gradient(145deg, #161616, #0b0b0b);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-box span {
  color: #d4af37;
  font-size: 48px;
  font-weight: 800;
}

.about-box strong {
  display: block;
  margin: 20px 0 12px;
  font-size: 24px;
}

.site-footer {
  padding: 32px 0;
  color: #8f8778;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  background: #d4af37;
  color: #090909;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.callback-modal.show {
  display: flex;
}

.callback-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.callback-box {
  position: relative;
  width: min(520px, 100%);
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 42%),
    linear-gradient(145deg, #151515, #070707);
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow:
    0 0 45px rgba(212, 175, 55, 0.14),
    0 30px 100px rgba(0, 0, 0, 0.75);
}

.callback-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #d4af37;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.callback-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.callback-box h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.15;
}

.callback-box p {
  margin-bottom: 24px;
  color: #c7bfae;
  font-size: 17px;
  line-height: 1.6;
}

.callback-phone {
  display: block;
  margin-bottom: 28px;
  color: #d4af37;
  font-size: 30px;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.callback-form input {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f0e6;
  font-size: 18px;
  outline: none;
}

.callback-form input::placeholder {
  color: #8f8778;
}

.callback-form input:focus {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.14);
}

.callback-form button {
  height: 62px;
  border: none;
  border-radius: 22px;
  background: linear-gradient(135deg, #f6dc79, #d4af37 45%, #8f6b18);
  color: #090909;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.callback-note {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.26);
  color: #d4af37;
  font-size: 15px;
}

.callback-note.show {
  display: block;
}

@media (max-width: 980px) {
  .header-inner {
    height: auto;
    padding: 20px 0;
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-card {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}