@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap);

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

:root {
  --sage: #7A8470;
  --sage-deep: #5F6857;
  --sage-light: #B8C2AC;
  --olive: #262B22;
  --ink: #1C1F1A;
  --bone: #F4F5F1;
  --muted: #646D5E;
  --line: #E5E7EB;
  --bg: #fff;
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-style: italic;
  color: var(--sage);
}

.serif,
h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  letter-spacing: -0.01em;
  font-weight: 600;
}

sup {
  font-size: 0.4em;
  vertical-align: top;
}

sup.trade {
  font-size: 0.3em;
}

::selection {
  background: var(--sage);
  color: #fff;
}

.tgc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .tgc-container {
    padding: 0 3rem;
  }
}

.tgc-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .tgc-section {
    padding: 8rem 0;
  }
}

.pt {
  padding-top: 7rem;
}

.pb {
  padding-bottom: 5rem;
}

.center {
  text-align: center;
}

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

.small {
  font-size: 0.875rem;
  line-height: 1.625;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--muted);
}

.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eyebrow {
  font-size: 0.75rem;
  line-height: 1.333;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
}

.eyebrow.light {
  color: var(--sage-light);
}

.eyebrow.accent {
  color: var(--sage);
}

.display {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.display-2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.tgc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.tgc-btn-primary {
  background: var(--sage);
  color: #fff;
}

.tgc-btn-primary:hover {
  background: var(--sage-deep);
}

.tgc-btn-outline {
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--sage);
}

.tgc-btn-outline:hover {
  background: var(--sage);
  color: #fff;
}

.tgc-btn-outline.outline-light {
  border-color: #fff;
  color: #fff;
}

.tgc-btn-outline.outline-light:hover {
  background: #fff;
  color: var(--olive);
}

.tgc-btn.tiny {
  padding: 0.65rem 1.1rem;
  font-size: 0.62rem;
}

.tgc-btn.block {
  width: 100%;
}

.tgc-link {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.25rem 0;
}

.tgc-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.tgc-link:hover,
.tgc-link.active {
  color: var(--sage);
}

.tgc-link:hover::after,
.tgc-link.active::after {
  transform: scaleX(1);
}

.text-link {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

.text-link:hover {
  color: var(--sage);
}

.text-link.small {
  font-size: 0.7rem;
}

/* Header */
.tgc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.tgc-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-logo.dark {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}

@media (min-width: 640px) {
  .brand-text {
    display: flex;
  }
}

.brand-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.brand-title.light {
  color: #fff;
}


.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.25rem;
}

.brand-sub.light {
  color: var(--sage-light);
}

.tgc-nav {
  display: none;
  gap: 2.5rem;
}

.desktop-cta {
  display: none;
}

@media (min-width: 1024px) {
  .tgc-nav {
    display: flex;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .m-toggle {
    display: none;
  }
}

.m-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.m-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.m-toggle.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.m-toggle.open span:nth-child(2) {
  opacity: 0;
}

.m-toggle.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.m-drawer {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
}

.m-drawer.open {
  display: block;
}

.m-drawer nav {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.m-link {
  font-size: 1rem;
  font-weight: 500;
}

.m-link.active {
  color: var(--sage);
}

@media (min-width: 1024px) {

  .m-drawer,
  .m-toggle {
    display: none !important;
  }
}

/* Hero */
.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 5rem;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-image {
  position: relative;
}

.hero-image>img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--bone);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.25rem;
  max-width: 220px;
  box-shadow: 0 25px 60px -25px rgba(0, 0, 0, 0.15);
}

.hero-badge .serif {
  font-size: 1.4rem;
  line-height: 1.1;
  margin-top: 0.25rem;
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Bands */
.band {
  background: #F9FAFB;
}

.band-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .band-head {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }
}

.band-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 640px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .pillar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pillar-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  background: #fff;
  padding: 2rem;
}

