/*
Theme Name: Tre Oro
Description: Consolidated premium CSS for the Tre Oro custom WordPress theme.
Author: EC Designs
Version: 1.4
*/

/* =========================================================
   TRE ORO — CORE VARIABLES
   ========================================================= */

:root {
  --cream: #f6f0e3;
  --cream-2: #ece0c9;
  --ivory: #fbf7ee;
  --terracotta: #be6438;
  --terracotta-2: #9c4e29;
  --olive: #474b31;
  --olive-2: #363924;
  --espresso: #211913;
  --black: #0e0b08;
  --gold-1: #f1d48b;
  --gold-2: #c99a3e;
  --gold-3: #8a6a22;
  --ink: #2a2118;
  --muted: #5a4f40;
  --line: rgba(42, 33, 24, 0.12);
  --line-light: rgba(246, 240, 227, 0.12);
  --shadow: 0 20px 50px rgba(20, 15, 10, 0.12);
  --shadow-soft: 0 18px 45px rgba(20, 15, 10, 0.09);
  --container: 1180px;
  --pad: clamp(20px, 4vw, 32px);
  --section: clamp(76px, 9vw, 116px);
  --ease: cubic-bezier(0.16, 0.8, 0.4, 1);
}

/* =========================================================
   RESET / BASE
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.admin-bar header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.12;
}

p {
  margin-bottom: 0;
}

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

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(201, 154, 62, 0.28);
}

/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

section {
  padding: var(--section) 0;
}

.section-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head-center .eyebrow {
  justify-content: center;
}

.section-head-center h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-2);
  font-weight: 600;
  margin-bottom: 18px;
}


.gold-text {
  background: linear-gradient(
    120deg,
    var(--gold-3) 0%,
    var(--gold-1) 45%,
    var(--gold-2) 70%,
    var(--gold-1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    background 0.32s var(--ease),
    color 0.32s var(--ease),
    border-color 0.32s var(--ease);
}

.btn-primary,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
  background: linear-gradient(120deg, var(--gold-2), var(--gold-1));
  color: var(--espresso);
  border-color: rgba(138, 106, 34, 0.3);
}

.btn-primary:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 154, 62, 0.25);
}

.btn-outline {
  border-color: rgba(246, 240, 227, 0.35);
  color: var(--cream);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.btn-dark:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(14, 11, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

header.home-header {
  background: linear-gradient(180deg, rgba(14, 11, 8, 0.38), rgba(14, 11, 8, 0));
}

header.home-header.scrolled,
header.scrolled {
  background: rgba(14, 11, 8, 0.92);
  padding: 13px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

nav {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
}

.brand-pillars {
  width: 28px;
  height: auto;
  display: block;
}


.brand .word {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0 3px;
  font-size: 12px;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  color: rgba(246, 240, 227, 0.82);
  font-weight: 600;
  transition: color 0.28s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--gold-1);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold-1);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after {
  width: 100%;
}

.nav-links .nav-cta,
.nav-cta {
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid var(--gold-2);
  border-radius: 2px;
  color: var(--espresso) !important;
  background: linear-gradient(120deg, var(--gold-2), var(--gold-1));
  font-size: 11.5px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.nav-links .nav-cta:hover,
.nav-cta:hover {
  color: var(--espresso) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201, 154, 62, 0.24);
}

.nav-links .nav-cta::after,
.nav-cta::after {
  display: none;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 240, 227, 0.18);
  border-radius: 2px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

/* =========================================================
   HOME HERO — REAL IMAGE VERSION
   ========================================================= */

.hero-luxury {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(20, 14, 8, 0.82) 0%,
      rgba(20, 14, 8, 0.58) 38%,
      rgba(20, 14, 8, 0.22) 100%
    ),
    url("https://treoro.ca/wp-content/uploads/2026/07/hero1.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(241, 212, 139, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(14, 11, 8, 0.1), rgba(14, 11, 8, 0.18));
  pointer-events: none;
  z-index: 1;
}

.hero-bg,
.hero-products {
  display: none !important;
}

.hero-luxury-inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 650px;
  color: var(--cream);
}

.hero-kicker {
  font-size: 11.5px;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--gold-1);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-copy h1,
.hero-luxury h1 {
  color: var(--cream);
  font-size: clamp(62px, 8vw, 126px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-script {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.1;
  color: var(--gold-1);
  margin-top: 26px;
}

.hero-description {
  max-width: 470px;
  margin-top: 28px;
  color: rgba(246, 240, 227, 0.84);
  font-size: 15.5px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  border-bottom: 1px solid rgba(246, 240, 227, 0.72);
  padding-bottom: 5px;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(246, 240, 227, 0.46);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(201, 154, 62, 0.7), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

/* =========================================================
   INTERIOR PAGE HERO
   ========================================================= */

.page-hero {
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(201, 154, 62, 0.14), transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--espresso) 100%);
  padding: 190px 24px 90px;
  text-align: center;
}

.page-hero .hero-mark {
  display: block;
  width: 44px;
  height: auto;
  margin: 0 auto 22px;
}

.page-hero .eyebrow {
  justify-content: center;
  color: var(--gold-1);
}

.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  color: var(--cream);
}

.page-hero p {
  max-width: 600px;
  margin: 20px auto 0;
  color: rgba(246, 240, 227, 0.72);
  font-size: 16px;
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 240, 227, 0.4);
  margin-top: 14px;
}

.breadcrumb a {
  color: rgba(246, 240, 227, 0.6);
}

.breadcrumb a:hover {
  color: var(--gold-1);
}

/* =========================================================
   REVEAL ANIMATIONS — PREMIUM / SUBTLE
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  will-change: transform, opacity;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.tilt-target {
  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out;
}


/* =========================================================
   THREE GOLDS — SHARED COMPONENT
   Used on both the Homepage and About page.
   ========================================================= */

.pillars-section {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  padding-top: clamp(90px, 9vw, 120px);
  padding-bottom: clamp(100px, 10vw, 135px);
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.36),
      transparent 42%
    );
  pointer-events: none;
}

.pillars-section .container {
  position: relative;
  z-index: 1;
}

.pillars-head {
  max-width: 920px;
  margin: 0 auto clamp(64px, 7vw, 88px);
  text-align: center;
}

.pillars-head .eyebrow {
  justify-content: center;
}

.pillars-head h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.pillars-intro {
  max-width: 590px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.pillars {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(60px, 8vw, 110px);
}

.pillar {
  padding-inline: 0;
  text-align: center;
}

.pillar h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 2.5vw, 34px);
}

