/* ============================================
   Gold Tushenka — Content Pages Styles
   Shared across product, guide, recipe pages
   ============================================ */

:root {
  --cr: #8B1A1A;
  --cr2: #6B1010;
  --cr3: #A52020;
  --dk: #1C1008;
  --dm: #3C2010;
  --dw: #5C3A1E;
  --gd: #C8952A;
  --gl: #E8B84B;
  --gs: #9A6A18;
  --cm: #F5EDD8;
  --cd: #E8D9B8;
  --cl: #EDE0C8;
  --wh: #FDFAF4;
  --ff-geo: 'Noto Serif Georgian', serif;
  --ff-lat: 'Cinzel', serif;
  --ff-body: 'IM Fell English', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cm);
  color: var(--dk);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cr); text-decoration: none; }
a:hover { color: var(--cr3); }

/* ---- Navigation (matches homepage) ---- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; flex-direction: column;
  background: #000;
  border-bottom: 1px solid rgba(200,149,42,.35);
  transition: all .3s;
}
.nav-top-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; cursor: pointer;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-name {
  font-family: var(--ff-lat); font-size: .78rem; font-weight: 700;
  color: var(--gd); letter-spacing: .13em; white-space: nowrap;
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone-link {
  font-family: var(--ff-lat); font-size: .95rem;
  color: var(--gd); letter-spacing: .05em;
  text-decoration: none; margin-right: 16px; white-space: nowrap;
}
.nav-phone-mobile { display: none; color: var(--gd); }
.nav-phone-mobile svg { stroke: var(--gd); }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  background: none; border: 1px solid rgba(200,149,42,.25);
  color: rgba(245,237,216,.65); font-family: var(--ff-lat);
  font-size: .78rem; letter-spacing: .1em;
  padding: 4px 8px; cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.lang-btn.active, .lang-btn:hover { border-color: var(--gd); color: var(--gd); }
.nav-links-row {
  display: flex; justify-content: center;
  padding: 0 40px; height: 34px;
  border-top: 1px solid rgba(200,149,42,.12);
  background: rgba(0,0,0,.6);
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--ff-lat); font-size: .7rem;
  letter-spacing: .12em; color: rgba(245,237,216,.45);
  text-decoration: none; cursor: pointer; transition: color .2s;
  white-space: nowrap; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--gd); }

/* Hamburger */
.gt-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.gt-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--cm); transition: all .25s;
}
.gt-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gt-hamburger.active span:nth-child(2) { opacity: 0; }
.gt-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav dropdown */
.gt-nav__mobile-links {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; z-index: 499;
  background: rgba(28,16,8,.97);
  flex-direction: column; padding: 16px 24px; gap: 12px;
}
.gt-nav__mobile-links.active { display: flex; }
.gt-nav__mobile-links a {
  font-family: var(--ff-lat); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,237,216,.7); text-decoration: none;
  padding: 8px 0;
}
.gt-nav__mobile-links a:hover { color: var(--gd); }

/* ---- Breadcrumb ---- */
.gt-breadcrumb {
  padding: 80px 24px 0;
  background: var(--cm);
}
.gt-breadcrumb__inner {
  max-width: 960px; margin: 0 auto;
  padding: 16px 0;
  font-family: var(--ff-lat); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dw); opacity: .7;
}
.gt-breadcrumb a { color: var(--dw); text-decoration: none; }
.gt-breadcrumb a:hover { color: var(--cr); }
.gt-breadcrumb__sep { margin: 0 8px; opacity: .4; }

/* ---- Sections ---- */
.gt-section {
  padding: 72px 40px;
}
.gt-section--light { background: var(--cm); }
.gt-section--cream { background: var(--cl); }
.gt-section--dark { background: var(--dk); color: var(--cm); }
.gt-section__inner {
  max-width: 960px; margin: 0 auto;
}

