/*
Theme Name: OurWomen - Women's Fashion & Style (Haute Couture Edition)
Theme URI: https://ourwomen.online
Author: OurWomen Editorial Team
Author URI: https://ourwomen.online
Description: A bespoke haute couture fashion editorial WordPress theme featuring refined cashmere rose and vintage mulberry tones, interactive outfit formula blueprints, seasonal color swatches, dynamic reading progress tracking, and full mobile optimization.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ourwomen
Tags: blog, fashion, style, lifestyle, outfit-ideas, responsive, custom-menu, custom-logo, featured-images
*/

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* ---- Palette (Accurate Luxunavibe Match) ---- */
  --ow-blush-header:#eed5dc;        /* Soft dusty blush pink matching live header */
  --ow-blush-footer:#eed5dc;        /* Soft dusty blush pink matching live footer */
  --ow-body-bg:     #fdf7f5;        /* Soft warm white cream */
  --ow-wine-dark:   #3d162d;        /* Deep wine plum text & logo badge */
  --ow-wine-text:   #4e243d;        /* Deep wine readable body & link color */
  --ow-wine-muted:  #7a4d65;        /* Muted wine for captions & meta */
  --ow-rose-accent: #b03e6b;        /* Vibrant rose accent for highlights */
  --ow-border-soft: #e5ccd3;        /* Soft dusty border */
  --ow-white:       #ffffff;
  
  /* ---- Legacy compatibility mapping ---- */
  --ow-rose:        #7a2652;
  --ow-rose-light:  #c4728f;
  --ow-rose-pale:   #e8b4c8;
  --ow-plum:        #3d162d;
  --ow-burgundy:    #541e3d;
  --ow-cream:       #fdf7f5;
  --ow-blush:       #eed5dc;
  --ow-warm-white:  #fefbf7;
  --ow-gold:        #c8956c;
  --ow-text:        #3d162d;
  --ow-text-muted:  #7a4d65;
  --ow-border:      #e5ccd3;

  /* ---- Typography ---- */
  --font-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-xs:    .75rem;
  --fs-sm:    .875rem;
  --fs-base:  1rem;
  --fs-md:    1.125rem;
  --fs-lg:    1.25rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   2rem;
  --fs-3xl:   2.5rem;
  --fs-4xl:   3.25rem;
  --fs-hero:  clamp(2.25rem, 5vw, 3.75rem);

  /* ---- Spacing ---- */
  --sp-xs:  .25rem;
  --sp-sm:  .5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* ---- Layout ---- */
  --max-width:      1200px;
  --header-height:  72px;

  /* ---- Radius ---- */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 999px;

  /* ---- Shadows ---- */
  --shadow-sm:   0 1px 3px rgba(42,16,32,.08);
  --shadow-md:   0 4px 16px rgba(42,16,32,.1);
  --shadow-lg:   0 8px 32px rgba(42,16,32,.12);
  --shadow-card: 0 2px 12px rgba(42,16,32,.07);

  /* ---- Transitions ---- */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --dur:      .3s;
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

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

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--ow-wine-text);
  background: var(--ow-body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease-out); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ow-wine-dark);
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin-bottom: var(--sp-md); line-height: 1.75; }

::selection {
  background: var(--ow-blush);
  color: var(--ow-wine-dark);
}

.wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-md);
  background: var(--ow-plum);
  color: var(--ow-white);
  padding: var(--sp-sm) var(--sp-md);
  z-index: 10000;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
}
.skip-link:focus { top: var(--sp-md); }

/* ==========================================================================
   2. HEADER
   ========================================================================== */

.ow-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ow-blush-header);
  border-bottom: 1px solid rgba(61, 22, 45, 0.08);
  transition: box-shadow var(--dur) var(--ease-out);
}
.ow-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(61, 22, 45, 0.08);
}

.ow-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
  gap: var(--sp-lg);
}

/* ---- Logo ---- */
.ow-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}

.ow-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--ow-wine-dark);
  color: var(--ow-white);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: var(--fs-md);
  border-radius: 50%;
  letter-spacing: .5px;
  line-height: 1;
}

.ow-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ow-wine-dark);
  letter-spacing: -.02em;
}
.ow-logo-text em {
  font-style: italic;
  color: var(--ow-rose-accent);
  font-weight: 700;
}

/* ---- Primary Nav ---- */
.ow-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.ow-nav > li { position: relative; }

.ow-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .85rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ow-wine-dark);
  letter-spacing: .01em;
  border-radius: var(--radius-full);
  transition: background var(--dur), color var(--dur);
}
.ow-nav > li > a:hover,
.ow-nav > li > a:focus-visible {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ow-wine-dark);
}

/* Caret */
.ow-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--ow-wine-dark);
  opacity: .7;
  transition: transform var(--dur);
}

/* ---- Dropdown ---- */
.ow-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--ow-white);
  border: 1px solid var(--ow-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-sm) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  z-index: 100;
}
.ow-nav > li:hover > .ow-dropdown,
.ow-nav > li:focus-within > .ow-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ow-sub-label {
  display: block;
  padding: .4rem 1.15rem .3rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ow-text-muted);
}