.pillar p {
  max-width: 320px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Subtle interactive polish */

.pillar img.bars,
.pillar h3 {
  transition:
    transform 0.35s var(--ease),
    color 0.35s var(--ease);
}

.pillar:hover img.bars {
  transform: translateY(-6px);
}

.pillar:hover h3 {
  color: var(--gold-3);
}

/* Tablet */

@media (max-width: 920px) {
  .pillars {
    width: min(100%, 680px);
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .pillar p {
    max-width: 460px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .pillars-section {
    padding-top: 74px;
    padding-bottom: 82px;
  }

  .pillars-head {
    margin-bottom: 52px;
  }

  .pillars-head h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .pillars {
    gap: 50px;
  }

}

/* =========================================================
   PRODUCT / TEASER CARDS
   ========================================================= */

.products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.products-head h2 {
  font-size: clamp(34px, 4vw, 50px);
  max-width: 560px;
}

.products-head p {
  color: #5a4f40;
  max-width: 410px;
  font-size: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card,
.teaser-card {
  background: var(--cream-2);
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: 6px;
  padding: clamp(30px, 4vw, 40px);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.product-card {
  background: var(--cream);
}

.product-card:hover,
.teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(201, 154, 62, 0.34);
}

.product-card .card-thumb,
.ing-card .card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.product-card .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-3);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.product-card h3,
.teaser-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.product-card .ing-label {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-2);
  font-weight: 600;
  margin: 18px 0 8px;
}

.product-card p,
.product-card p.ing,
.teaser-card p {
  color: #5a4f40;
  font-size: 15px;
}

.teaser-card p {
  margin-bottom: 20px;
}

.teaser-card a,
.blog-card a.read-more {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-2);
  font-weight: 700;
}

.scent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.scent-chips span {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--cream-2);
  color: var(--ink);
  border: 1px solid var(--line);
}

.coming-soon {
  margin-top: 60px;
  background: var(--espresso);
  border-radius: 8px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.coming-soon .label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-1);
  white-space: nowrap;
}

.coming-soon ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.coming-soon li {
  color: rgba(246, 240, 227, 0.75);
  font-size: 14.5px;
  position: relative;
  padding-left: 16px;
}

.coming-soon li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-2);
}


.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* =========================================================
   ABOUT PAGE — LAYOUT, INGREDIENT SHOWCASE & QUOTE PANELS
   ========================================================= */

.about-story-section,
.about-meaning-section,
.about-audience-section {
  padding: 92px 0;
}

.about-audience-section {
  padding-bottom: 78px;
}

.about-story-section .about-grid,
.about-meaning-section .about-grid,
.about-audience-section .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.about-story-section .about-copy,
.about-meaning-section .about-copy,
.about-audience-section .about-copy {
  min-width: 0;
}

.about-story-section .about-panel,
.about-meaning-section .about-panel,
.about-audience-section .about-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 280px;
  margin: 0;
  padding: clamp(42px, 5vw, 62px);
  overflow: hidden;
  border-radius: 6px;
  background: var(--olive);
  color: var(--ivory);
  box-shadow: 0 22px 50px rgba(20, 15, 10, 0.14);
}

