/* =========================================================
   GLORY TALE — Main Stylesheet v1.0.0
   Palette: Cream #FDFAF4, Gold #B8953F, Charcoal #1C1A17
   Fonts: Cormorant Garamond (serif) + Jost (sans)
========================================================= */

/* ---------------------------------------------------------
   CSS VARIABLES
--------------------------------------------------------- */
:root {
  --gold: #B8953F;
  --gold-light: #D4AF6A;
  --gold-pale: #F5EDD6;
  --gold-border: #E8D5A3;
  --cream: #FDFAF4;
  --cream2: #F7F1E6;
  --ivory: #EDE6D6;
  --charcoal: #1C1A17;
  --dark: #2C2820;
  --mid: #6B6355;
  --muted: #9C9080;
  --white: #FFFFFF;
  --wa: #25D366;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --hdr-h: 70px;
  --ann-h: 36px;
  --mob-bar-h: 64px;
  --radius: 0px;
  --trans: all .3s ease;
}

/* ---------------------------------------------------------
   RESET & BASE
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: calc(var(--ann-h) + var(--hdr-h));
  padding-bottom: var(--mob-bar-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: var(--sans); }

/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
em { font-style: italic; }
p { line-height: 1.85; }

/* ---------------------------------------------------------
   ANNOUNCEMENT BAR
--------------------------------------------------------- */
.gt-ann {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ann-h);
  background: var(--charcoal);
  color: rgba(253,250,244,.85);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  padding: 0 16px;
}
.gt-ann-close {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: rgba(253,250,244,.5);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  min-height: 36px;
  min-width: 36px;
}
.gt-ann-close:hover { color: #fff; }

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */
.gt-header {
  position: fixed;
  top: var(--ann-h);
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--cream);
  border-bottom: 1px solid var(--gold-border);
  height: var(--hdr-h);
  transition: box-shadow .3s;
}
.gt-header.gt-scrolled { box-shadow: 0 4px 30px rgba(28,26,23,.08); }
.gt-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* LOGO */
.gt-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--charcoal);
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.gt-logo em { color: var(--gold); font-style: italic; }
.gt-logo img { height: 48px; width: auto; }

/* DESKTOP NAV */
.gt-nav {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.gt-nav a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  transition: color .3s;
  white-space: nowrap;
}
.gt-nav a:hover { color: var(--gold); }
.gt-nav-drop { position: relative; }
.gt-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gold-border);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--trans);
  z-index: 200;
}
.gt-nav-drop:hover .gt-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.gt-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--trans);
}
.gt-dropdown a:last-child { border-bottom: none; }
.gt-dropdown a:hover { background: var(--gold-pale); color: var(--charcoal); }

/* HEADER ACTIONS */
.gt-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.gt-btn-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--wa);
  color: #fff;
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
  transition: opacity .3s;
  min-height: 44px;
}
.gt-btn-wa span { display: none; }
.gt-btn-wa:hover { opacity: .9; }
.gt-btn-quote {
  background: var(--charcoal);
  color: var(--cream);
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  transition: background .3s;
  min-height: 44px;
  display: none;
}
.gt-btn-quote:hover { background: var(--gold); }
.gt-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: 1px solid var(--gold-border);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.gt-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--trans);
}

/* ---------------------------------------------------------
   MOBILE NAV OVERLAY
--------------------------------------------------------- */
.gt-mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28,26,23,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.gt-mob-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.gt-mob-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 360px);
  background: var(--cream);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.gt-mob-overlay.open .gt-mob-nav { transform: translateX(0); }
.gt-mob-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gold-border);
  flex-shrink: 0;
}
.gt-mob-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--charcoal);
}
.gt-mob-logo em { color: var(--gold); font-style: italic; }
.gt-mob-logo img { height: 36px; width: auto; }
.gt-mob-close {
  font-size: 18px;
  color: var(--muted);
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-mob-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-border);
}
.gt-mob-links a {
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(232,213,163,.4);
  transition: var(--trans);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.gt-mob-links a:last-child { border-bottom: none; }
.gt-mob-links a:hover { color: var(--gold); background: var(--gold-pale); padding-left: 30px; }
.gt-mob-cats { padding: 16px 20px; border-bottom: 1px solid var(--gold-border); }
.gt-mob-cats-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.gt-mob-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--mid);
  border-bottom: 1px solid rgba(232,213,163,.3);
  min-height: 44px;
}
.gt-mob-cat-item:last-child { border-bottom: none; }
.gt-mob-cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.gt-mob-cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.gt-mob-cta-wa {
  background: var(--wa);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-mob-cta-quote {
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  min-height: 50px;
  width: 100%;
  transition: background .3s;
}
.gt-mob-cta-quote:hover { background: var(--gold); }

/* ---------------------------------------------------------
   LAYOUT HELPERS
--------------------------------------------------------- */
.gt-main { min-height: 60vh; }
.gt-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
}
.gt-sec-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gt-sec-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.gt-sec-head { text-align: center; margin-bottom: 48px; }
.gt-sec-head .gt-sec-eyebrow { justify-content: center; }
.gt-sec-head .gt-sec-eyebrow::before { display: none; }
.gt-sec-h {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-top: 8px;
}
.gt-sec-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 1px;
  line-height: 1.7;
}