.ow-dropdown a {
  display: block;
  padding: .5rem 1.15rem;
  font-size: var(--fs-sm);
  color: var(--ow-text);
  transition: background var(--dur), color var(--dur), padding-left var(--dur);
}
.ow-dropdown a:hover {
  background: var(--ow-blush);
  color: var(--ow-rose);
  padding-left: 1.4rem;
}

.ow-view-all {
  margin-top: .25rem;
  border-top: 1px solid var(--ow-border);
  padding-top: .5rem !important;
  font-weight: 600;
  color: var(--ow-rose) !important;
  font-size: var(--fs-xs) !important;
  letter-spacing: .02em;
}

/* ---- Search ---- */
.ow-search-wrap {
  position: relative;
  flex-shrink: 0;
}

.ow-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background var(--dur);
}
.ow-search-btn:hover { background: #ffffff; }

.ow-search-icon {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
}
.ow-search-icon::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid var(--ow-wine-dark);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.ow-search-icon::after {
  content: '';
  display: block;
  width: 6px;
  height: 2px;
  background: var(--ow-wine-dark);
  border-radius: 1px;
  position: absolute;
  bottom: 2px;
  right: 0;
  transform: rotate(45deg);
}

.ow-search-form {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 290px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility var(--dur);
  z-index: 100;
}
.ow-search-form.ow-search-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ow-search-form input {
  width: 100%;
  padding: .75rem 1.1rem;
  border: 1px solid var(--ow-border-soft);
  border-radius: var(--radius-full);
  background: var(--ow-white);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-sm);
  color: var(--ow-wine-dark);
  outline: none;
  transition: border-color var(--dur);
}
.ow-search-form input:focus {
  border-color: var(--ow-rose-accent);
}
.ow-search-form input::placeholder {
  color: var(--ow-wine-muted);
}

/* ---- Hamburger ---- */
.ow-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}
.ow-burger span {
  display: block;
  height: 2px;
  background: var(--ow-plum);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */

.ow-hero {
  position: relative;
  overflow: hidden;
  padding: var(--sp-4xl) 0 var(--sp-3xl);
  background: var(--ow-cream);
}

.ow-hero-blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ow-rose-pale) 0%, transparent 70%);
  opacity: .35;
  top: -120px;
  right: -100px;
  animation: ow-blob-float 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ow-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-30px, 20px) scale(1.05); }
  66%      { transform: translate(15px, -15px) scale(.97); }
}

.ow-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.ow-hero h1 {
  margin-bottom: var(--sp-lg);
  color: var(--ow-plum);
}
.ow-hero h1 em {
  font-style: italic;
  color: var(--ow-rose);
}

.ow-hero .curl {
  width: 110px;
  height: auto;
  margin-bottom: var(--sp-lg);
}
.ow-hero .curl path {
  fill: none;
  stroke: var(--ow-rose-light);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: ow-draw-curl 2s var(--ease-out) forwards .6s;
}

@keyframes ow-draw-curl {
  to { stroke-dashoffset: 0; }
}

.ow-hero .lead {
  font-size: var(--fs-md);
  color: var(--ow-text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.ow-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
  flex-wrap: wrap;
}

/* ---- Hero Cards (Right Column) ---- */
.ow-hero-cards {
  position: relative;
  min-height: 420px;
}

.ow-hero-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1.5px solid var(--ow-rose-pale);
  opacity: .4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ow-ring-pulse 6s ease-in-out infinite;
}
.ow-hero-ring.small {
  width: 220px;
  height: 220px;
  animation-delay: 1.5s;
}

@keyframes ow-ring-pulse {
  0%, 100% { opacity: .4; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: .2; transform: translate(-50%, -50%) scale(1.06); }
}

.ow-frame-main {
  position: absolute;
  width: 280px;
  height: 360px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ow-blush) 0%, var(--ow-rose-pale) 100%);
  top: 50%;
  left: 50%;
  transform: translate(-55%, -52%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: ow-main-float 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease-out);
}

.ow-frame-main:hover {
  transform: translate(-55%, -55%) scale(1.02);
}

@keyframes ow-main-float {
  0%, 100% { transform: translate(-55%, -52%); }
  50%      { transform: translate(-55%, -58%); }
}

.ow-frame-main .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-lg);
  background: linear-gradient(0deg, rgba(42,16,32,.75) 0%, transparent 100%);
  color: var(--ow-white);
}

.ow-frame-main .eyebrow {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ow-rose-pale);
  margin-bottom: .3rem;
}

.ow-frame-main .cap-title {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.3;
}

.ow-frame-accent {
  position: absolute;
  width: 160px;
  height: 200px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--ow-gold) 0%, var(--ow-rose-light) 100%);
  bottom: 8%;
  right: 5%;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: ow-accent-float 5.5s ease-in-out infinite 0.8s;
  transition: transform 0.4s var(--ease-out);
}

.ow-frame-accent:hover {
  transform: translateY(-8px) scale(1.04);
}

@keyframes ow-accent-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}