/* ---- Typography ---- */
.gt-eyebrow {
  font-family: var(--ff-lat); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gd); margin-bottom: 12px;
}
.gt-title {
  font-family: var(--ff-geo); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1; margin-bottom: 24px;
  color: var(--dk);
}
.gt-section--dark .gt-title { color: var(--cm); }
.gt-title em { font-style: italic; color: var(--cr); }
.gt-section--dark .gt-title em { color: var(--gl); }

.gt-subtitle {
  font-family: var(--ff-geo); font-weight: 700;
  font-size: 1.25rem; line-height: 1.3;
  margin-bottom: 16px; color: var(--dm);
}
.gt-section--dark .gt-subtitle { color: var(--cd); }

.gt-body {
  font-family: var(--ff-body); font-size: 1.05rem;
  line-height: 1.85; color: var(--dm);
}
.gt-section--dark .gt-body { color: rgba(245,237,216,.8); }
.gt-body p { margin-bottom: 16px; }
.gt-body strong { color: var(--dk); font-weight: 700; }
.gt-section--dark .gt-body strong { color: var(--gd); }
.gt-body ul, .gt-body ol {
  margin: 12px 0 16px 24px;
}
.gt-body li { margin-bottom: 6px; }

/* ---- Hero (content pages) ---- */
.gt-hero {
  padding: 100px 40px 60px;
  background: var(--dk);
  color: var(--cm);
}
.gt-hero__inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.gt-hero__eyebrow {
  font-family: var(--ff-lat); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gd); margin-bottom: 12px;
}
.gt-hero__title {
  font-family: var(--ff-geo); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08; margin-bottom: 16px;
  color: var(--cm);
}
.gt-hero__tagline {
  font-family: var(--ff-body); font-style: italic;
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(245,237,216,.75); margin-bottom: 24px;
}
.gt-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.gt-hero__image {
  display: flex; align-items: center; justify-content: center;
}
.gt-hero__image img {
  max-height: 360px; width: auto;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(14,7,3,.5);
}

/* No-image hero (guides, recipes) */
.gt-hero--compact {
  padding: 100px 40px 48px;
}
.gt-hero--compact .gt-hero__inner {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
}

/* ---- Buttons ---- */
.gt-btn {
  display: inline-block;
  font-family: var(--ff-lat); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px;
  text-decoration: none; cursor: pointer;
  transition: all .2s;
}
.gt-btn--primary {
  background: var(--cr); color: var(--cm);
  border: 2px solid var(--cr);
}
.gt-btn--primary:hover {
  background: var(--cr3); border-color: var(--cr3); color: var(--cm);
}
.gt-btn--ghost {
  background: transparent; color: var(--cm);
  border: 2px solid rgba(245,237,216,.3);
}
.gt-btn--ghost:hover {
  border-color: var(--gd); color: var(--gd);
}
.gt-btn--gold {
  background: var(--gd); color: var(--dk);
  border: 2px solid var(--gd);
}
.gt-btn--gold:hover {
  background: var(--gl); border-color: var(--gl);
}

/* ---- Characteristics / Info Table ---- */
.gt-chars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.gt-chars__image img {
  border-radius: 4px; width: 100%;
  box-shadow: 0 8px 32px rgba(14,7,3,.15);
}
.gt-chars__table {
  width: 100%; border-collapse: collapse;
}
.gt-chars__table tr {
  border-bottom: 1px solid var(--cd);
}
.gt-chars__table td {
  padding: 12px 8px;
  font-family: var(--ff-body); font-size: .95rem;
}
.gt-chars__table td:first-child {
  font-weight: 700; color: var(--dm);
  width: 45%; white-space: nowrap;
}
.gt-chars__table td:last-child {
  color: var(--dk);
}