/* BUTTONS */
.gt-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  min-height: 50px;
  text-decoration: none;
}
.gt-btn-primary:hover { background: var(--gold-light); color: #fff; }
.gt-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: var(--trans);
  min-height: 50px;
}
.gt-btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.gt-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: var(--trans);
  min-height: 50px;
  text-decoration: none;
}
.gt-btn-outline-dark:hover { background: var(--charcoal); color: var(--cream); }
.gt-btn-wa-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  min-height: 50px;
  transition: opacity .3s;
}
.gt-btn-wa-large:hover { opacity: .9; }
.gt-btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wa);
  color: #fff;
  padding: 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  min-height: 50px;
  transition: opacity .3s;
}
.gt-btn-wa-full:hover { opacity: .9; }

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */
.gt-hero {
  background: linear-gradient(165deg, var(--cream) 0%, var(--gold-pale) 55%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 24px 40px;
}
.gt-hero-bg-pattern {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  opacity: .06;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 10px 10px;
  border-radius: 0 0 0 50%;
}
.gt-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gt-hero-content { max-width: 600px; }
.gt-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-top: 16px;
}
.gt-hero-h1 em { color: var(--gold); }
.gt-hero-h1-light { color: var(--muted); font-weight: 300; }
.gt-hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
  margin: 20px 0 32px;
  max-width: 480px;
}
.gt-hero-btns { display: flex; flex-direction: column; gap: 12px; }

/* Hero cards */
.gt-hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gt-hcard {
  background: var(--white);
  border: 1px solid var(--gold-border);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  color: var(--charcoal);
}
.gt-hcard.gt-hcard-wide {
  grid-column: 1/-1;
  flex-direction: row;
  text-align: left;
  justify-content: flex-start;
}
.gt-hcard:hover { border-color: var(--gold); background: var(--gold-pale); }
.gt-hcard-icon { font-size: 28px; }
.gt-hcard-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.gt-hcard-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.gt-hcard-arrow { margin-left: auto; color: var(--gold); font-size: 18px; }

/* ---------------------------------------------------------
   STRIP
--------------------------------------------------------- */
.gt-strip {
  background: var(--charcoal);
  padding: 16px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gt-strip::-webkit-scrollbar { display: none; }
.gt-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.gt-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253,250,244,.75);
  font-weight: 500;
  flex-shrink: 0;
  padding-right: 24px;
  margin-right: 24px;
}
.gt-strip-item span { color: var(--gold); }
.gt-strip-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
  margin-right: 24px;
}

/* ---------------------------------------------------------
   ABOUT BAND
--------------------------------------------------------- */
.gt-about-band {
  background: var(--white);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 60px 24px;
  text-align: center;
}
.gt-about-band-inner { max-width: 680px; margin: 0 auto; }
.gt-about-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 20px;
}
.gt-about-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid);
}