.ow-frame-accent .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-sm) var(--sp-md);
  background: rgba(42,16,32,.6);
  color: var(--ow-white);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.ow-tag-float {
  position: absolute;
  top: 12%;
  right: 10%;
  background: var(--ow-white);
  border-radius: var(--radius-full);
  padding: .5rem .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ow-text);
  animation: ow-tag-bob 4s ease-in-out infinite;
}

.ow-dot-stack {
  display: flex;
  gap: 3px;
}
.ow-dot-stack span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ow-rose);
}
.ow-dot-stack span:nth-child(2) { opacity: .6; }
.ow-dot-stack span:nth-child(3) { opacity: .3; }

@keyframes ow-tag-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.6rem;
  background: var(--ow-rose);
  color: var(--ow-white);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  border: none;
  cursor: pointer;
  letter-spacing: .01em;
}
.btn-primary:hover {
  background: var(--ow-burgundy);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(122,38,82,.25);
  color: var(--ow-white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .75rem 1.2rem;
  color: var(--ow-rose);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--dur), color var(--dur);
}
.btn-ghost:hover {
  background: var(--ow-blush);
  color: var(--ow-burgundy);
}

/* ==========================================================================
   5. MARQUEE BAND
   ========================================================================== */

.ow-marquee-band {
  background: var(--ow-plum);
  padding: .85rem 0;
  overflow: hidden;
  position: relative;
}

.ow-marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ow-marquee 32s linear infinite;
  width: max-content;
}

.ow-marquee-track span {
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ow-rose-pale);
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding-left: 1.5rem;
}
.ow-marquee-track span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ow-rose-light);
}

@keyframes ow-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   6. BROWSE BY CATEGORY
   ========================================================================== */

.ow-browse {
  padding: var(--sp-4xl) 0;
}

.ow-browse .eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ow-rose);
  margin-bottom: var(--sp-sm);
}

.ow-browse h2 {
  margin-bottom: var(--sp-2xl);
}

.ow-browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--sp-lg);
}

.ow-browse-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-xl) var(--sp-md);
  background: var(--ow-white);
  border: 1px solid var(--ow-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur);
}
.ow-browse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ow-rose-pale);
}

.ow-browse-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--ow-blush);
}
.ow-browse-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--ow-rose);
  stroke-width: 1.8;
  fill: none;
}

.ow-browse-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ow-text);
  text-align: center;
}

/* ==========================================================================
   7. TRENDING / POST GRID
   ========================================================================== */

.ow-trending {
  padding: var(--sp-3xl) 0 var(--sp-4xl);
}

.ow-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-2xl);
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.ow-section-head .eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ow-rose);
  margin-bottom: var(--sp-xs);
}

.ow-see-all {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ow-rose);
  transition: color var(--dur);
  white-space: nowrap;
  flex-shrink: 0;
}
.ow-see-all:hover { color: var(--ow-burgundy); }

.ow-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-xl);
}

/* ---- Post Card ---- */
.ow-post-card {
  background: var(--ow-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ow-border);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
}
.ow-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ow-post-thumb {
  position: relative;
  width: 100%;
  padding-top: 62%;
  background-size: cover;
  background-position: center;
  background-color: var(--ow-blush);
  overflow: hidden;
}

.ow-post-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.ow-post-card:hover .ow-post-thumb img {
  transform: scale(1.04);
}

.ow-post-tag {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  padding: .3rem .7rem;
  background: var(--ow-white);
  color: var(--ow-rose);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
}

.ow-post-body {
  padding: var(--sp-lg);
}

.ow-post-body h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: var(--sp-sm);
}

.ow-post-body h3 a {
  color: var(--ow-plum);
  transition: color var(--dur);
}
.ow-post-body h3 a:hover {
  color: var(--ow-rose);
}

.ow-post-meta {
  font-size: var(--fs-xs);
  color: var(--ow-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   8. SPOTLIGHT / EDITOR'S PICK
   ========================================================================== */

.ow-spotlight {
  padding: var(--sp-3xl) 0;
}

.ow-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  background: var(--ow-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ow-border);
  box-shadow: var(--shadow-md);
}

.ow-spotlight-img {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-color: var(--ow-blush);
}
.ow-spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.ow-spotlight-text {
  padding: var(--sp-2xl) var(--sp-2xl) var(--sp-2xl) var(--sp-md);
}

.ow-spotlight-text .eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ow-rose);
  margin-bottom: var(--sp-sm);
}

.ow-spotlight-text h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-md);
}

.ow-spotlight-text p {
  color: var(--ow-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.75;
  margin-bottom: var(--sp-xl);
}

/* ==========================================================================
   9. CTA BAND
   ========================================================================== */

.ow-cta-band {
  padding: var(--sp-4xl) 0;
  text-align: center;
}

.ow-cta-band .eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ow-rose);
  margin-bottom: var(--sp-sm);
}

.ow-cta-band h2 {
  margin-bottom: var(--sp-md);
}