/* ---- FAQ ---- */
.gt-faq-list { max-width: 720px; margin: 0 auto; }
.gt-faq-item {
  border-bottom: 1px solid var(--cd);
}
.gt-section--dark .gt-faq-item {
  border-color: rgba(245,237,216,.12);
}
.gt-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--ff-geo); font-size: 1.05rem; font-weight: 700;
  color: var(--dk); text-align: left;
  transition: color .2s;
}
.gt-section--dark .gt-faq-q { color: var(--cm); }
.gt-faq-q:hover { color: var(--cr); }
.gt-section--dark .gt-faq-q:hover { color: var(--gd); }
.gt-faq-arrow {
  font-size: 1.2rem; transition: transform .25s;
  color: var(--gd); flex-shrink: 0; margin-left: 16px;
}
.gt-faq-item.open .gt-faq-arrow { transform: rotate(180deg); }
.gt-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.gt-faq-item.open .gt-faq-a {
  max-height: 500px; padding-bottom: 20px;
}
.gt-faq-a p {
  font-family: var(--ff-body); font-size: .95rem;
  line-height: 1.8; color: var(--dw);
}
.gt-section--dark .gt-faq-a p { color: rgba(245,237,216,.7); }

/* ---- CTA Section ---- */
.gt-cta {
  text-align: center; padding: 60px 40px;
  background: var(--dk);
}
.gt-cta__inner { max-width: 600px; margin: 0 auto; }
.gt-cta__title {
  font-family: var(--ff-geo); font-weight: 900;
  font-size: 1.8rem; color: var(--cm);
  margin-bottom: 12px;
}
.gt-cta__sub {
  font-family: var(--ff-body); font-style: italic;
  font-size: 1rem; color: rgba(245,237,216,.65);
  margin-bottom: 24px;
}
.gt-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Product Cards (hub pages) ---- */
.gt-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gt-card {
  background: var(--wh);
  border: 1px solid var(--cd);
  border-radius: 4px; overflow: hidden;
  text-decoration: none; color: var(--dk);
  transition: transform .2s, box-shadow .2s;
}
.gt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14,7,3,.12);
}
.gt-card__img {
  height: 200px; overflow: hidden;
  background: var(--cl);
  display: flex; align-items: center; justify-content: center;
}
.gt-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gt-card__img-placeholder {
  font-size: 3rem; opacity: .5;
}
.gt-card__body { padding: 20px; }
.gt-card__name {
  font-family: var(--ff-geo); font-weight: 700;
  font-size: 1.15rem; margin-bottom: 6px; color: var(--dk);
}
.gt-card__desc {
  font-family: var(--ff-body); font-size: .9rem;
  color: var(--dw); line-height: 1.6;
  margin-bottom: 12px;
}
.gt-card__meta {
  font-family: var(--ff-lat); font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gd);
}
.gt-card__link {
  font-family: var(--ff-lat); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cr); font-weight: 700;
}
.gt-card:hover .gt-card__link { color: var(--cr3); }

/* ---- Recipe-specific ---- */
.gt-recipe-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 20px 0; margin-bottom: 24px;
  border-top: 1px solid var(--cd);
  border-bottom: 1px solid var(--cd);
}
.gt-recipe-meta__item {
  display: flex; flex-direction: column; gap: 2px;
}
.gt-recipe-meta__label {
  font-family: var(--ff-lat); font-size: .6rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gd); font-weight: 700;
}
.gt-recipe-meta__value {
  font-family: var(--ff-body); font-size: 1rem;
  color: var(--dk);
}
.gt-recipe-ingredients {
  background: var(--wh); border: 1px solid var(--cd);
  border-radius: 4px; padding: 24px 28px;
  margin-bottom: 32px;
}
.gt-recipe-ingredients h3 {
  font-family: var(--ff-geo); font-weight: 700;
  font-size: 1.1rem; margin-bottom: 12px; color: var(--dk);
}
.gt-recipe-ingredients ul {
  list-style: none; margin: 0; padding: 0;
}
.gt-recipe-ingredients li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(232,217,184,.5);
  font-family: var(--ff-body); font-size: .95rem;
  color: var(--dm);
}
.gt-recipe-ingredients li:last-child { border-bottom: none; }
.gt-recipe-ingredients .gt-highlight {
  color: var(--cr); font-weight: 700;
}
.gt-recipe-steps { counter-reset: step; }
.gt-recipe-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 48px; margin-bottom: 24px;
}
.gt-recipe-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 2px;
  width: 32px; height: 32px;
  background: var(--cr); color: var(--cm);
  font-family: var(--ff-lat); font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.gt-recipe-tip {
  background: rgba(200,149,42,.08);
  border-left: 3px solid var(--gd);
  padding: 16px 20px; margin: 24px 0;
  border-radius: 0 4px 4px 0;
}
.gt-recipe-tip strong {
  font-family: var(--ff-lat); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gd);
}