.pillar-ico {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border: 1px solid var(--sage);
  color: var(--sage);
  align-items: center;
  justify-content: center;
}

.pillar-ico svg {
  width: 20px;
  height: 20px;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: var(--ink);
}

.pillar p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.625;
}

/* Row between */
.row-between {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .row-between {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* Product grid + card */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--sage);
  box-shadow: 0 20px 50px -20px rgba(122, 132, 112, 0.25);
}

.product-img {
  display: block;
  background: var(--bone);
  aspect-ratio: 4/5;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.7s;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.product-body h3 {
  font-size: 1.875rem;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.product-body .muted {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.product-body p.clamp-3 {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.625;
  flex: 1;
}

.product-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  gap: 0.5rem;
}

/* Dark band */
.dark-band {
  background: var(--olive);
  color: #fff;
}

.dark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dark-grid {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
  }
}

.dark-band h2 {
  color: #fff;
}

.dark-band em {
  color: var(--sage-light);
}

.light-muted {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.625;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.dark-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.3);
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .check-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2.5rem;
  }

  .two-col-list {
    grid-template-columns: 1fr 1fr;
  }
}

.check-list li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-list li svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0;
  color: var(--sage-light);
}

.tgc-section:not(.dark-band) .check-list li,
.product-detail .check-list li {
  color: var(--ink);
}

.tgc-section:not(.dark-band) .check-list li svg,
.product-detail .check-list li svg {
  color: var(--sage);
}

.outline-light {
  margin-top: 1rem;
}

/* CTA box */
.cta-box {
  border: 1px solid var(--line);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 4rem;
    grid-template-columns: 8fr 4fr;
  }

  .cta-box>div:last-child {
    text-align: right;
  }
}

/* About */
.about-hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.about-hero-img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-hero-img {
    aspect-ratio: 16/6;
  }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

@media (min-width: 768px) {
  .about-hero-overlay {
    padding-bottom: 5rem;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
  }
}

.two-col.align-end {
  align-items: end;
}

.two-col.align-center {
  align-items: center;
}

.two-col p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.two-col p+p {
  margin-top: 1.25rem;
}

.block-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--olive);
}

.tgc-section .check-list {
  color: var(--ink);
}

.tgc-section .check-list li {
  color: #fff;
}

/* Page head */
.page-head {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-head {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
  }
}

.detail-aside {
  position: relative;
}

@media (min-width: 1024px) {
  .detail-aside {
    position: sticky;
    top: 7rem;
    align-self: flex-start;
  }
}