.ow-cta-band p {
  color: var(--ow-text-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  font-size: var(--fs-sm);
}

.ow-cta-band .curl {
  display: block;
  width: 110px;
  margin: 0 auto var(--sp-xl);
}
.ow-cta-band .curl path {
  fill: none;
  stroke: var(--ow-rose-light);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.ow-save-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.ow-pin-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  background: #E60023;
  color: var(--ow-white);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--dur), transform var(--dur);
}
.ow-pin-btn:hover {
  background: #c7001f;
  transform: translateY(-1px);
  color: var(--ow-white);
}

/* ==========================================================================
   10. FOOTER (Soft Blush Pink & Dark Wine)
   ========================================================================== */

.ow-footer {
  background: var(--ow-blush-footer);
  color: var(--ow-wine-text);
  padding: var(--sp-4xl) 0 0;
  border-top: 1px solid rgba(61, 22, 45, 0.08);
}

.ow-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
  padding-bottom: var(--sp-3xl);
}

/* Brand Column */
.ow-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: var(--sp-lg);
  text-decoration: none;
}

.ow-footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--ow-wine-dark);
  color: var(--ow-white);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: var(--fs-md);
  border-radius: 50%;
  letter-spacing: .5px;
}

.ow-footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ow-wine-dark);
}
.ow-footer-logo-text em {
  font-style: italic;
  color: var(--ow-rose-accent);
  font-weight: 700;
}

.ow-footer-tagline {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--ow-wine-text);
  margin-bottom: var(--sp-lg);
}

/* Social Buttons: White circles with dark wine icons */
.ow-footer-socials {
  display: flex;
  gap: var(--sp-sm);
}

.ow-footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(61, 22, 45, 0.1);
  box-shadow: 0 2px 6px rgba(61, 22, 45, 0.06);
  transition: transform var(--dur), box-shadow var(--dur);
}
.ow-footer-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 22, 45, 0.15);
}

.ow-social-icon {
  display: block;
  width: 17px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ow-icon-pinterest {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233d162d'%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 5.084 3.163 9.426 7.627 11.174-.105-.949-.2-2.405.042-3.441.218-.937 1.407-5.965 1.407-5.965s-.359-.719-.359-1.782c0-1.668.967-2.914 2.171-2.914 1.023 0 1.518.769 1.518 1.69 0 1.029-.655 2.568-.994 3.995-.283 1.194.599 2.169 1.777 2.169 2.133 0 3.772-2.249 3.772-5.495 0-2.873-2.064-4.882-5.012-4.882-3.414 0-5.418 2.561-5.418 5.207 0 1.031.397 2.138.893 2.738a.36.36 0 0 1 .083.345l-.333 1.36c-.053.22-.174.267-.402.161-1.499-.698-2.436-2.889-2.436-4.649 0-3.785 2.75-7.262 7.929-7.262 4.163 0 7.398 2.967 7.398 6.931 0 4.136-2.607 7.464-6.227 7.464-1.216 0-2.359-.632-2.75-1.378l-.748 2.853c-.271 1.043-1.002 2.35-1.492 3.146C9.57 23.812 10.763 24 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0z'/%3E%3C/svg%3E");
}
.ow-icon-instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233d162d'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12s.014 3.668.072 4.948c.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24s3.668-.014 4.948-.072c4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948s-.014-3.667-.072-4.947c-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881z'/%3E%3C/svg%3E");
}
.ow-icon-facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233d162d'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}
.ow-icon-twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233d162d'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

/* Footer Columns */
.ow-footer-col h4 {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ow-wine-dark);
  margin-bottom: var(--sp-lg);
}

.ow-footer-links li { margin-bottom: var(--sp-sm); }

.ow-footer-links a {
  font-size: var(--fs-sm);
  color: var(--ow-wine-text);
  font-weight: 500;
  transition: color var(--dur), padding-left var(--dur);
}
.ow-footer-links a:hover {
  color: var(--ow-wine-dark);
  padding-left: .3rem;
}

/* Footer nav menu from WordPress */
.ow-footer-col .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ow-footer-col .menu li { margin-bottom: var(--sp-sm); }
.ow-footer-col .menu a {
  font-size: var(--fs-sm);
  color: var(--ow-wine-text);
  font-weight: 500;
  transition: color var(--dur), padding-left var(--dur);
}
.ow-footer-col .menu a:hover {
  color: var(--ow-wine-dark);
  padding-left: .3rem;
}

/* Footer Bottom */
.ow-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: var(--sp-lg) var(--sp-xl);
  border-top: 1px solid rgba(61, 22, 45, 0.1);
  font-size: var(--fs-xs);
  color: var(--ow-wine-muted);
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* ==========================================================================
   11. SCROLL REVEAL ANIMATION
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   12. SINGLE POST
   ========================================================================== */

.ow-single-wrap {
  max-width: 760px;
  margin: var(--sp-3xl) auto;
  padding-inline: var(--sp-xl);
}

.ow-single-header {
  margin-bottom: var(--sp-2xl);
}

.ow-single-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ow-rose);
  margin-bottom: var(--sp-sm);
}
.ow-single-cat a {
  color: var(--ow-rose);
  transition: color var(--dur);
}
.ow-single-cat a:hover { color: var(--ow-burgundy); }