/* ---------------------------------------------------------
   COLLECTIONS GRID
--------------------------------------------------------- */
.gt-collections { padding: 0; }
.gt-collections .gt-section-inner { padding-bottom: 0; }
.gt-coll-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.gt-coll-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  display: block;
  text-decoration: none;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gt-coll-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: .1;
  transition: all .6s;
}
.gt-coll-card:hover .gt-coll-card-bg { opacity: .18; transform: scale(1.08); }
.gt-coll-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,.92) 0%, rgba(28,26,23,.2) 60%, transparent 100%);
}
.gt-coll-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}
.gt-coll-cat {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.gt-coll-name {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.gt-coll-desc { font-size: 12px; color: rgba(253,250,244,.55); line-height: 1.6; margin-bottom: 14px; }
.gt-coll-moq { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(184,149,63,.8); margin-bottom: 14px; }
.gt-coll-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(184,149,63,.4);
  color: var(--gold);
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--trans);
}
.gt-coll-card:hover .gt-coll-btn { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* ---------------------------------------------------------
   PRODUCTS SECTION (WooCommerce featured)
--------------------------------------------------------- */
.gt-products-section { background: var(--cream); }
.gt-prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gt-pcard {
  background: var(--white);
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: border-color .3s;
  overflow: hidden;
}
.gt-pcard:hover { border-color: var(--gold); }
.gt-pcard-img {
  aspect-ratio: 1;
  background: var(--gold-pale);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gt-pcard:hover .gt-pcard-img img { transform: scale(1.04); }
.gt-pcard-placeholder { font-size: 50px; opacity: .3; }
.gt-pcard-hover {
  position: absolute;
  inset: 0;
  background: rgba(28,26,23,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity .3s;
}
.gt-pcard:hover .gt-pcard-hover { opacity: 1; }
.gt-pcard-body { padding: 14px 14px 16px; }
.gt-pcard-sku { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.gt-pcard-name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--charcoal); line-height: 1.2; margin-bottom: 6px; }
.gt-pcard-stars { font-size: 11px; color: var(--gold); letter-spacing: 2px; }
.gt-see-all-wrap { text-align: center; margin-top: 40px; }

/* WooCommerce default loop override */
.gt-wc-content ul.products {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px !important;
  margin: 0 !important;
}
.gt-wc-content ul.products li.product {
  background: var(--white);
  border: 1px solid var(--gold-border);
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  transition: border-color .3s;
}
.gt-wc-content ul.products li.product:hover { border-color: var(--gold); }
.gt-wc-content ul.products li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0;
}
.gt-wc-content ul.products li.product h2 {
  font-family: var(--serif) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  padding: 12px 14px 4px !important;
  color: var(--charcoal) !important;
}
.gt-wc-content ul.products li.product .woocommerce-loop-product__title {
  padding: 12px 14px 4px !important;
}
.gt-wc-content .gt-enquire-btn {
  display: block;
  width: calc(100% - 28px);
  margin: 0 14px 14px;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  padding: 11px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s;
  min-height: 44px;
}
.gt-wc-content .gt-enquire-btn:hover { background: var(--gold); }

/* ---------------------------------------------------------
   PROMO BAND
--------------------------------------------------------- */
.gt-promo-band {
  background: var(--charcoal);
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.gt-promo-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 10px 10px;
  opacity: .04;
}
.gt-promo-content { position: relative; z-index: 1; max-width: 600px; }
.gt-promo-label {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,149,63,.35);
  padding: 6px 14px;
  margin-bottom: 24px;
  font-weight: 500;
}
.gt-promo-h {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 18px;
}
.gt-promo-p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(253,250,244,.5);
  margin-bottom: 32px;
}
.gt-promo-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-promo-box-mockup {
  width: 160px;
  height: 200px;
  border: 2px solid rgba(184,149,63,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gt-promo-box-mockup::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(184,149,63,.12);
}
.gt-promo-box-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.gt-promo-box-inner span { font-size: 44px; opacity: .5; }
.gt-promo-box-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(184,149,63,.6);
}

/* ---------------------------------------------------------
   WHY US
--------------------------------------------------------- */
.gt-why { background: var(--white); border-top: 1px solid var(--gold-border); }
.gt-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: 40px;
}
.gt-why-item {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}
.gt-why-num {
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.gt-why-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 6px;
}
.gt-why-sub { font-size: 12px; color: var(--muted); }

/* ---------------------------------------------------------
   PROCESS
--------------------------------------------------------- */
.gt-process { background: var(--cream2); border-top: 1px solid var(--gold-border); }
.gt-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.gt-step {
  padding: 28px 0;
  border-bottom: 1px solid var(--gold-border);
}
.gt-step:last-child { border-bottom: none; }
.gt-step-arrow { display: none; }
.gt-step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-border);
  line-height: 1;
  margin-bottom: 10px;
}
.gt-step-h {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.gt-step-p { font-size: 13px; line-height: 1.8; color: var(--mid); }

/* ---------------------------------------------------------
   CTA BAND
--------------------------------------------------------- */
.gt-cta-band {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--ivory) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 60px 24px;
  text-align: center;
}
.gt-cta-band-inner { max-width: 640px; margin: 0 auto; }
.gt-cta-h {
  font-family: var(--serif);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.25;
}
.gt-cta-sub { font-size: 14px; color: var(--mid); margin-bottom: 32px; }
.gt-cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ---------------------------------------------------------
   PAGE HERO
