/* ============================================================
   TABLES HAVE TURNED — Theme Stylesheet
   Palette: terracotta, ocean teal, sand cream, sun gold, charcoal
   ============================================================ */

:root {
  --tht-terracotta: #C75A3D;
  --tht-terracotta-dark: #A84628;
  --tht-ocean: #1E5A6B;
  --tht-ocean-dark: #14424F;
  --tht-cream: #F5EFE6;
  --tht-cream-dark: #EDE3D4;
  --tht-sun: #F5C97A;
  --tht-charcoal: #1F1F1F;
  --tht-charcoal-light: #4A4A4A;
  --tht-sage: #8FA68E;
  --tht-white: #FFFFFF;

  --tht-radius: 6px;
  --tht-radius-lg: 14px;
  --tht-shadow: 0 4px 20px rgba(31, 31, 31, 0.08);
  --tht-shadow-lg: 0 12px 40px rgba(31, 31, 31, 0.12);

  --tht-container: 1200px;
  --tht-container-narrow: 800px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--tht-charcoal);
  background: var(--tht-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--tht-terracotta);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus { color: var(--tht-terracotta-dark); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--tht-charcoal);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.2em; }

::selection { background: var(--tht-sun); color: var(--tht-charcoal); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.tht-container {
  width: 100%;
  max-width: var(--tht-container);
  margin: 0 auto;
  padding: 0 24px;
}
.tht-container-narrow {
  width: 100%;
  max-width: var(--tht-container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.tht-section { padding: 80px 0; }
.tht-section-sm { padding: 48px 0; }
.tht-section-lg { padding: 120px 0; }

.tht-bg-cream { background: var(--tht-cream); }
.tht-bg-cream-dark { background: var(--tht-cream-dark); }
.tht-bg-ocean { background: var(--tht-ocean); color: var(--tht-cream); }
.tht-bg-ocean h1, .tht-bg-ocean h2, .tht-bg-ocean h3 { color: var(--tht-cream); }
.tht-bg-charcoal { background: var(--tht-charcoal); color: var(--tht-cream); }
.tht-bg-charcoal h1, .tht-bg-charcoal h2, .tht-bg-charcoal h3 { color: var(--tht-cream); }

.tht-text-center { text-align: center; }
.tht-text-terracotta { color: var(--tht-terracotta); }

/* ============================================================
   BUTTONS
   ============================================================ */
.tht-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--tht-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
  line-height: 1.2;
}
.tht-btn-primary {
  background: var(--tht-terracotta);
  color: var(--tht-white);
  border-color: var(--tht-terracotta);
}
.tht-btn-primary:hover, .tht-btn-primary:focus {
  background: var(--tht-terracotta-dark);
  border-color: var(--tht-terracotta-dark);
  color: var(--tht-white);
  transform: translateY(-1px);
  box-shadow: var(--tht-shadow);
}
.tht-btn-secondary {
  background: transparent;
  color: var(--tht-charcoal);
  border-color: var(--tht-charcoal);
}
.tht-btn-secondary:hover, .tht-btn-secondary:focus {
  background: var(--tht-charcoal);
  color: var(--tht-cream);
}
.tht-btn-light {
  background: var(--tht-cream);
  color: var(--tht-charcoal);
  border-color: var(--tht-cream);
}
.tht-btn-light:hover, .tht-btn-light:focus {
  background: var(--tht-white);
  border-color: var(--tht-white);
  color: var(--tht-charcoal);
}

/* ============================================================
   HEADER
   ============================================================ */
.tht-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--tht-cream);
  border-bottom: 1px solid var(--tht-cream-dark);
  transition: box-shadow 0.2s ease;
}
.tht-site-header.is-scrolled { box-shadow: 0 2px 12px rgba(31, 31, 31, 0.06); }

.tht-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--tht-container);
  margin: 0 auto;
  gap: 24px;
}

.tht-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.tht-logo img { height: 56px; width: auto; }
.tht-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--tht-charcoal);
  line-height: 1;
  letter-spacing: -0.01em;
}
.tht-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tht-charcoal-light);
  margin-top: 2px;
}

.tht-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.tht-nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.tht-nav-list a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tht-charcoal);
  text-decoration: none;
  border-radius: var(--tht-radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.tht-nav-list a:hover, .tht-nav-list .current-menu-item > a {
  background: var(--tht-cream-dark);
  color: var(--tht-terracotta);
}

.tht-mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--tht-charcoal);
}
.tht-mobile-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .tht-mobile-toggle { display: block; }
  .tht-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--tht-cream);
    border-bottom: 1px solid var(--tht-cream-dark);
    padding: 12px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
  }
  .tht-nav.is-open { display: flex; }
  .tht-nav-list { flex-direction: column; gap: 0; align-items: stretch; }
  .tht-nav-list a { padding: 12px 16px; }
}

/* ============================================================
   HERO
   ============================================================ */