.ow-single-header h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-md);
  line-height: 1.2;
}

.ow-single-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: var(--fs-sm);
  color: var(--ow-text-muted);
  flex-wrap: wrap;
}

.ow-single-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ow-text-muted);
  opacity: .5;
}

.ow-single-featured {
  margin-bottom: var(--sp-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ow-single-featured img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Content */
.ow-single-content {
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--ow-text);
}
.ow-single-content p { margin-bottom: var(--sp-lg); }
.ow-single-content h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
}
.ow-single-content h3 {
  font-size: var(--fs-xl);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-md);
}
.ow-single-content h4 {
  font-size: var(--fs-lg);
  margin-top: var(--sp-lg);
  margin-bottom: var(--sp-sm);
}
.ow-single-content ul,
.ow-single-content ol {
  margin-bottom: var(--sp-lg);
  padding-left: 1.5rem;
}
.ow-single-content ul { list-style: disc; }
.ow-single-content ol { list-style: decimal; }
.ow-single-content li {
  margin-bottom: var(--sp-sm);
  line-height: 1.75;
}
.ow-single-content blockquote {
  margin: var(--sp-xl) 0;
  padding: var(--sp-lg) var(--sp-xl);
  border-left: 4px solid var(--ow-rose);
  background: var(--ow-blush);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--ow-burgundy);
  font-style: italic;
}
.ow-single-content img {
  border-radius: var(--radius-md);
  margin: var(--sp-lg) 0;
}
.ow-single-content a {
  color: var(--ow-rose);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur);
}
.ow-single-content a:hover {
  color: var(--ow-burgundy);
}
.ow-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-lg) 0;
}
.ow-single-content th,
.ow-single-content td {
  padding: var(--sp-sm) var(--sp-md);
  border: 1px solid var(--ow-border);
  text-align: left;
  font-size: var(--fs-sm);
}
.ow-single-content th {
  background: var(--ow-blush);
  font-weight: 700;
}
.ow-single-content figure {
  margin: var(--sp-xl) 0;
}
.ow-single-content figcaption {
  margin-top: var(--sp-sm);
  font-size: var(--fs-xs);
  color: var(--ow-text-muted);
  text-align: center;
}
.ow-single-content pre {
  background: var(--ow-plum);
  color: var(--ow-rose-pale);
  padding: var(--sp-lg);
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: var(--sp-lg) 0;
}
.ow-single-content code {
  font-size: .9em;
  background: var(--ow-blush);
  padding: .15em .4em;
  border-radius: 4px;
  color: var(--ow-burgundy);
}
.ow-single-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Tags */
.ow-single-tags {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--ow-border);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}
.ow-single-tags span {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ow-text-muted);
}
.ow-single-tags a {
  display: inline-block;
  padding: .3rem .7rem;
  background: var(--ow-blush);
  color: var(--ow-text);
  font-size: var(--fs-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background var(--dur), color var(--dur);
}
.ow-single-tags a:hover {
  background: var(--ow-rose);
  color: var(--ow-white);
}

/* Related Posts */
.ow-related {
  margin-top: var(--sp-3xl);
  padding-top: var(--sp-2xl);
  border-top: 1px solid var(--ow-border);
}
.ow-related h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-xl);
}

/* Post Navigation (Clean elevated cards) */
.ow-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-top: var(--sp-3xl);
  padding-top: var(--sp-2xl);
  border-top: 1px solid var(--ow-border);
}

.ow-post-nav .prev,
.ow-post-nav .next {
  display: flex;
}

.ow-post-nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--ow-white);
  border: 1px solid var(--ow-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur);
}

.ow-post-nav a:hover {
  transform: translateY(-2px);
  border-color: var(--ow-rose);
  box-shadow: var(--shadow-md);
}

.ow-post-nav-label {
  display: inline-block;
  font-size: .7rem;
  color: var(--ow-wine-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .4rem;
}

.ow-post-nav-title {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--ow-wine-dark);
  line-height: 1.35;
}

.ow-post-nav .next a {
  text-align: right;
  align-items: flex-end;
}
.ow-post-nav .prev a {
  text-align: left;
  align-items: flex-start;
}

/* ==========================================================================
   13. ARCHIVE / INDEX
   ========================================================================== */

.ow-archive-header {
  text-align: center;
  padding: var(--sp-3xl) 0 var(--sp-xl);
}
.ow-archive-header .eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ow-rose);
  margin-bottom: var(--sp-sm);
}
.ow-archive-header h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-sm);
}
.ow-archive-header p {
  font-size: var(--fs-sm);
  color: var(--ow-text-muted);
  max-width: 500px;
  margin-inline: auto;
}

.ow-archive-grid {
  padding-bottom: var(--sp-4xl);
}

/* ==========================================================================
   14. BREADCRUMBS
   ========================================================================== */

.ow-breadcrumbs {
  padding: var(--sp-md) 0;
  font-size: var(--fs-xs);
  color: var(--ow-text-muted);
}
.ow-breadcrumbs a {
  color: var(--ow-text-muted);
  transition: color var(--dur);
}
.ow-breadcrumbs a:hover { color: var(--ow-rose); }
.ow-breadcrumbs .sep {
  margin: 0 .4rem;
  opacity: .5;
}