/* ---- Product Recommendation ---- */
.gt-recommend {
  display: flex; align-items: center; gap: 20px;
  background: var(--wh); border: 1px solid var(--cd);
  border-radius: 4px; padding: 20px 24px;
  margin: 24px 0;
}
.gt-recommend__icon { font-size: 2rem; flex-shrink: 0; }
.gt-recommend__text {
  font-family: var(--ff-body); font-size: .95rem;
  color: var(--dm); line-height: 1.6;
}
.gt-recommend__link {
  font-family: var(--ff-lat); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cr); font-weight: 700;
}

/* ---- Hub page category filters ---- */
.gt-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px; justify-content: center;
}
.gt-filter-btn {
  font-family: var(--ff-lat); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 2px;
  background: transparent; color: var(--dw);
  border: 1px solid var(--cd); cursor: pointer;
  transition: all .2s;
}
.gt-filter-btn:hover { border-color: var(--gd); color: var(--gd); }
.gt-filter-btn.active {
  background: var(--cr); color: var(--cm); border-color: var(--cr);
}

/* ---- Back link ---- */
.gt-back {
  padding: 24px 40px;
  background: var(--cm);
}
.gt-back__inner { max-width: 960px; margin: 0 auto; }
.gt-back__link {
  font-family: var(--ff-lat); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cr); font-weight: 700;
  text-decoration: none;
}
.gt-back__link:hover { color: var(--cr3); }

/* ---- Footer ---- */
.gt-footer {
  background: var(--dk); padding: 48px 40px 24px;
  color: rgba(245,237,216,.6);
}
.gt-footer__inner {
  max-width: 960px; margin: 0 auto;
  text-align: center;
}
.gt-footer__brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 8px;
}
.gt-footer__logo { height: 28px; width: auto; }
.gt-footer__name {
  font-family: var(--ff-lat); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; color: var(--gd);
}
.gt-footer__tagline {
  font-family: var(--ff-body); font-style: italic;
  font-size: .85rem; margin-bottom: 20px;
  color: rgba(245,237,216,.5);
}
.gt-footer__links {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 16px;
}
.gt-footer__links a {
  font-family: var(--ff-lat); font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,237,216,.5); text-decoration: none;
}
.gt-footer__links a:hover { color: var(--gd); }
.gt-footer__contact {
  margin-bottom: 16px;
}
.gt-footer__contact a {
  font-family: var(--ff-lat); font-size: .75rem;
  letter-spacing: .06em; color: var(--cm); text-decoration: none;
}
.gt-footer__copy {
  font-family: var(--ff-lat); font-size: .6rem;
  letter-spacing: .08em; color: rgba(245,237,216,.3);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .gt-hamburger { display: flex; }
  .gt-nav__links {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(28,16,8,.97);
    flex-direction: column; padding: 16px 24px; gap: 12px;
  }
  .gt-nav__links.active { display: flex; }
  .gt-hero__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .gt-hero__ctas { justify-content: center; }
  .gt-hero__image { order: -1; }
  .gt-hero__image img { max-height: 240px; }
  .gt-chars { grid-template-columns: 1fr; gap: 32px; }
  .gt-cards { grid-template-columns: 1fr; }
  .gt-section { padding: 48px 20px; }
  .gt-hero { padding: 88px 20px 40px; }
  .gt-hero--compact { padding: 88px 20px 32px; }
}

@media (max-width: 600px) {
  .gt-cards { grid-template-columns: 1fr; }
  .gt-recipe-meta { gap: 16px; }
  .gt-hero__title { font-size: 1.8rem; }
  .gt-recommend { flex-direction: column; text-align: center; }
  .gt-nav__phone-number { display: none; }
}