.tht-hero {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(135deg, var(--tht-cream) 0%, var(--tht-cream-dark) 100%);
  overflow: hidden;
}
.tht-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--tht-sun) 0%, transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
  pointer-events: none;
}
.tht-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.tht-hero h1 {
  margin-bottom: 0.4em;
}
.tht-hero h1 em {
  font-style: italic;
  color: var(--tht-terracotta);
}
.tht-hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--tht-charcoal-light);
  margin-bottom: 32px;
  max-width: 580px;
}
.tht-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.tht-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tht-terracotta);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(199, 90, 61, 0.1);
  border-radius: 100px;
}

/* Squiggle accent under hero heading - the "fun" element option A */
.tht-squiggle {
  display: inline-block;
  position: relative;
}
.tht-squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M 0,6 Q 25,0 50,6 T 100,6 T 150,6 T 200,6' fill='none' stroke='%23C75A3D' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.tht-grid {
  display: grid;
  gap: 32px;
}
.tht-grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.tht-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tht-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.tht-card {
  background: var(--tht-white);
  border-radius: var(--tht-radius-lg);
  overflow: hidden;
  box-shadow: var(--tht-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tht-card:hover { transform: translateY(-4px); box-shadow: var(--tht-shadow-lg); }

.tht-card-img {
  aspect-ratio: 4 / 3;
  background: var(--tht-cream-dark);
  overflow: hidden;
}
.tht-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tht-card:hover .tht-card-img img { transform: scale(1.04); }

.tht-card-body { padding: 24px; }
.tht-card-body h3 { margin-top: 0; margin-bottom: 8px; }
.tht-card-body p { color: var(--tht-charcoal-light); margin-bottom: 0; font-size: 15px; }

.tht-card-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tht-terracotta);
  margin-bottom: 8px;
}

/* Service card variant */
.tht-service-card {
  background: var(--tht-white);
  padding: 36px 28px;
  border-radius: var(--tht-radius-lg);
  border: 1px solid var(--tht-cream-dark);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tht-service-card:hover { border-color: var(--tht-terracotta); transform: translateY(-2px); }
.tht-service-card-icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tht-cream);
  border-radius: 50%;
  color: var(--tht-terracotta);
}
.tht-service-card-icon svg { width: 28px; height: 28px; }
.tht-service-card h3 { margin-top: 0; }

/* Founder card */
.tht-founder-card {
  text-align: center;
}
.tht-founder-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--tht-cream-dark);
  overflow: hidden;
  border: 4px solid var(--tht-cream);
  box-shadow: var(--tht-shadow);
}
.tht-founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tht-founder-card h3 { margin-bottom: 4px; }
.tht-founder-role {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tht-terracotta);
  margin: 0 0 12px;
  font-weight: 600;
}
.tht-founder-bio {
  color: var(--tht-charcoal-light);
  font-size: 15px;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.tht-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.tht-section-head .tht-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tht-terracotta);
  margin-bottom: 12px;
}
.tht-section-head h2 { margin-bottom: 16px; }
.tht-section-head p { color: var(--tht-charcoal-light); font-size: 1.1rem; margin: 0; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.tht-ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--tht-radius-lg);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: var(--tht-cream-dark);
  box-shadow: var(--tht-shadow);
}
.tht-ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.tht-ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}
.tht-ba-after-wrap .tht-ba-img {
  width: calc(100% / 0.5);
  max-width: none;
}
.tht-ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--tht-cream);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.tht-ba-handle::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tht-cream);
  border: 3px solid var(--tht-terracotta);
  box-shadow: var(--tht-shadow);
}
.tht-ba-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C75A3D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3Cpolyline points='9 18 3 12 9 6' transform='translate(12 0)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.tht-ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(31, 31, 31, 0.75);
  color: var(--tht-cream);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.tht-ba-label-before { left: 16px; }
.tht-ba-label-after { right: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.tht-site-footer {
  background: var(--tht-charcoal);
  color: var(--tht-cream);
  padding: 64px 0 24px;
  margin-top: 80px;
}
.tht-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .tht-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tht-footer-grid { grid-template-columns: 1fr; }
}
.tht-footer-grid h4 {
  color: var(--tht-cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tht-footer-grid ul {
  list-style: none;
  padding: 0; margin: 0;
}
.tht-footer-grid li { margin-bottom: 8px; }
.tht-footer-grid a {
  color: var(--tht-cream);
  opacity: 0.8;
  font-size: 15px;
  text-decoration: none;
}
.tht-footer-grid a:hover { opacity: 1; color: var(--tht-sun); }

.tht-footer-brand img { height: 80px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.95); }
.tht-footer-brand p { font-size: 15px; opacity: 0.75; max-width: 320px; }

.tht-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.tht-footer-social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(245, 239, 230, 0.1);
  border-radius: 50%;
  transition: background 0.2s ease;
}
.tht-footer-social a:hover { background: var(--tht-terracotta); }
.tht-footer-social svg { width: 18px; height: 18px; fill: currentColor; opacity: 0.95; }