/* ==========================================================================
   15. PAGINATION
   ========================================================================== */

.ow-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: var(--sp-2xl) 0 var(--sp-3xl);
}
.ow-pagination a,
.ow-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--sp-sm);
  border: 1px solid var(--ow-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ow-text);
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}
.ow-pagination a:hover {
  background: var(--ow-blush);
  border-color: var(--ow-rose-pale);
  color: var(--ow-rose);
}
.ow-pagination .current {
  background: var(--ow-rose);
  border-color: var(--ow-rose);
  color: var(--ow-white);
}

/* ==========================================================================
   16. COMMENTS
   ========================================================================== */

.ow-comments {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--ow-border);
}
.ow-comments h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-xl);
}

.comment-list {
  list-style: none;
  padding: 0;
}
.comment-list .comment {
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--ow-border);
}
.comment-list .children {
  list-style: none;
  padding-left: var(--sp-xl);
}
.comment-author {
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: .3rem;
}
.comment-meta {
  font-size: var(--fs-xs);
  color: var(--ow-text-muted);
  margin-bottom: var(--sp-sm);
}
.comment-content {
  font-size: var(--fs-sm);
  line-height: 1.7;
}
.comment-content p:last-child { margin-bottom: 0; }

.comment-reply-link {
  display: inline-block;
  margin-top: var(--sp-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ow-rose);
  transition: color var(--dur);
}
.comment-reply-link:hover { color: var(--ow-burgundy); }

/* Comment Form */
.comment-respond {
  margin-top: var(--sp-xl);
}
.comment-respond h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-lg);
}
.comment-form label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--ow-text);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--ow-border);
  border-radius: var(--radius-sm);
  background: var(--ow-white);
  font-size: var(--fs-sm);
  transition: border-color var(--dur);
  margin-bottom: var(--sp-md);
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--ow-rose);
}
.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.comment-form .form-submit input {
  padding: .7rem 1.8rem;
  background: var(--ow-rose);
  color: var(--ow-white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background var(--dur);
}
.comment-form .form-submit input:hover {
  background: var(--ow-burgundy);
}

/* ==========================================================================
   17. PAGE TEMPLATE
   ========================================================================== */

.ow-page-wrap {
  max-width: 760px;
  margin: var(--sp-3xl) auto;
  padding-inline: var(--sp-xl);
}
.ow-page-wrap h1 {
  margin-bottom: var(--sp-xl);
}
.ow-page-content {
  font-size: var(--fs-md);
  line-height: 1.85;
}
.ow-page-content p { margin-bottom: var(--sp-lg); }
.ow-page-content h2 { font-size: var(--fs-2xl); margin-top: var(--sp-2xl); margin-bottom: var(--sp-md); }
.ow-page-content h3 { font-size: var(--fs-xl); margin-top: var(--sp-xl); margin-bottom: var(--sp-md); }
.ow-page-content ul, .ow-page-content ol { margin-bottom: var(--sp-lg); padding-left: 1.5rem; }
.ow-page-content ul { list-style: disc; }
.ow-page-content ol { list-style: decimal; }
.ow-page-content li { margin-bottom: var(--sp-sm); }
.ow-page-content img { border-radius: var(--radius-md); margin: var(--sp-lg) 0; }
.ow-page-content a { color: var(--ow-rose); text-decoration: underline; text-underline-offset: 2px; }
.ow-page-content a:hover { color: var(--ow-burgundy); }
.ow-page-content blockquote {
  margin: var(--sp-xl) 0;
  padding: var(--sp-lg) var(--sp-xl);
  border-left: 4px solid var(--ow-rose);
  background: var(--ow-blush);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ==========================================================================
   18. 404 PAGE
   ========================================================================== */

.ow-404 {
  text-align: center;
  padding: var(--sp-4xl) var(--sp-xl);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ow-404-code {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--ow-rose-pale);
  line-height: 1;
  margin-bottom: var(--sp-md);
}
.ow-404 h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-md);
}
.ow-404 p {
  color: var(--ow-text-muted);
  max-width: 420px;
  margin-bottom: var(--sp-xl);
}
.ow-404-search {
  display: flex;
  gap: var(--sp-sm);
  max-width: 380px;
  width: 100%;
}
.ow-404-search input {
  flex: 1;
  padding: .7rem 1rem;
  border: 1px solid var(--ow-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  background: var(--ow-white);
}
.ow-404-search input:focus {
  outline: none;
  border-color: var(--ow-rose);
}

/* ==========================================================================
   19. SEARCH RESULTS
   ========================================================================== */

.ow-search-header {
  text-align: center;
  padding: var(--sp-3xl) 0 var(--sp-xl);
}
.ow-search-header h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-sm);
}
.ow-search-header h1 span {
  color: var(--ow-rose);
}

/* ==========================================================================
   20. WORDPRESS CORE OVERRIDES
   ========================================================================== */