.about-story-section .about-panel::after,
.about-meaning-section .about-panel::after,
.about-audience-section .about-panel::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(212, 171, 71, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.about-story-section .about-panel .bars,
.about-meaning-section .about-panel .bars,
.about-audience-section .about-panel .bars {
  width: 24px;
  height: auto;
  margin-bottom: 24px;
}

.about-story-section .about-panel blockquote,
.about-meaning-section .about-panel blockquote,
.about-audience-section .about-panel blockquote {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 0 22px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(23px, 2.4vw, 31px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.about-story-section .about-panel cite,
.about-meaning-section .about-panel cite,
.about-audience-section .about-panel cite {
  position: relative;
  z-index: 1;
  color: var(--gold-2);
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* About ingredient showcase */

.about-ingredients-showcase {
  padding: 90px 0 72px;
  background: var(--cream);
}

.about-ingredients-showcase .container {
  display: block;
}

.about-ingredients-showcase .section-intro {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.about-ingredients-showcase .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--terracotta-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.about-ingredients-showcase h2 {
  margin-bottom: 24px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5vw, 69px);
  line-height: 1.1;
}

.about-ingredients-showcase p {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.about-ingredients-showcase .ingredient-hero-image {
  width: 100%;
  margin-top: clamp(48px, 6vw, 70px);
  margin-bottom: 32px;
}

.about-ingredients-showcase .ingredient-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.14);
}

/* About image caption */

.about-divider {
  max-width: 700px;
  margin: 28px auto 52px;
  text-align: center;
}

.about-divider h3 {
  margin: 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-divider h3::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  margin: 16px auto 0;
  background: var(--gold-2);
}

@media (max-width: 820px) {
  .about-story-section,
  .about-meaning-section,
  .about-audience-section {
    padding: 68px 0;
  }

  .about-ingredients-showcase {
    padding: 72px 0 58px;
  }

  .about-divider {
    margin: 24px auto 40px;
  }

  .about-story-section .about-grid,
  .about-meaning-section .about-grid,
  .about-audience-section .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-story-section .about-panel,
  .about-meaning-section .about-panel,
  .about-audience-section .about-panel {
    max-width: 620px;
  }
}

/* =========================================================
   SINGLE PRODUCT PAGE — COMPACT EDITORIAL LAYOUT
   Stable image sizing, tighter product information
   ========================================================= */

.single-product-page {
  padding: 112px 0 90px;
  background: var(--ivory);
}

.single-product-layout {
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(54px, 7vw, 88px);
  align-items: start;
}

/* ---------- Product image ---------- */

.single-product-gallery {
  position: relative;
  min-width: 0;
  height: 100%;
}

.single-product-image-wrap {
  position: sticky;
  top: 105px;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--cream-2);
}

.single-product-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

/* ---------- Product details ---------- */

.single-product-details {
  min-width: 0;
  padding-top: 4px;
}

.single-product-status {
  margin-bottom: 18px;
  color: var(--terracotta);
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.single-product-title {
  max-width: 650px;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 5.6vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.single-product-tagline {
  margin: 0 0 28px;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.3vw, 31px);
  font-style: italic;
  line-height: 1.25;
}

.single-product-intro {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
}

.single-product-divider {
  width: 100%;
  height: 1px;
  margin: 34px 0 36px;
  background: linear-gradient(
    90deg,
    rgba(201, 154, 62, 0.7),
    rgba(42, 33, 24, 0.06)
  );
}

/* ---------- Product sections ---------- */

.single-product-section + .single-product-section {
  margin-top: 32px;
}

.single-product-label {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

/* Ingredients */

.single-product-ingredients {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-product-ingredients li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.single-product-ingredients li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 1px;
  width: 5px;
  height: 5px;
  background: var(--gold-2);
  transform: rotate(45deg);
}

/* Scents */

.single-product-scent-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.single-product-scent-grid span {
  padding: 10px 15px;
  border: 1px solid rgba(201, 154, 62, 0.48);
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
}

/* Actions */

.single-product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.single-product-actions .btn {
  min-width: 235px;
}

.single-product-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--terracotta-2);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.single-product-back span {
  transition: transform 0.3s var(--ease);
}

.single-product-back:hover span {
  transform: translateX(-5px);
}

/* ---------- Tablet ---------- */

@media (max-width: 920px) {
  .single-product-page {
    padding-top: 104px;
  }

  .single-product-layout {
    width: min(100% - 36px, 720px);
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .single-product-image-wrap {
    position: relative;
    top: auto;
    max-width: 620px;
  }

  .single-product-image {
    aspect-ratio: 4 / 3;
  }

  .single-product-details {
    padding-top: 0;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 600px) {
  .single-product-page {
    padding: 92px 0 70px;
  }

  .single-product-layout {
    width: min(100% - 28px, 720px);
    gap: 34px;
  }

  .single-product-image {
    aspect-ratio: 4 / 5;
  }

  .single-product-title {
    margin-bottom: 15px;
    font-size: clamp(46px, 14vw, 60px);
  }

  .single-product-tagline {
    margin-bottom: 23px;
    font-size: 26px;
  }

  .single-product-intro {
    font-size: 15.5px;
  }

  .single-product-divider {
    margin: 30px 0;
  }

  .single-product-ingredients {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .single-product-section + .single-product-section {
    margin-top: 30px;
  }

  .single-product-scent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .single-product-scent-grid span {
    padding: 10px 8px;
    text-align: center;
  }

  .single-product-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
  }

  .single-product-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .single-product-back {
    justify-content: center;
  }
}

/* =========================================================
   INGREDIENTS PAGE — OUR STANDARD SECTION
   ========================================================= */

.ingredients-standard-section .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.ingredients-standard-section .about-grid > div:first-child {
  min-width: 0;
}

.ingredients-standard-section .about-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  padding: clamp(42px, 5vw, 62px);
  overflow: hidden;
  border-radius: 6px;
  background: var(--olive);
  color: var(--ivory);
  box-shadow: 0 22px 50px rgba(20, 15, 10, 0.14);
}

.ingredients-standard-section .about-panel::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(212, 171, 71, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.ingredients-standard-section .about-panel .bars {
  width: 24px;
  height: auto;
  margin-bottom: 24px;
}

.ingredients-standard-section .about-panel blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(23px, 2.4vw, 31px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.ingredients-standard-section .about-panel cite {
  position: relative;
  z-index: 1;
  color: var(--gold-2);
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


@media (max-width: 820px) {
  .ingredients-standard-section .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-story-section .about-panel,
  .about-meaning-section .about-panel,
  .about-audience-section .about-panel,
  .ingredients-standard-section .about-panel {
    max-width: 620px;
  }
}



/* =========================================================
   PRODUCTS PAGE — EDITORIAL SPLIT PANELS
   Image and content displayed side by side.
   ========================================================= */

.products-editorial {
  background: var(--ivory);
}

.products-editorial .container {
  width: min(100% - 40px, 1220px);
}

.products-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* Individual product panel */

.editorial-product {
  min-width: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: 3px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.editorial-product-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 390px;
  height: 100%;
  color: inherit;
}

/* Product image */

.editorial-product-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--cream-2);
}

.editorial-product-image {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

/* Product content */

.editorial-product-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 50px);
}

.editorial-product-status {
  margin-bottom: 20px;
  color: var(--terracotta);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.editorial-product-title {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.08;
  text-wrap: balance;
  transition: color 0.35s var(--ease);
}

.editorial-product-description {
  display: -webkit-box;
  margin-bottom: 24px;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.editorial-product-scents {
  margin-bottom: 24px;
}

.editorial-product-scents-label {
  display: block;
  margin-bottom: 7px;
  color: var(--terracotta-2);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-product-scents p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.editorial-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-product-cta span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.35s var(--ease);
}

/* Hover interaction */

.editorial-product:hover {
  transform: translateY(-5px);
  border-color: rgba(190, 100, 56, 0.24);
  box-shadow: 0 22px 46px rgba(20, 15, 10, 0.09);
}

.editorial-product:hover .editorial-product-image {
  transform: scale(1.035);
}

.editorial-product:hover .editorial-product-title {
  color: var(--gold-3);
}

.editorial-product:hover .editorial-product-cta span {
  transform: translateX(6px);
}


/* Expanding collection strip */

.products-editorial .coming-soon {
  margin-top: 58px;
}

/* Smaller desktop screens */

@media (max-width: 1180px) {
  .products-editorial-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin-inline: auto;
  }

  .editorial-product-link {
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
  }

  .editorial-product-image {
    min-height: 360px;
  }

  
}

/* Tablet and mobile */

@media (max-width: 760px) {
  .editorial-product-link {
    grid-template-columns: 1fr;
  }

  .editorial-product-media,
  .editorial-product-content {
    order: initial;
  }

  .editorial-product-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .editorial-product-content {
    min-height: 300px;
  }
}

/* =========================================================
   INGREDIENTS
   ========================================================= */

.ingredients-section {
  background: var(--olive-2);
  color: var(--cream);
}

.ingredients-section .eyebrow {
  font-size:.8rem;
    letter-spacing:.18em;
    font-weight:700;
    text-transform:uppercase;
    color:var(--olive);
}


.ingredients-section h2 {
  color: var(--cream);
  font-size: clamp(34px, 4vw, 50px);
  max-width: 600px;
}

.ingredients-section > .container > p.lead {
  color: rgba(246, 240, 227, 0.7);
  max-width: 600px;
  margin-top: 20px;
  font-size: 16px;
}

.ing-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: rgba(246, 240, 227, 0.1);
  border: 1px solid rgba(246, 240, 227, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.ing-card p {
  color: rgba(246, 240, 227, 0.65);
  font-size: 13.5px;
}

/* =========================================================
   TESTIMONIALS / FAQ
   ========================================================= */

.testi-head,
.faq-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.testi-head h2,
.faq-head h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-card {
  background: var(--cream-2);
  border-radius: 8px;
  padding: 40px 32px;
}

.testi-card .card-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.testi-card .quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  color: var(--gold-2);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}

.testi-card p.quote {
  font-size: 16px;
  color: #4b4235;
  margin-bottom: 24px;
  min-height: 110px;
}

.testi-card .who {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--terracotta-2);
  font-weight: 700;
  text-transform: uppercase;
}

.testi-note {
  text-align: center;
  margin-top: 34px;
  font-size: 12.5px;
  color: #8a8070;
  font-style: italic;
}

.faq-section {
  background: var(--cream-2);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 26px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--ink);
}

.faq-q .plus {
  font-size: 24px;
  color: var(--terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q .plus {
  transform: rotate(135deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a p {
  padding: 0 4px 26px;
  color: #5a4f40;
  font-size: 15px;
  max-width: 660px;
}

/* =========================================================
   CTA / CONTACT
   ========================================================= */

.cta-band {
  background: linear-gradient(160deg, var(--olive) 0%, var(--olive-2) 100%);
  color: var(--cream);
  text-align: center;
  padding: clamp(76px, 8vw, 96px) 24px;
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 18px;
}

.cta-band p {
  color: rgba(246, 240, 227, 0.7);
  max-width: 520px;
  margin: 0 auto 34px;
  font-size: 15.5px;
}

.contact-section {
  background: linear-gradient(180deg, var(--espresso), var(--black));
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 6vw, 70px);
}

.contact-grid h2 {
  color: var(--cream);
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 20px;
}

.contact-grid .eyebrow {
  color: var(--gold-1);
}


.contact-grid > div:first-child p {
  color: rgba(246, 240, 227, 0.68);
  font-size: 15.5px;
  margin-bottom: 34px;
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.info-row .k {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-1);
  width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
}

.info-row .v {
  color: rgba(246, 240, 227, 0.85);
  font-size: 15px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.socials span,
.socials a {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 240, 227, 0.4);
  border: 1px solid rgba(246, 240, 227, 0.15);
  padding: 9px 16px;
  border-radius: 20px;
}

.form-panel {
  background: rgba(246, 240, 227, 0.04);
  border: 1px solid rgba(246, 240, 227, 0.12);
  border-radius: 10px;
  padding: clamp(30px, 4vw, 44px);
}

.form-row {
  margin-bottom: 22px;
}

.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 240, 227, 0.6);
  margin-bottom: 9px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: rgba(246, 240, 227, 0.06);
  border: 1px solid rgba(246, 240, 227, 0.18);
  border-radius: 4px;
  padding: 13px 15px;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 14.5px;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 1px solid var(--gold-1);
  border-color: var(--gold-1);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 12px;
  color: rgba(246, 240, 227, 0.4);
  margin-top: 14px;
}

.newsletter-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.newsletter-row input {
  flex: 1;
}

.form-status {
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 22px;
}

.form-status.success {
  background: rgba(71, 75, 49, 0.14);
  color: var(--olive);
  border: 1px solid rgba(71, 75, 49, 0.3);
}

.form-status.error {
  background: rgba(190, 100, 56, 0.12);
  color: var(--terracotta-2);
  border: 1px solid rgba(190, 100, 56, 0.3);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* =========================================================
   BLOG / SINGLE / ARCHIVE
   ========================================================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.blog-card {
  background: var(--cream-2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.blog-card .thumb,
.blog-card .thumb-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card .thumb-placeholder {
  background: linear-gradient(160deg, var(--olive), var(--olive-2));
}

.blog-card .body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .meta {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-2);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.blog-card p {
  color: #4b4235;
  font-size: 15px;
  margin-bottom: 18px;
  flex: 1;
}

.single-post-content {
  max-width: 780px;
  margin: 0 auto;
}

.single-post-content .post-thumb {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 44px;
}

.single-post-content .post-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-2);
  margin-bottom: 14px;
}

.single-post-content h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 26px;
}

.single-post-content .entry-content {
  font-size: 17px;
  color: #3c342a;
}

.single-post-content .entry-content p {
  margin-bottom: 22px;
}

.single-post-content .entry-content h2 {
  font-size: 32px;
  margin: 44px 0 18px;
}

.single-post-content .entry-content h3 {
  font-size: 25px;
  margin: 36px 0 16px;
}

.single-post-content .entry-content img {
  border-radius: 8px;
  margin: 28px 0;
}

.single-post-content .entry-content blockquote {
  border-left: 3px solid var(--gold-2);
  padding-left: 22px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin: 30px 0;
}

.single-post-content .entry-content ul,
.single-post-content .entry-content ol {
  margin: 0 0 22px 22px;
  list-style: initial;
}

.post-tags {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.post-tags a {
  color: var(--terracotta-2);
  margin-right: 10px;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.post-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  max-width: 45%;
}

.post-nav .next {
  text-align: right;
  margin-left: auto;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 13px;
}

.pagination .current {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.pagination a:hover {
  border-color: var(--gold-2);
  color: var(--terracotta-2);
}

/* =========================================================
   404 / COMMENTS / EMPTY
   ========================================================= */

.error-404-section {
  text-align: center;
  padding: 220px 24px 140px;
}

.error-404-section .code {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(90px, 12vw, 130px);
  line-height: 1;
  color: var(--gold-2);
}

.error-404-section h1 {
  font-size: 34px;
  margin: 10px 0 16px;
}

.error-404-section p {
  color: #4b4235;
  margin-bottom: 32px;
}

.empty-note {
  color: #7a6f5e;
  font-size: 14.5px;
  padding: 30px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 6px;
}

.comments-area {
  max-width: 780px;
  margin: 70px auto 0;
}

.comments-area .comment-list {
  list-style: none;
}

.comments-area .comment {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.comments-area .comment-author {
  font-weight: 600;
  margin-bottom: 6px;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--black);
  color: rgba(246, 240, 227, 0.55);
  padding: 50px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(246, 240, 227, 0.08);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(246, 240, 227, 0.55);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================================
   PAGE TRANSITION CURTAIN
   ========================================================= */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  display: flex;
}

.page-transition .t-bar {
  flex: 1;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      #fff8dc 0%,
      #f7d98c 18%,
      #d6a445 40%,
      #8f6820 55%,
      #d4a54a 75%,
      #fff5d6 100%
    );
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
  backface-visibility: hidden;
}

.page-transition .t-bar:not(:last-child) {
  margin-right: -1px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .brand .word {
    font-size: 19px;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 920px) {
  section {
    padding: 72px 0;
  }

  nav {
    width: min(100% - 32px, var(--container));
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100vh;
    background:
      radial-gradient(circle at 50% 0%, rgba(201, 154, 62, 0.11), transparent 35%),
      var(--espresso);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 86px 42px 42px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 45px rgba(0, 0, 0, 0.25);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-links .nav-cta,
  .nav-cta {
    margin-top: 8px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .pillars,
  .teaser-grid,
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .ing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-luxury {
    min-height: 92vh;
    padding: 132px 0 82px;
    background-position: center center;
  }

  .hero-luxury::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(14, 11, 8, 0.1);
    z-index: 1;
  }

  .hero-kicker {
    letter-spacing: 0.34em;
  }

  .hero-copy h1,
  .hero-luxury h1 {
    font-size: clamp(58px, 15vw, 96px);
  }
}

@media (max-width: 600px) {
  .container,
  .hero-luxury-inner {
    width: min(100% - 28px, var(--container));
  }

  header {
    padding: 14px 0;
  }

  .brand {
    gap: 12px;
  }

  .brand-pillars {
    width: 24px;
  }

  .brand .word {
    font-size: 17px;
    letter-spacing: 0.16em;
  }

  .hero-luxury {
    min-height: 88vh;
    padding: 122px 0 70px;
    background-image:
      linear-gradient(
        90deg,
        rgba(20, 14, 8, 0.86) 0%,
        rgba(20, 14, 8, 0.7) 48%,
        rgba(20, 14, 8, 0.36) 100%
      ),
      url("https://treoro.ca/wp-content/uploads/2026/07/hero1.jpg");
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 0.2em;
    line-height: 1.8;
  }

  .hero-copy h1,
  .hero-luxury h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  .hero-script {
    font-size: 30px;
  }

  .hero-description {
    font-size: 14.5px;
    max-width: 92%;
  }

  .hero-btns {
    align-items: stretch;
  }

  .btn,
  .wp-block-button__link,
  button[type="submit"],
  input[type="submit"] {
    width: 100%;
    padding-inline: 20px;
  }

  .coming-soon {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 26px;
  }

  .ing-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-nav {
    flex-direction: column;
  }

  .post-nav a {
    max-width: 100%;
  }

  .post-nav .next {
    text-align: left;
    margin-left: 0;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .page-transition {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   SVG PILLAR LOGOS
   ========================================================= */

/* Interior hero mark after page-hero.php replacement */
.page-hero img.hero-mark {
  display: block !important;
  width: 44px !important;
  height: 52px !important;
  object-fit: contain !important;
  margin: 0 auto 22px !important;
}

/* SVG icons used inside eyebrow labels */
.eyebrow img.bars {
  display: inline-block !important;
  width: 18px !important;
  height: 20px !important;
  object-fit: contain !important;
  margin-right: 2px !important;
  flex-shrink: 0 !important;
}

/* SVG icons used inside dark quote cards */
.about-panel img.bars {
  display: block !important;
  width: 34px !important;
  height: 42px !important;
  object-fit: contain !important;
  margin: 0 0 28px 0 !important;
}

/* SVG icons used in the Three Golds section */
.pillar img.bars {
  display: block !important;
  width: 58px !important;
  height: 66px !important;
  object-fit: contain !important;
  margin: 0 auto 24px !important;
}


.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-pillars {
  display: block;
  width: auto;
  height: 24px;
  flex-shrink: 0;
}

.footer-brand .word {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .footer-pillars {
    height: 21px;
  }

  .footer-brand .word {
    font-size: 17px;
    letter-spacing: 0.18em;
  }
}

/* =========================================================
   HOMEPAGE
   ========================================================= */

/* ---------------------------------------------------------
   Homepage Hero
   --------------------------------------------------------- */

.home .hero-luxury {
  min-height: 100svh;
  padding-top: clamp(145px, 15vh, 190px);
  padding-bottom: clamp(90px, 10vh, 125px);
}

.home .hero-luxury-inner {
  width: min(100% - 48px, 1220px);
}

.home .hero-copy {
  max-width: 680px;
}

.home .hero-kicker {
  margin-bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.42em;
}

.home .hero-copy h1 {
  max-width: 680px;
  font-size: clamp(64px, 8.2vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 35px rgba(14, 11, 8, 0.2);
}

.home .hero-script {
  margin-top: 25px;
  font-size: clamp(29px, 3.6vw, 44px);
}

.home .hero-description {
  max-width: 490px;
  margin-top: 27px;
  font-size: 15.5px;
  line-height: 1.8;
}

.home .hero-btns {
  margin-top: 40px;
  gap: 24px;
}

.home .hero-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border-bottom: 0;
}

.home .hero-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.home .hero-link:hover::after {
  transform: scaleX(1);
}

/* ---------------------------------------------------------
   Homepage Shared Section Headings
   --------------------------------------------------------- */

.home .section-head-center {
  max-width: 740px;
  margin-bottom: clamp(48px, 6vw, 70px);
}

.home .section-head-center .eyebrow {
  margin-bottom: 20px;
}

.home .section-head-center h2 {
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* ---------------------------------------------------------
   Homepage Philosophy / Story
   --------------------------------------------------------- */

.home .home-story {
  position: relative;
  padding-top: clamp(90px, 10vw, 125px);
  padding-bottom: clamp(90px, 10vw, 125px);
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 154, 62, 0.08), transparent 30%),
    var(--cream);
}

.home .home-story .about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.85fr);
  gap: clamp(60px, 8vw, 105px);
  align-items: start;
}

.home .home-story-copy {
  max-width: 570px;
}

.home .home-story-copy > p:first-child {
  max-width: 540px;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(29px, 3.2vw, 40px);
  line-height: 1.27;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.home .home-story-copy > p:nth-child(2) {
  max-width: 500px;
  margin-bottom: 24px;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
}

.home .home-story-principles {
  max-width: 500px;
  margin-bottom: 30px !important;
  padding-left: 20px;
  border-left: 2px solid var(--terracotta);
  font-size: 14px !important;
  line-height: 1.9 !important;
  color: var(--muted) !important;
}

.home .home-story-button {
  margin-top: 0;
}

.home .home-story .about-panel {
  width: 100%;
  min-height: 330px;
  margin-top: 8px;
  padding: clamp(46px, 5vw, 58px);
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(241, 212, 139, 0.1);
  box-shadow: 0 30px 70px rgba(20, 15, 10, 0.14);
}

.home .brand-promise {
  justify-content: flex-start;
}

.home .brand-promise-label {
  margin-bottom: 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--cream);
}

.home .brand-promise-list {
  display: grid;
  gap: 16px;
}

.home .brand-promise-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(246, 240, 227, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.home .brand-promise-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-1);
  font-size: 13px;
  font-weight: 700;
}


/* ---------------------------------------------------------
   Homepage Collection
   --------------------------------------------------------- */

.home .home-collection {
  position: relative;
  padding-top: clamp(90px, 10vw, 125px);
  padding-bottom: clamp(90px, 10vw, 125px);
  background: var(--ivory);
}

.home .home-collection .section-head-center {
  max-width: 720px;
  margin-bottom: clamp(50px, 6vw, 68px);
}

.home .home-collection .section-intro {
  max-width: 570px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.home .home-collection .teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home .home-collection .teaser-card {
  position: relative;
  min-height: 360px;
  padding: 42px 36px 34px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  border: 1px solid rgba(42, 33, 24, 0.1);
  border-radius: 3px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)),
    var(--cream-2);
  box-shadow: none;
  overflow: hidden;
}

.home .home-collection .teaser-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  width: 42px;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.4s var(--ease);
}

.home .home-collection .teaser-card:hover {
  transform: translateY(-6px);
  border-color: rgba(190, 100, 56, 0.28);
  box-shadow: 0 22px 48px rgba(20, 15, 10, 0.09);
}

.home .home-collection .teaser-card:hover::before {
  width: calc(100% - 72px);
}

.home .teaser-label {
  display: block;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-2);
  font-weight: 700;
}

.home .home-collection .teaser-card h3 {
  margin-bottom: 24px;
  font-size: clamp(29px, 2.6vw, 36px);
  line-height: 1.15;
}

.home .home-collection .teaser-card p {
  max-width: 270px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}

.home .teaser-link,
.home .home-collection .teaser-card > a:last-child {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta-2);
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

.home .teaser-link span,
.home .home-collection .teaser-card > a:last-child span {
  transition: transform 0.3s var(--ease);
}

.home .teaser-card:hover .teaser-link span,
.home .home-collection .teaser-card:hover > a:last-child span {
  transform: translateX(5px);
}

/* ---------------------------------------------------------
   Homepage CTA
   --------------------------------------------------------- */

.home .home-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 120px) 24px;
}

.home .home-cta::before,
.home .home-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(241, 212, 139, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.home .home-cta::before {
  width: 340px;
  height: 340px;
  top: -220px;
  left: -90px;
}

.home .home-cta::after {
  right: -100px;
  bottom: -190px;
  width: 270px;
  height: 270px;
}

.home .home-cta .container {
  position: relative;
  z-index: 1;
}

.home .home-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.8vw, 56px);
}