.detail-img {
  background: var(--bone);
  aspect-ratio: 4/5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.detail-aside .tgc-btn {
  margin-top: 1.5rem;
}

.detail-aside .muted.center {
  margin-top: 1rem;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.detail-main header h1 {
  color: var(--ink);
}

.detail-main .lead {
  padding-top: 1rem;
  max-width: 720px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit {
  background: #fff;
  padding: 1.5rem;
}

.benefit .pillar-ico {
  border: none;
  width: auto;
  height: auto;
}

.benefit .pillar-ico svg {
  width: 18px;
  height: 18px;
}

.benefit h4 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.ingredient {
  border-left: 2px solid var(--sage);
  padding-left: 1.25rem;
}

.ingredient h4 {
  font-size: 1.25rem;
  color: var(--ink);
}

.ingredient p {
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.how-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.how-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--sage);
  line-height: 1;
  width: 2.5rem;
}

.how-list li p {
  padding-top: 0.5rem;
}

.faq-list {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.faq {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.faq summary {
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after {
  content: "+";
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--sage);
  transition: transform 0.2s;
}

.faq[open] summary::after {
  content: "−";
}

.faq-a {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.75rem;
}

.inline-cta {
  background: #F9FAFB;
  border: 1px solid var(--line);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .inline-cta {
    grid-template-columns: 1fr auto;
    padding: 2.5rem;
  }
}

.inline-cta h3 {
  font-size: 1.5rem;
  color: var(--ink);
}

.back-link {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

.back-link:hover {
  color: var(--ink);
}

/* Other products */
.other-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .other-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.other-card {
  background: #fff;
  border: 1px solid var(--line);
}

.other-card:hover {
  border-color: var(--sage);
}

.other-img {
  background: var(--bone);
  aspect-ratio: 4/5;
  overflow: hidden;
}

.other-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.7s;
}

.other-card:hover .other-img img {
  transform: scale(1.04);
}

.other-body {
  padding: 1.5rem;
}

.other-body h4 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-top: 0.4rem;
}

.other-body .muted {
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

/* Journal */
.feature-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 2rem 0 5rem;
}

@media (min-width: 1024px) {
  .feature-link {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }
}

.feature-link:hover h2 {
  color: var(--sage);
}

.feature-img {
  background: var(--bone);
  aspect-ratio: 16/10;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.feature-link:hover .feature-img img {
  transform: scale(1.05);
}

.feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.feature-body h2 {
  color: var(--ink);
  transition: color 0.3s;
}

.feature-body p {
  color: var(--muted);
  line-height: 1.7;
}

.journal-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .journal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.journal-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journal-img {
  background: var(--bone);
  aspect-ratio: 4/3;
  overflow: hidden;
}

.journal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.journal-card:hover .journal-img img {
  transform: scale(1.05);
}

.journal-card h3 {
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.25;
}

.journal-card:hover h3 {
  color: var(--sage);
}

.journal-card .muted {
  font-size: 0.92rem;
  line-height: 1.5;
}

.article {
  max-width: 800px;
  margin-top: 2.5rem;
}

.article h1 {
  color: var(--ink);
  margin-top: 1rem;
}

.article .lead {
  color: var(--muted);
  margin-top: 1.5rem;
}

.article-img {
  margin: 3rem 0;
  background: var(--bone);
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.article-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card h4 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-top: 0.5rem;
}

.related-card:hover h4 {
  color: var(--sage);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.contact-side {
  background: var(--olive);
  color: #fff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-side {
    padding: 3rem;
  }
}

.contact-side h2 {
  color: #fff;
}

.contact-side em {
  color: var(--sage-light);
}

.contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list li .eyebrow {
  margin-bottom: 0.4rem;
  display: block;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.85);
}

.contact-list a:hover {
  color: #fff;
}

.contact-foot {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-form {
    padding: 3rem;
  }
}

/* Forms */
.contact-form label,
.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form input,
.contact-form textarea,
.modal-form input,
.modal-form textarea {
  font-family: inherit;
  border: 1px solid #D1D5DB;
  padding: 0.75rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input {
  height: 48px;
}

.modal-form input {
  height: 42px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 2px rgba(122, 132, 112, 0.2);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Modal */
.tgc-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.tgc-modal.open {
  display: flex;
}

.tgc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.tgc-modal-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .tgc-modal-card {
    grid-template-columns: 4fr 8fr;
  }
}

.modal-side {
  background: var(--olive);
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.modal-side p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.modal-side .modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.15;
  margin-top: 1rem;
}

.foot-tag {
  font-size: 0.6rem;
}

.modal-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.modal-form h2 {
  font-size: 1.5rem;
  color: var(--ink);
}

.modal-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  width: 32px;
  height: 32px;
}

.modal-close:hover {
  color: var(--ink);
}

.modal-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Toasts */
.toast-stack {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sage);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  min-width: 280px;
  max-width: 360px;
}

.toast.error {
  border-left-color: #B91C1C;
}

.toast strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

/* Footer */
.tgc-footer {
  background: var(--olive);
  color: #fff;
  padding: 5rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 5fr 3fr 4fr;
  }
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 28rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.25rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sage-light);
}

.footer-contact li strong {
  color: var(--sage-light);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F9FAFB;
}

::-webkit-scrollbar-thumb {
  background: #C7CCC1;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sage);
}