.wp-caption { max-width: 100%; }
.wp-caption-text {
  font-size: var(--fs-xs);
  color: var(--ow-text-muted);
  margin-top: var(--sp-sm);
  text-align: center;
}
.aligncenter { display: block; margin-inline: auto; }
.alignleft { float: left; margin-right: var(--sp-lg); margin-bottom: var(--sp-md); }
.alignright { float: right; margin-left: var(--sp-lg); margin-bottom: var(--sp-md); }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--sp-sm); }
.gallery-item { margin: 0; }
.wp-block-image img { border-radius: var(--radius-md); }
.wp-block-quote {
  margin: var(--sp-xl) 0;
  padding: var(--sp-lg) var(--sp-xl);
  border-left: 4px solid var(--ow-rose-accent);
  background: var(--ow-blush);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Plugin Compatibility: Contact Forms (CF7, WPForms, Fluent Forms) */
.wpcf7 form, .wpforms-container form, .fluentform {
  max-width: 100%;
}
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: var(--sp-md);
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpforms-field input,
.wpforms-field textarea,
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--ow-border-soft);
  border-radius: var(--radius-md);
  background: var(--ow-white);
  color: var(--ow-wine-dark);
  font-family: inherit;
  font-size: var(--fs-sm);
  outline: none;
  transition: border-color var(--dur);
}
.wpcf7 input:focus, .wpcf7 textarea:focus,
.wpforms-field input:focus, .wpforms-field textarea:focus {
  border-color: var(--ow-rose-accent);
}
.wpcf7 input[type="submit"],
.wpforms-submit,
.fluentform .ff-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.8rem;
  background: var(--ow-wine-dark);
  color: var(--ow-white);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--dur), background var(--dur);
}
.wpcf7 input[type="submit"]:hover,
.wpforms-submit:hover,
.fluentform .ff-btn-submit:hover {
  background: var(--ow-rose-accent);
  transform: translateY(-2px);
}

/* Plugin Compatibility: Table of Contents */
.ez-toc-container, .lwptoc, #toc_container {
  background: var(--ow-body-bg) !important;
  border: 1px solid var(--ow-border-soft) !important;
  border-radius: var(--radius-md) !important;
  padding: var(--sp-lg) !important;
  margin: var(--sp-xl) 0 !important;
}

/* Plugin Compatibility: LazyLoad / WebP Image Handlers */
img.lazyload, img.lazyloading {
  opacity: 0;
  transition: opacity .3s ease-in;
}
img.lazyloaded {
  opacity: 1;
}

/* Plugin Compatibility: Yoast & RankMath Breadcrumbs */
#breadcrumbs, .yoast-breadcrumb, .rank-math-breadcrumb {
  padding: var(--sp-md) 0;
  font-size: var(--fs-xs);
  color: var(--ow-wine-muted);
}
#breadcrumbs a, .yoast-breadcrumb a, .rank-math-breadcrumb a {
  color: var(--ow-wine-muted);
}
#breadcrumbs a:hover, .yoast-breadcrumb a:hover, .rank-math-breadcrumb a:hover {
  color: var(--ow-rose-accent);
}

/* ==========================================================================
   21. RESPONSIVE & MOBILE OPTIMIZATIONS
   ========================================================================== */

/* Base Burger (Hidden on Desktop) */
.ow-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(61, 22, 45, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
  transition: background var(--dur), transform var(--dur), border-color var(--dur);
}
.ow-burger:hover {
  background: #ffffff;
  border-color: var(--ow-wine-dark);
}

.ow-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ow-wine-dark);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}
.ow-burger span:not(:last-child) {
  margin-bottom: 5px;
}