.home .home-cta p {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   PILLAR LOGO REVEAL ANIMATION
   ========================================================= */

.eyebrow img.bars,
.pillar img.bars,
.about-panel img.bars,
.page-hero img.hero-mark {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.in .eyebrow img.bars,
.reveal.in.pillar img.bars,
.reveal.in .pillar img.bars,
.reveal.in.about-panel img.bars,
.reveal.in .about-panel img.bars,
.page-hero img.hero-mark {
  opacity: 1;
  transform: translateY(0);
}

.pillars .pillar:nth-child(1) img.bars {
  transition-delay: 0.05s;
}

.pillars .pillar:nth-child(2) img.bars {
  transition-delay: 0.16s;
}

.pillars .pillar:nth-child(3) img.bars {
  transition-delay: 0.27s;
}

/* =========================================================
   HOMEPAGE RESPONSIVE
   ========================================================= */

@media (max-width: 920px) {
  .home .hero-luxury {
    min-height: 90svh;
    background-position: 62% center;
  }

  .home .home-story .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home .home-story-copy {
    max-width: 680px;
  }

  .home .home-story .about-panel {
    max-width: 680px;
    min-height: 300px;
    margin-top: 0;
  }

  .home .pillars {
    width: min(100%, 680px);
    gap: 44px;
  }

  .home .pillar p {
    max-width: 420px;
  }

  .home .home-collection .teaser-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home .home-collection .teaser-card {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .home .hero-luxury {
    min-height: 88svh;
    padding-top: 128px;
    padding-bottom: 72px;
    background-position: 67% center;
  }

  .home .hero-luxury-inner {
    width: min(100% - 30px, 1220px);
  }

  .home .hero-copy h1 {
    font-size: clamp(55px, 18vw, 76px);
    line-height: 0.91;
  }

  .home .hero-script {
    margin-top: 20px;
  }

  .home .hero-description {
    max-width: 95%;
  }

  .home .hero-btns {
    gap: 18px;
  }

  .home .hero-link {
    width: auto;
    justify-content: flex-start;
  }

  .home .section-head-center {
    margin-bottom: 42px;
  }

  .home .section-head-center h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .home .home-story,
  .home .pillars-section,
  .home .home-collection {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home .home-story-copy > p:first-child {
    font-size: 29px;
    line-height: 1.3;
  }

  .home .home-story .about-panel {
    min-height: 0;
    padding: 36px 28px;
  }

  .home .home-collection .teaser-card {
    min-height: 300px;
    padding: 34px 27px 30px;
  }

  .home .home-collection .teaser-card::before {
    left: 27px;
  }

  .home .home-collection .teaser-card:hover::before {
    width: calc(100% - 54px);
  }

  .home .home-cta {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow img.bars,
  .pillar img.bars,
  .about-panel img.bars,
  .page-hero img.hero-mark {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   SINGLE PRODUCT — REMOVE GLOBAL SECTION SPACING
   ========================================================= */

.single-product-page .single-product-section {
  padding: 0;
}

.single-product-page .single-product-section + .single-product-section {
  margin-top: 32px;
}

.single-product-page .single-product-actions {
  margin-top: 38px;
}

/* =========================================================
   INGREDIENT CARDS — INTERACTIVE
   ========================================================= */

.ing-card {
  position: relative;
  min-height: 180px;
  padding: 34px 28px;
  background: var(--olive-2);
  cursor: pointer;
  transition:
    background-color 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.ing-card h4 {
  margin-bottom: 8px;
  color: var(--gold-1);
  font-size: 19px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.ing-card::after {
  content: "Discover";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: transparent;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(4px);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.ing-card:hover,
.ing-card.is-active {
  z-index: 2;
  background: var(--olive);
  box-shadow: 0 18px 38px rgba(14, 11, 8, 0.18);
}

.ing-card:hover h4,
.ing-card.is-active h4 {
  color: var(--gold-1);
  transform: translateY(-2px);
}

.ing-card:hover::after,
.ing-card.is-active::after {
  color: rgba(241, 212, 139, 0.8);
  transform: translateY(0);
}

.ing-card.is-active::after {
  content: "Selected";
}

/* =========================================================
   INGREDIENT EXPANDED FEATURE — EDITORIAL
   ========================================================= */

.ingredient-feature {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows 0.65s var(--ease),
    opacity 0.4s ease,
    margin-top 0.65s var(--ease);
}

.ingredient-feature[hidden] {
  display: none;
}

.ingredient-feature.is-open {
  grid-template-rows: 1fr;
  margin-top: 44px;
  opacity: 1;
}

.ingredient-feature-inner {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border-radius: 6px;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 28px 65px rgba(14, 11, 8, 0.2);
}

/* Photograph */

.ingredient-feature-media {
  display: flex;
  align-items: center;
  padding: clamp(26px, 3vw, 38px);
  min-width: 0;
}

.ingredient-feature-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

/* Information */

.ingredient-feature-content {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 6vw, 78px);
}

.ingredient-feature-content .eyebrow {
  margin-bottom: 18px;
}

.ingredient-feature-content h2 {
  margin: 0 0 20px;
  color: var(--espresso);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
}

.ingredient-feature-content h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold-2);
}

.ingredient-feature-summary {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.ingredient-feature-divider {
  width: 100%;
  height: 1px;
  margin: 32px 0;
  background: linear-gradient(
    90deg,
    rgba(201, 154, 62, 0.65),
    rgba(42, 33, 24, 0.06)
  );
}

/* Detail columns */

.ingredient-feature-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 46px);
}

.ingredient-feature-detail h3,
.ingredient-feature-found h3 {
  margin-bottom: 15px;
  color: var(--terracotta);
  font-family: "Jost", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ingredient-feature-detail p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.ingredient-feature-detail ul {
  display: grid;
  gap: 9px;
}

.ingredient-feature-detail li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.ingredient-feature-detail li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 1px;
  width: 5px;
  height: 5px;
  background: var(--gold-2);
  transform: rotate(45deg);
}

/* Found in */

.ingredient-feature-found {
  margin-top: 32px;
}

.ingredient-feature-products {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.ingredient-feature-products a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.25s ease;
}

.ingredient-feature-products a::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(201, 154, 62, 0.5);
  border-radius: 50%;
  color: var(--gold-3);
  font-size: 9px;
}

.ingredient-feature-products a:hover {
  color: var(--terracotta-2);
}

/* Collection link */

.ingredient-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 34px;
  color: var(--terracotta-2);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ingredient-feature-link span {
  transition: transform 0.3s var(--ease);
}

.ingredient-feature-link:hover span {
  transform: translateX(5px);
}

/* Close */

.ingredient-feature-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(42, 33, 24, 0.13);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

/* Tablet */

@media (max-width: 980px) {
  .ingredient-feature-inner {
    grid-template-columns: 1fr;
  }

  .ingredient-feature-media {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
    padding-bottom: 0;
  }

  .ingredient-feature-details {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .ing-card {
    min-height: 165px;
    padding: 29px 23px;
  }

  .ingredient-feature.is-open {
    margin-top: 28px;
  }

  .ingredient-feature-media {
    padding: 18px 18px 0;
  }

  .ingredient-feature-content {
    padding: 42px 24px 44px;
  }

  .ingredient-feature-content h2 {
    font-size: 44px;
  }

  .ingredient-feature-details {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ingredient-feature-products {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================================================
   HOMEPAGE — STORY SECTION PROTECTION
   Keeps homepage layout separate from About-page styling
   ========================================================= */

body.home .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

/* Homepage promise card */

body.home .about-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 310px;
  margin: 0;
  padding: clamp(44px, 5vw, 64px);
  overflow: hidden;
  border-radius: 6px;
  background: var(--olive);
  color: var(--ivory);
  box-shadow: 0 22px 50px rgba(20, 15, 10, 0.14);
}

/* Decorative circle */

body.home .about-panel::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(212, 171, 71, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

/* Pillars logo */

body.home .about-panel .bars,
body.home .about-panel .treoro-bars {
  position: relative;
  z-index: 1;
  width: 24px;
  height: auto;
  margin-bottom: 24px;
}

/* Card heading */

body.home .about-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.15;
}

/* Promise list */

body.home .about-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.home .about-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(251, 247, 238, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

body.home .about-panel li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-2);
  font-size: 12px;
}

/* Tablet and mobile */

@media (max-width: 820px) {
  body.home .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  body.home .about-panel {
    max-width: 620px;
  }
}

/* =========================================================
   HOMEPAGE — DESTINATION CARDS
   ========================================================= */

.teaser-card-link {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.teaser-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 62px;
  height: 2px;
  background: var(--terracotta-2);
  transition:
    width 0.35s ease,
    background-color 0.35s ease;
}

.teaser-card-content {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 50px 38px 38px;
}

.teaser-card-eyebrow {
  margin-bottom: 34px;
  color: var(--terracotta-2);
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.teaser-card-link h3 {
  margin: 0 0 24px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.05;
}

.teaser-card-link p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.teaser-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: auto;
  padding-top: 42px;
  color: var(--terracotta-2);
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teaser-card-cta span {
  transition: transform 0.3s ease;
}

.teaser-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(25, 18, 12, 0.12);
}

.teaser-card-link:hover::before {
  width: 92px;
  background: var(--gold-2);
}

.teaser-card-link:hover .teaser-card-cta span {
  transform: translateX(5px);
}

@media (max-width: 760px) {
  .teaser-card-link {
    min-height: 310px;
  }

  .teaser-card-content {
    padding: 42px 28px 30px;
  }
}

/* =========================================================
   JOURNAL — SINGLE ARTICLE LAYOUT
   ========================================================= */

/* ---------- Journal hero ---------- */

.journal-hero {
  padding: 180px 24px 92px;
  background:
    radial-gradient(
      ellipse 800px 500px at 50% 0%,
      rgba(201, 154, 62, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, var(--black), var(--espresso));
  text-align: center;
}

.journal-hero-inner {
  max-width: 920px;
}

.journal-hero-mark {
  width: 42px;
  margin: 0 auto 22px;
}

.journal-eyebrow {
  margin-bottom: 22px;
  color: var(--gold-1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.journal-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.journal-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
  color: rgba(246, 240, 227, 0.52);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


/* ---------- Main article ---------- */

.journal-article {
  padding: clamp(72px, 8vw, 110px) 0;
  background: var(--ivory);
}

.journal-article-container {
  max-width: 1120px;
}

/* ---------- Journal featured image ---------- */

.journal-featured-image {
  width: min(100%, 920px);
  margin: 0 auto clamp(52px, 6vw, 72px);
}

.journal-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.journal-content-wrap {
  max-width: 820px;
  margin-inline: auto;
}


/* ---------- Article typography ---------- */

.journal-entry-content {
  color: #3f372e;
  font-size: 18px;
  line-height: 1.9;
}

.journal-entry-content > p:first-child {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.55;
}



.journal-entry-content p {
  margin-bottom: 26px;
}

.journal-entry-content h2 {
  margin: 64px 0 24px;
  color: var(--espresso);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
}

.journal-entry-content h3 {
  margin: 48px 0 18px;
  color: var(--espresso);
  font-size: clamp(27px, 3vw, 36px);
}

.journal-entry-content h4 {
  margin: 36px 0 14px;
  color: var(--terracotta-2);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journal-entry-content a {
  color: var(--terracotta-2);
  border-bottom: 1px solid rgba(156, 78, 41, 0.35);
}

.journal-entry-content ul,
.journal-entry-content ol {
  margin: 0 0 28px 24px;
  list-style: initial;
}

.journal-entry-content li {
  margin-bottom: 10px;
  padding-left: 6px;
}

.journal-entry-content img {
  display: block;
  width: 100%;
  margin: 42px 0;
  border-radius: 10px;
}

.journal-entry-content blockquote {
  position: relative;
  margin: 52px 0;
  padding: clamp(38px, 5vw, 56px);
  overflow: hidden;
  border: none;
  border-radius: 6px;
  background: var(--olive);
  color: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.journal-entry-content blockquote::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(212, 171, 71, 0.18);
  border-radius: 50%;
}

.journal-entry-content blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-style: italic;
  line-height: 1.45;
}


/* ---------- Tags ---------- */

.journal-tags {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.journal-tags-label {
  padding-top: 7px;
  color: var(--terracotta-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.journal-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journal-tags-list a {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  font-size: 12px;
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}

.journal-tags-list a:hover {
  border-color: var(--gold-2);
  color: var(--terracotta-2);
}


/* ---------- Author card ---------- */

.journal-author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 58px;
  padding: 34px 36px;
  border: 1px solid rgba(42, 33, 24, 0.08);
  border-radius: 6px;
  background: var(--cream-2);
}

.journal-author-mark {
  width: 28px;
}

.journal-author-label {
  margin-bottom: 4px;
  color: var(--terracotta-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.journal-author-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.journal-author-card p {
  max-width: 580px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}


/* ---------- Previous / next articles ---------- */

.journal-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.journal-post-nav-item a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--cream);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.journal-post-nav-item a:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 154, 62, 0.4);
  box-shadow: var(--shadow-soft);
}

.journal-post-nav-label {
  margin-bottom: 12px;
  color: var(--terracotta-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.journal-post-nav-item strong {
  color: var(--espresso);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.journal-post-nav-next {
  text-align: right;
}


/* ---------- Comments ---------- */

.journal-comments {
  margin-top: 70px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.journal-comments .comments-title,
.journal-comments .comment-reply-title {
  margin-bottom: 12px;
  color: var(--espresso);
  font-size: clamp(32px, 4vw, 43px);
}

.journal-comments .logged-in-as,
.journal-comments .comment-notes {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.journal-comments .comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.journal-comments .comment-form-comment,
.journal-comments .comment-form-url,
.journal-comments .form-submit,
.journal-comments .comment-notes,
.journal-comments .logged-in-as {
  grid-column: 1 / -1;
}

.journal-comments label {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journal-comments input[type="text"],
.journal-comments input[type="email"],
.journal-comments input[type="url"],
.journal-comments textarea {
  width: 100%;
  border: 1px solid rgba(42, 33, 24, 0.16);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}

.journal-comments input[type="text"],
.journal-comments input[type="email"],
.journal-comments input[type="url"] {
  min-height: 50px;
  padding: 12px 14px;
}

.journal-comments textarea {
  min-height: 190px;
  padding: 15px;
  resize: vertical;
}

.journal-comments input:focus,
.journal-comments textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(201, 154, 62, 0.1);
}

.journal-comments .form-submit {
  margin-top: 4px;
}

.journal-comments .submit {
  width: auto;
}


/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .journal-hero {
    padding: 145px 20px 72px;
  }

  .journal-article {
    padding: 62px 0 76px;
  }

  .journal-featured-image {
    margin-bottom: 48px;
  }

  .journal-entry-content {
    font-size: 16.5px;
  }

  .journal-entry-content > p:first-child {
    font-size: 25px;
  }

  .journal-post-nav {
    grid-template-columns: 1fr;
  }

  .journal-post-nav-next {
    text-align: left;
  }

  .journal-comments .comment-form {
    grid-template-columns: 1fr;
  }

  .journal-comments .comment-form > * {
    grid-column: 1;
  }

  .journal-author-card {
    grid-template-columns: 1fr;
  }
}


.journal-hero-mark img {
  display: block;
  width: 42px;
  height: 52px;
  margin-inline: auto;
  object-fit: contain;
}

.journal-author-mark img {
  display: block;
  width: 28px;
  height: 34px;
  object-fit: contain;
}

/* =========================================================
   CONTACT PAGE — FINAL LAYOUT
   ========================================================= */

.contact-page-section {
  padding: clamp(88px, 9vw, 120px) 0;
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(201, 154, 62, 0.06),
      transparent 30%
    ),
    linear-gradient(180deg, var(--espresso), var(--black));
}

.contact-page-section .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(64px, 8vw, 112px);
  align-items: start;
}

.contact-details {
  padding-top: 12px;
}

.contact-details .eyebrow {
  color: var(--gold-1);
}

.contact-details h2 {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--cream);
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 400;
}

.contact-intro {
  max-width: 500px;
  margin-bottom: 44px;
  color: rgba(246, 240, 227, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.contact-info-list {
  display: grid;
  gap: 0;
  max-width: 520px;
}

.contact-page-section .info-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  margin: 0;
  padding: 19px 0;
  border-bottom: 1px solid rgba(246, 240, 227, 0.09);
}

.contact-page-section .info-row:first-child {
  border-top: 1px solid rgba(246, 240, 227, 0.09);
}

.contact-page-section .info-row .k {
  width: auto;
  padding: 0;
  color: var(--gold-1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page-section .info-row .v {
  color: rgba(246, 240, 227, 0.88);
  font-size: 16px;
  line-height: 1.6;
}

.contact-page-section .info-row .v a {
  transition: color 0.25s ease;
}

.contact-page-section .info-row .v a:hover {
  color: var(--gold-1);
}

.contact-response-note {
  max-width: 500px;
  margin-top: 30px;
  color: rgba(246, 240, 227, 0.46);
  font-size: 13px;
  line-height: 1.7;
}


/* Contact form panel */

.contact-page-section .form-panel {
  padding: clamp(38px, 5vw, 54px);
  border: 1px solid rgba(246, 240, 227, 0.13);
  border-radius: 10px;
  background: rgba(246, 240, 227, 0.055);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.treoro-contact-form {
  display: grid;
  gap: 25px;
}

.contact-page-section .form-row {
  margin: 0;
}

.contact-page-section .form-row label {
  display: block;
  margin-bottom: 10px;
  color: rgba(246, 240, 227, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-page-section .form-row input,
.contact-page-section .form-row textarea,
.contact-page-section .form-row select {
  width: 100%;
  border: 1px solid rgba(246, 240, 227, 0.15);
  border-radius: 4px;
  background: rgba(246, 240, 227, 0.055);
  color: var(--cream);
  font-size: 15px;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-page-section .form-row input,
.contact-page-section .form-row select {
  min-height: 58px;
  padding: 15px 18px;
}

.contact-page-section .form-row textarea {
  min-height: 180px;
  padding: 18px;
  resize: vertical;
}

.contact-page-section .form-row select {
  appearance: auto;
}

.contact-page-section .form-row select option {
  color: var(--ink);
  background: var(--ivory);
}

.contact-page-section .form-row input:focus,
.contact-page-section .form-row textarea:focus,
.contact-page-section .form-row select:focus {
  outline: none;
  border-color: var(--gold-1);
  background: rgba(246, 240, 227, 0.075);
  box-shadow: 0 0 0 3px rgba(201, 154, 62, 0.1);
}

.contact-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 3px;
}

.contact-page-section .form-note {
  margin: -7px 0 0;
  color: rgba(246, 240, 227, 0.4);
  font-size: 12px;
  line-height: 1.6;
}

.contact-page-section .form-status {
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.65;
}

.contact-page-section .form-status.success {
  border: 1px solid rgba(201, 154, 62, 0.34);
  background: rgba(201, 154, 62, 0.1);
  color: var(--gold-1);
}

.contact-page-section .form-status.error {
  border: 1px solid rgba(190, 100, 56, 0.4);
  background: rgba(190, 100, 56, 0.1);
  color: #efb092;
}


/* Contact-page responsive layout */

@media (max-width: 920px) {
  .contact-page-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-details,
  .contact-page-section .form-panel {
    max-width: 700px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .contact-page-section {
    padding: 70px 0;
  }

  .contact-page-section .contact-grid {
    gap: 46px;
  }

  .contact-page-section .info-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 0;
  }

  .contact-page-section .form-panel {
    padding: 30px 22px;
  }

  .contact-page-section .form-row input,
  .contact-page-section .form-row select {
    min-height: 54px;
  }

  .contact-page-section .form-row textarea {
    min-height: 160px;
  }
}

/* =========================================================
   CONTACT PAGE — CLOUDFLARE TURNSTILE
   ========================================================= */

.turnstile-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  margin: 2px 0 4px;
}

.turnstile-row .cf-turnstile {
  width: 100%;
}

@media (max-width: 600px) {
  .turnstile-row {
    overflow: hidden;
  }
}

.form-status {
    transition: opacity .6s ease, transform .6s ease;
}

.form-status.hide {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* =========================================================
   CONTACT — COLLAPSE INVISIBLE TURNSTILE SPACE
   ========================================================= */

.turnstile-row {
  min-height: 0;
  height: 0;
  margin: 0;
  overflow: visible;
}

.turnstile-row .cf-turnstile {
  width: 0;
  height: 0;
  overflow: visible;
}