--------------------------------------------------------- */
.gt-page-hero {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--dark) 100%);
  padding: 60px 24px 48px;
  position: relative;
  overflow: hidden;
}
.gt-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 10px 10px;
  opacity: .04;
}
.gt-page-hero-light {
  background: linear-gradient(160deg, var(--white) 0%, var(--gold-pale) 100%);
}
.gt-page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.gt-page-h {
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-top: 10px;
}
.gt-page-hero-light .gt-page-h { color: var(--charcoal); }
.gt-page-hero-light .gt-sec-eyebrow { color: var(--gold); }
.gt-page-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(253,250,244,.6);
  margin-top: 14px;
}
.gt-page-hero-light .gt-page-sub { color: var(--mid); }

/* ---------------------------------------------------------
   CONTACT PAGE
--------------------------------------------------------- */
.gt-contact-body { background: var(--cream); }
.gt-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gt-wa-block {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F0FBF3;
  border: 1px solid rgba(37,211,102,.25);
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  transition: var(--trans);
}
.gt-wa-block:hover { border-color: var(--wa); }
.gt-wa-block-icon { flex-shrink: 0; }
.gt-wa-block-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wa);
  font-weight: 600;
  margin-bottom: 4px;
}
.gt-wa-block-num { font-size: 16px; font-weight: 500; color: var(--charcoal); }
.gt-wa-block-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }
.gt-cinfo-list { display: flex; flex-direction: column; gap: 0; }
.gt-cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gold-border);
  margin-top: -1px;
}
.gt-cinfo-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.gt-cinfo-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  font-weight: 500;
}
.gt-cinfo-val { font-size: 14px; color: var(--charcoal); line-height: 1.4; font-weight: 400; }
.gt-cinfo-val:hover { color: var(--gold); }
.gt-cinfo-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }
.gt-map-wrap {
  margin-top: 20px;
  border: 1px solid var(--gold-border);
  overflow: hidden;
}
.gt-map-link {
  display: block;
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  border-top: 1px solid var(--gold-border);
  transition: var(--trans);
}
.gt-map-link:hover { background: var(--gold-pale); }