.tht-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  font-size: 13px;
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* ============================================================
   FORMS
   ============================================================ */
.tht-form { max-width: 640px; }
.tht-form .tht-field { margin-bottom: 20px; }
.tht-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--tht-charcoal);
}
.tht-form label .req { color: var(--tht-terracotta); }
.tht-form input,
.tht-form textarea,
.tht-form select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--tht-charcoal);
  background: var(--tht-white);
  border: 1.5px solid var(--tht-cream-dark);
  border-radius: var(--tht-radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tht-form input:focus,
.tht-form textarea:focus,
.tht-form select:focus {
  outline: 0;
  border-color: var(--tht-terracotta);
  box-shadow: 0 0 0 3px rgba(199, 90, 61, 0.15);
}
.tht-form textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   PORTFOLIO ITEM PAGE
   ============================================================ */
.tht-portfolio-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) {
  .tht-portfolio-hero { grid-template-columns: 1fr; }
}
.tht-portfolio-meta { font-size: 14px; color: var(--tht-charcoal-light); }
.tht-portfolio-meta dt {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  margin-top: 14px;
  color: var(--tht-charcoal);
}
.tht-portfolio-meta dd { margin: 4px 0 0; }

/* ============================================================
   BLOG / SINGLE POST
   ============================================================ */
.tht-post-meta {
  font-size: 14px;
  color: var(--tht-charcoal-light);
  margin-bottom: 24px;
}
.tht-post-content {
  font-size: 17px;
  line-height: 1.75;
}
.tht-post-content h2 { margin-top: 1.6em; }
.tht-post-content h3 { margin-top: 1.4em; }
.tht-post-content blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--tht-terracotta);
  background: var(--tht-cream-dark);
  font-style: italic;
  color: var(--tht-charcoal);
}
.tht-post-content img { border-radius: var(--tht-radius); margin: 1em 0; }
.tht-post-content ul, .tht-post-content ol { padding-left: 1.5em; margin: 1em 0; }
.tht-post-content li { margin-bottom: 0.4em; }

/* ============================================================
   PAGINATION
   ============================================================ */
.tht-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0 0;
}
.tht-pagination a, .tht-pagination span {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border-radius: var(--tht-radius);
  font-weight: 600;
  text-decoration: none;
  background: var(--tht-white);
  color: var(--tht-charcoal);
  border: 1px solid var(--tht-cream-dark);
}
.tht-pagination .current { background: var(--tht-terracotta); color: var(--tht-white); border-color: var(--tht-terracotta); }
.tht-pagination a:hover { border-color: var(--tht-terracotta); color: var(--tht-terracotta); }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.tht-timeline { max-width: 800px; margin: 0 auto; }
.tht-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--tht-cream-dark);
}
.tht-timeline-item:last-child { border-bottom: 0; }
.tht-timeline-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--tht-terracotta);
  line-height: 1;
}
.tht-timeline-item h3 { margin-top: 0; }

/* ============================================================
   CONTACT GRID (page)
   ============================================================ */
.tht-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
@media (max-width: 800px) { .tht-contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.tht-contact-info-block { margin-bottom: 24px; }
.tht-contact-info-block h4 {
  font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tht-terracotta);
  margin-bottom: 6px;
}
.tht-contact-info-block p { margin: 0; }

/* ============================================================
   CTA BLOCK
   ============================================================ */
.tht-cta {
  background: var(--tht-ocean);
  color: var(--tht-cream);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tht-cta::after {
  content: "";
  position: absolute;
  bottom: -50px; left: -50px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--tht-sun) 0%, transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
}
.tht-cta h2 { color: var(--tht-cream); margin-bottom: 16px; }
.tht-cta p { color: var(--tht-cream); opacity: 0.9; max-width: 600px; margin: 0 auto 28px; font-size: 1.1rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  word-wrap: normal !important;
}
.tht-mt-0 { margin-top: 0 !important; }
.tht-mb-0 { margin-bottom: 0 !important; }

/* ============================================================
   WORDPRESS CORE
   ============================================================ */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.9em; color: var(--tht-charcoal-light); margin-top: 0.4em; text-align: center; }

/* Gutenberg blocks */
.wp-block-image figcaption { font-size: 0.9em; color: var(--tht-charcoal-light); }
.wp-block-quote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--tht-terracotta);
  background: var(--tht-cream-dark);
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce { padding: 60px 0; }
.woocommerce .tht-container { max-width: var(--tht-container); }
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--tht-terracotta) !important;
	color: var(--tht-white) !important;
	border-radius: var(--tht-radius);
	padding: 12px 24px;
	font-weight: 600;
	font-family: var(--font-body);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 14px;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--tht-terracotta-dark) !important;
}
.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--tht-terracotta) !important;
}
.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--tht-terracotta) !important;
}
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--tht-charcoal) !important;
	font-family: var(--font-display);
	font-weight: 600;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .tht-site-header, .tht-site-footer, .tht-cta { display: none; }
  body { background: white; }
}