/* Morph to 'X' on toggle */
.ow-burger[aria-expanded="true"] {
  background: #ffffff;
}
.ow-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ow-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ow-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .ow-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
    text-align: center;
  }
  .ow-hero .curl {
    margin-inline: auto;
  }
  .ow-hero .lead {
    margin-inline: auto;
  }
  .ow-hero-actions {
    justify-content: center;
  }
  .ow-hero-cards {
    min-height: 360px;
    max-width: 380px;
    margin-inline: auto;
  }
  .ow-frame-main {
    width: 260px;
    height: 330px;
  }
  .ow-spotlight-inner {
    grid-template-columns: 1fr;
  }
  .ow-spotlight-img { min-height: 260px; }
  .ow-spotlight-text {
    padding: var(--sp-xl);
  }
  .ow-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .ow-burger { 
    display: flex; 
    order: 3;
  }

  .ow-search-wrap {
    order: 2;
    margin-left: auto;
    margin-right: var(--sp-xs);
  }

  .ow-logo {
    order: 1;
  }

  /* Full Screen / Drawer Mobile Nav */
  .ow-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    padding: var(--sp-xl) var(--sp-lg);
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(61, 22, 45, 0.12);
  }
  .ow-nav.ow-mobile-open {
    transform: translateX(0);
  }

  .ow-nav > li {
    width: 100%;
  }

  .ow-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem .75rem;
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--ow-wine-dark);
    border-bottom: 1px solid var(--ow-border);
    border-radius: 0;
  }
  .ow-nav > li > a:hover {
    background: var(--ow-blush);
    color: var(--ow-wine-dark);
  }

  .ow-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #faf4f6;
    padding: 0 0 0 var(--sp-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease-out);
  }
  .ow-nav > li.ow-mobile-expanded > .ow-dropdown {
    max-height: 500px;
    padding: var(--sp-sm) 0 var(--sp-sm) var(--sp-md);
  }

  /* Optimized Mobile Hero Section */
  .ow-hero { 
    padding: var(--sp-2xl) 0 var(--sp-xl); 
    text-align: center;
  }
  .ow-hero h1 { 
    font-size: clamp(1.85rem, 7vw, 2.4rem); 
    line-height: 1.25;
    margin-bottom: var(--sp-md);
  }
  .ow-hero .lead { 
    font-size: var(--fs-sm); 
    line-height: 1.65;
    margin-bottom: var(--sp-lg);
  }

  .ow-hero-cards {
    display: block;
    position: relative;
    margin-top: var(--sp-xl);
    min-height: 330px;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
  .ow-frame-main {
    width: 220px;
    height: 290px;
    transform: translate(-55%, -50%);
    animation: ow-main-float 5s ease-in-out infinite;
  }
  .ow-frame-accent {
    width: 130px;
    height: 165px;
    right: 2%;
    bottom: 2%;
    animation: ow-accent-float 4.5s ease-in-out infinite 0.5s;
  }
  .ow-tag-float {
    top: 2%;
    right: 2%;
    padding: .45rem .8rem;
    font-size: .7rem;
  }

  .ow-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    gap: var(--sp-sm);
  }
  .ow-hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: .85rem 1.5rem;
  }

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

  .ow-browse-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
  }

  .ow-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-xs);
  }

  .ow-footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .ow-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-sm);
  }

  .ow-single-header h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .ow-single-content { font-size: var(--fs-base); }

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

@media (max-width: 480px) {
  .wrap { padding-inline: 1rem; }
  .ow-nav-wrap { padding-inline: 1rem; }

  .ow-logo-text {
    font-size: 1.2rem;
  }

  .ow-logo-mark {
    width: 34px;
    height: 34px;
    font-size: var(--fs-sm);
  }

  .ow-browse-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }

  .ow-hero-cards {
    min-height: 290px;
    max-width: 280px;
  }
  .ow-frame-main {
    width: 190px;
    height: 250px;
  }
  .ow-frame-accent {
    width: 110px;
    height: 140px;
  }

  .ow-cta-band h2 { font-size: var(--fs-xl); }

  .ow-save-row {
    flex-direction: column;
  }
  .ow-save-row a { width: 100%; justify-content: center; }

  .ow-archive-header h1 { font-size: var(--fs-2xl); }

  .ow-404-code { font-size: 4.5rem; }
}

/* ==========================================================================
   22. HAUTE COUTURE SIGNATURE EDITION (Outfit Formulas, Swatches & Progress)
   ========================================================================== */

/* Reading Progress Bar */
.ow-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--ow-gold) 0%, var(--ow-rose-accent) 50%, var(--ow-gold) 100%);
  z-index: 1002;
  transition: width 0.1s ease-out;
}

/* Monogram Ring */
.ow-logo-mark {
  position: relative;
  box-shadow: 0 0 0 2px rgba(201, 154, 104, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ow-footer-logo-mark {
  position: relative;
  box-shadow: 0 0 0 2px rgba(201, 154, 104, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Outfit Formula Blueprint Cards */
.ow-formula-card {
  margin: var(--sp-2xl) 0;
  background: var(--ow-white);
  border: 1px solid var(--ow-border-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.ow-formula-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--ow-gold) 0%, var(--ow-rose-accent) 100%);
}

.ow-formula-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.ow-formula-title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--ow-wine-dark);
  font-weight: 700;
  margin: 0;
}

.ow-formula-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  background: var(--ow-blush);
  color: var(--ow-wine-dark);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--radius-full);
}

.ow-formula-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.ow-formula-item {
  background: var(--ow-body-bg);
  padding: var(--sp-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(61, 22, 45, 0.06);
}

.ow-formula-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ow-rose-accent);
  margin-bottom: .25rem;
}

.ow-formula-val {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ow-wine-dark);
  line-height: 1.4;
}

/* Palette Swatches */
.ow-swatch-row {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px dashed var(--ow-border-soft);
  flex-wrap: wrap;
}

.ow-swatch-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ow-wine-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ow-swatches {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}

.ow-swatch {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .6rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--ow-border-soft);
  font-size: .7rem;
  font-weight: 600;
  color: var(--ow-wine-dark);
}

.ow-swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

/* ==========================================================================
   23. PRINT STYLES
   ========================================================================== */

@media print {
  .ow-header,
  .ow-footer,
  .ow-marquee-band,
  .ow-cta-band,
  .ow-hero-cards,
  .ow-related,
  .ow-comments,
  .ow-post-nav,
  .ow-pagination { display: none; }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .ow-single-content a { color: black; text-decoration: underline; }
  .ow-single-content a::after { content: ' (' attr(href) ')'; font-size: .8em; }
}