/* FORM */
.gt-contact-form-wrap { }
.gt-form-h {
  font-family: var(--serif);
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.gt-form-subh { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.gt-form-fields { display: flex; flex-direction: column; gap: 16px; }
.gt-field { display: flex; flex-direction: column; }
.gt-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.gt-input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gold-border);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.gt-input:focus { border-color: var(--gold); }
.gt-input::placeholder { color: #C8BFA8; }
.gt-textarea { min-height: 110px; resize: vertical; }
.gt-form-submit {
  width: 100%;
  font-size: 12px;
  letter-spacing: 3px;
}
.gt-form-feedback {
  padding: 14px 16px;
  font-size: 13px;
  border-radius: 0;
  margin-bottom: 16px;
}
.gt-form-success { background: #F0FBF3; border: 1px solid rgba(37,211,102,.3); color: #15803d; }
.gt-form-error { background: #FEF2F2; border: 1px solid rgba(220,38,38,.3); color: #DC2626; }

/* ---------------------------------------------------------
   ABOUT PAGE
--------------------------------------------------------- */
.gt-about-story { background: var(--white); }
.gt-about-story-grid { display: flex; flex-direction: column; gap: 48px; }
.gt-about-story-text p { font-size: 14px; line-height: 1.9; color: var(--mid); margin-bottom: 16px; }
.gt-about-story-text .gt-btn-primary { margin-top: 12px; }
.gt-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}
.gt-stat {
  background: var(--white);
  padding: 28px 16px;
  text-align: center;
}
.gt-stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.gt-stat-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 8px;
  font-weight: 500;
}
.gt-values { background: var(--cream); border-top: 1px solid var(--gold-border); }
.gt-values-grid { display: flex; flex-direction: column; gap: 2px; margin-top: 40px; }
.gt-val-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  padding: 32px 24px;
  transition: border-color .3s;
}
.gt-val-card:hover { border-color: var(--gold); }
.gt-val-icon { font-size: 28px; margin-bottom: 14px; }
.gt-val-h {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.gt-val-p { font-size: 13px; line-height: 1.8; color: var(--mid); }

/* ---------------------------------------------------------
   SHOP / WOOCOMMERCE
--------------------------------------------------------- */
.gt-shop-cats { background: var(--white); border-bottom: 1px solid var(--gold-border); }
.gt-shop-cats .gt-section-inner { padding-top: 36px; padding-bottom: 36px; }
.gt-cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.gt-cat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--gold-border);
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  transition: var(--trans);
  text-decoration: none;
}
.gt-cat-chip img { width: 18px; height: 18px; object-fit: cover; border-radius: 50%; }
.gt-cat-chip:hover { border-color: var(--gold); color: var(--charcoal); background: var(--gold-pale); }
.gt-shop-body { background: var(--cream); }
.gt-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-border);
}
.gt-shop-count, .woocommerce-result-count {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  margin: 0 !important;
}
.gt-shop-sort .woocommerce-ordering select, select.orderby {
  background: var(--white);
  border: 1px solid var(--gold-border);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 12px;
  padding: 8px 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.woocommerce-pagination .page-numbers {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-border);
  background: var(--white);
  font-size: 13px;
  color: var(--mid);
  transition: var(--trans);
  text-decoration: none;
}
.woocommerce-pagination .page-numbers li a:hover,
.woocommerce-pagination .page-numbers li span.current {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ---------------------------------------------------------
   ENQUIRY MODAL
--------------------------------------------------------- */
.gt-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(28,26,23,.65);
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.gt-modal {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 0 0 32px;
  animation: gt-slide-up .35s cubic-bezier(.4,0,.2,1);
}
@keyframes gt-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.gt-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.gt-modal-header {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--gold-border);
  padding: 28px 24px 22px;
}
.gt-modal-eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.gt-modal-h {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.gt-modal-sub { font-size: 13px; color: var(--mid); }
.gt-modal-msg {
  margin: 16px 24px 0;
  padding: 12px 14px;
  font-size: 13px;
}
.gt-modal-body { padding: 20px 24px 0; display: flex; flex-direction: column; gap: 14px; }
.gt-modal-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 15px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background .3s;
  min-height: 50px;
}
.gt-modal-submit:hover { background: var(--gold-light); }
.gt-modal-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wa);
  color: #fff;
  padding: 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: opacity .3s;
}
.gt-modal-wa:hover { opacity: .9; }

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.gt-footer {
  background: var(--charcoal);
  padding-bottom: var(--mob-bar-h);
}
.gt-footer-inner { max-width: 1280px; margin: 0 auto; padding: 52px 24px 28px; }
.gt-footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.gt-footer-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--cream);
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
}
.gt-footer-logo em { color: var(--gold); font-style: italic; }
.gt-footer-logo img { height: 44px; width: auto; }
.gt-footer-desc { font-size: 13px; line-height: 1.8; color: rgba(253,250,244,.4); margin-bottom: 24px; }
.gt-footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.gt-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(253,250,244,.6);
  text-decoration: none;
  transition: color .3s;
}
.gt-footer-contact-item:hover { color: var(--gold); }
.gt-fc-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.gt-footer-col-head {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.gt-footer-links li { margin-bottom: 10px; }
.gt-footer-links a {
  font-size: 13px;
  color: rgba(253,250,244,.45);
  text-decoration: none;
  transition: color .3s;
}
.gt-footer-links a:hover { color: var(--cream); }
.gt-footer-quote-btn {
  display: block;
  margin-top: 20px;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(184,149,63,.35);
  color: var(--gold);
  padding: 11px 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  text-align: center;
}
.gt-footer-quote-btn:hover { background: var(--gold); color: var(--charcoal); }
.gt-footer-bottom {
  border-top: 1px solid rgba(232,213,163,.1);
  padding-top: 24px;
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.gt-footer-copy { font-size: 11px; color: rgba(253,250,244,.25); letter-spacing: 1px; }
.gt-footer-tagline { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(184,149,63,.4); }

/* WA FLOAT (desktop only) */
.gt-wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  background: var(--wa);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: var(--trans);
}
.gt-wa-float:hover { transform: scale(1.08); }
.gt-wa-float-label { display: none; }

/* MOBILE STICKY BAR */
.gt-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--mob-bar-h);
  background: var(--white);
  border-top: 1px solid var(--gold-border);
  display: flex;
  align-items: stretch;
}
.gt-mb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--mid);
  text-decoration: none;
  transition: var(--trans);
  border: none;
  background: none;
  font-family: var(--sans);
  cursor: pointer;
  border-right: 1px solid var(--gold-border);
  min-height: 44px;
}
.gt-mb-item:last-child { border-right: none; }
.gt-mb-item:hover, .gt-mb-item:active { background: var(--gold-pale); color: var(--charcoal); }
.gt-mb-wa { color: var(--wa); }
.gt-mb-wa:hover { background: rgba(37,211,102,.08); }
.gt-mb-quote { background: var(--gold); color: #fff; }
.gt-mb-quote:hover { background: var(--gold-light); color: #fff; }

/* ---------------------------------------------------------
   MISC PAGES
--------------------------------------------------------- */
.gt-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 0;
}
.gt-blog-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  overflow: hidden;
}
.gt-blog-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.gt-blog-body { padding: 20px; }
.gt-blog-meta { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.gt-blog-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--charcoal); margin-bottom: 10px; }
.gt-blog-title a { text-decoration: none; color: inherit; }
.gt-blog-title a:hover { color: var(--gold); }
.gt-blog-exc { font-size: 13px; color: var(--mid); line-height: 1.8; margin-bottom: 14px; }
.gt-blog-more { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.gt-page-content { max-width: 800px; }
.gt-entry-content { font-size: 15px; line-height: 1.9; color: var(--mid); }
.gt-entry-content h1, .gt-entry-content h2, .gt-entry-content h3 { font-family: var(--serif); color: var(--charcoal); margin: 28px 0 14px; }
.gt-entry-content p { margin-bottom: 18px; }
.gt-single-post { max-width: 800px; }
.gt-single-img { margin-bottom: 36px; border: 1px solid var(--gold-border); overflow: hidden; }
.gt-single-img img { width: 100%; }
.gt-single-back { margin-top: 40px; }
.gt-single-back a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---------------------------------------------------------
   TABLET  ≥ 640px
--------------------------------------------------------- */
@media (min-width: 640px) {
  .gt-hero-btns { flex-direction: row; }
  .gt-cta-btns { flex-direction: row; }
  .gt-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .gt-coll-grid { grid-template-columns: 1fr 1fr; }
  .gt-coll-card-large { grid-column: 1 / -1; min-height: 340px; }
  .gt-contact-grid { gap: 48px; }
  .gt-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gt-about-story-grid { flex-direction: row; align-items: start; }
  .gt-about-story-text { flex: 1; }
  .gt-about-stats { flex-shrink: 0; width: 260px; }
  .gt-process-steps { flex-direction: row; align-items: flex-start; gap: 0; }
  .gt-step { flex: 1; padding: 0 24px 0 0; border-bottom: none; border-right: 1px solid var(--gold-border); }
  .gt-step:last-child { border-right: none; }
  .gt-step-arrow { display: flex; align-items: center; padding-top: 54px; color: var(--gold-border); font-size: 24px; flex-shrink: 0; }
  .gt-values-grid { flex-direction: row; }
  .gt-val-card { flex: 1; }
  .gt-why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------------------------------------------------------
   DESKTOP  ≥ 1024px
--------------------------------------------------------- */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .gt-footer { padding-bottom: 0; }
  .gt-nav { display: flex; }
  .gt-btn-wa span { display: inline; }
  .gt-btn-quote { display: flex; }
  .gt-hamburger { display: none; }
  .gt-mobile-bar { display: none; }
  .gt-wa-float { display: flex; }
  .gt-hero { padding: 80px 40px 60px; }
  .gt-hero-inner { flex-direction: row; align-items: center; gap: 60px; }
  .gt-hero-content { flex: 1; }
  .gt-hero-cards { flex: 0 0 400px; grid-template-columns: 1fr 1fr; }
  .gt-promo-band { flex-direction: row; align-items: center; padding: 80px; }
  .gt-promo-content { flex: 1; }
  .gt-promo-visual { flex-shrink: 0; padding-left: 60px; }
  .gt-promo-box-mockup { width: 200px; height: 260px; }
  .gt-contact-grid { flex-direction: row; }
  .gt-contact-info { flex: 0 0 420px; }
  .gt-contact-form-wrap { flex: 1; }
  .gt-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .gt-field-full { grid-column: 1/-1; }
  .gt-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .gt-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .gt-coll-grid { grid-template-columns: 1fr 1fr 1fr; }
  .gt-coll-card-large { grid-column: auto; }
  .gt-prod-grid { grid-template-columns: repeat(4, 1fr); }
  .gt-wc-content ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .gt-blog-grid { grid-template-columns: repeat(3, 1fr); }
  .gt-section-inner { padding: 80px 40px; }
  .gt-modal-overlay { align-items: center; padding: 20px; }
  .gt-modal { border-radius: 0; animation: gt-fade-in .25s ease; }
  @keyframes gt-fade-in { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
}
