/*
Theme Name: Organising U
Theme URI: https://organising-u.com
Author: Samurai Web Consulting
Author URI: https://samuraiwebconsulting.com
Description: One-page WordPress theme for Organising U – Streamlined Living. Elegant black and gold design with fully Customizer-driven content.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: one-page, custom-logo, full-width-template, custom-colors
Text Domain: organising-u
*/

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

:root {
  --black:       #080808;
  --black-soft:  #111111;
  --black-mid:   #1a1a1a;
  --gold:        #c9a84c;
  --gold-light:  #e0c87a;
  --gold-dark:   #9a7b2e;
  --gold-pale:   rgba(201,168,76,0.12);
  --off-white:   #f5f0e8;
  --white:       #ffffff;
  --text-light:  #c8c0b0;
  --text-muted:  #7a7060;
  --border:      rgba(201,168,76,0.25);
  --radius:      4px;
  --transition:  0.35s ease;
  --max-width:   1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--black);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Shared section padding */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* Gold divider */
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 0 auto 28px;
}
.gold-line--left { margin-left: 0; }

/* Section label */
.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* Section heading */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.75;
}
.section-subtitle--center { margin: 0 auto; text-align: center; }

/* Gold CTA button */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border-radius: var(--radius);
}
.btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--filled {
  background: var(--gold);
  color: var(--black);
}
.btn--filled:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
}

/* Button size variants */
.btn--sm {
  font-size: 0.72rem;
  padding: 10px 24px;
  letter-spacing: 0.15em;
}
.btn--md {
  font-size: 0.82rem;
  padding: 15px 42px;
  letter-spacing: 0.18em;
}
.btn--lg {
  font-size: 0.96rem;
  padding: 19px 58px;
  letter-spacing: 0.2em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #ECEADA;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0px 20px 80px;
  max-width: 780px;
  width: 100%;
}

/* Logo — clean, no shadow, no box. Size controlled by Customizer or defaults to 200px */
.hero__logo {
  max-width: 200px;      /* default; overridden by inline style when custom size is set */
  margin: 0 auto 32px;
  animation: fadeDown 0.9s ease both;
}
.hero__logo img  { width: 100%; height: auto; display: block; }
.hero__logo a    { display: block; }

/* When WP custom_logo() is used, strip its inline size constraints */
.hero__logo .custom-logo-link { display: block; }
.hero__logo .custom-logo      { width: 100%; height: auto; max-width: 100%; }

/* Main headline */
.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 700;
  color: #2a2318;
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeDown 1s 0.15s ease both;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-dark);
}

/* Sub-heading */
.hero__subtext {
  font-size: 1.08rem;
  color: #5a5040;
  max-width: 480px;
  margin: 0 auto 14px;
  line-height: 1.4;
  font-weight: 400;
  animation: fadeDown 1s 0.25s ease both;
}

/* CTA block */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeDown 1s 0.35s ease both;
}

.hero__cta-pre {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #7a6e5c;
  letter-spacing: 0.04em;
}

/* Hero button — gold filled on light bg */
.hero .btn--filled {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.hero .btn--filled:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #a09880;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition);
  text-decoration: none;
}
.hero__scroll:hover { color: var(--gold-dark); }
.hero__scroll svg { animation: bounce 2s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.about {
  background-color: var(--black-soft);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about__text .section-subtitle { max-width: 100%; }

.about__body {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px;
}

.about__image-wrap {
  position: relative;
}
.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
/* Gold corner accent */
.about__image-wrap::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}
.about__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background-color: var(--black-mid);
}

.services__header {
  text-align: center;
  margin-bottom: 58px;
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--gold);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  transition: stroke var(--transition);
}
.service-card:hover .service-card__icon svg {
  stroke: var(--black);
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process {
  background-color: var(--black-soft);
}

.process__header {
  text-align: center;
  margin-bottom: 58px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
/* Connecting line between steps */
.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: var(--black-soft);
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.process-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background-color: var(--black);
}

.gallery__header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  border-radius: var(--radius);
}

.gallery__item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__item-label {
  font-size: 0.8rem;
  color: var(--off-white);
  letter-spacing: 0.08em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background-color: var(--black-mid);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
}

.testimonial-card__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 26px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-card__stars span {
  color: var(--gold);
  font-size: 0.85rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}
.testimonial-card__photo-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--off-white);
  display: block;
}
.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   CTA / CONTACT BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--black-soft) 0%, var(--black-mid) 50%, var(--black-soft) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__eyebrow { color: var(--gold); }
.cta-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--off-white);
  margin-bottom: 18px;
}
.cta-section__title em { font-style: italic; color: var(--gold-light); }
.cta-section__subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 38px;
  line-height: 1.75;
}
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT DETAILS
   ============================================================ */
.contact {
  background-color: var(--black-soft);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact__info-list {
  list-style: none;
  margin: 28px 0;
}
.contact__info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.contact__info-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact__social {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.contact__social-link {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.contact__social-link:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.contact__social-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  color: var(--off-white);
  outline: none;
  transition: border-color var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.footer__logo {
  max-width: 120px;
  margin: 0 auto 20px;
  opacity: 0.7;
}
.footer__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.footer__credit {
  font-size: 0.72rem;
  color: rgba(122,112,96,0.6);
}
.footer__credit a { color: rgba(201,168,76,0.5); }
.footer__credit a:hover { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid     { grid-template-columns: repeat(2, 1fr); }
  .process__steps     { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:first-child { grid-row: auto; }
  .about__inner       { gap: 48px; }
}

@media (max-width: 768px) {
  .section  { padding: 64px 0; }
  .about__inner    { grid-template-columns: 1fr; }
  .about__image-wrap { order: -1; }
  .contact__inner  { grid-template-columns: 1fr; gap: 48px; }
  .services__grid  { grid-template-columns: 1fr; }
  .process__steps  { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery__grid   { grid-template-columns: 1fr 1fr; }
  .hero__logo      { max-width: 160px; }
}

@media (max-width: 480px) {
  .process__steps  { grid-template-columns: 1fr; }
  .gallery__grid   { grid-template-columns: 1fr; }
  .gallery__item:first-child { grid-row: auto; }
  .hero__logo      { max-width: 160px; }
  .cta-section__actions { flex-direction: column; align-items: stretch; text-align: center; }
  .btn { text-align: center; }
}

/* ============================================================
   WP ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .hero { min-height: calc(100vh - 32px); }
@media (max-width: 782px) {
  .admin-bar .hero { min-height: calc(100vh - 46px); }
}

/* ============================================================
   CONTENT SECTIONS  (Homepage Template — meta box repeater)
   Designed to match the About section aesthetic.
   ============================================================ */

.ou-section {
  padding: 90px 0;
}

/* Two-column grid — mirrors .about__inner */
.ou-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Image on right (default) — image col is second */
.ou-section--img-right .ou-section__image-col { order: 2; }
.ou-section--img-right .ou-section__text-col  { order: 1; }

/* Image on left — image col is first */
.ou-section--img-left .ou-section__image-col  { order: 1; }
.ou-section--img-left .ou-section__text-col   { order: 2; }

/* ---- Image column ---- */
.ou-section__image-wrap {
  position: relative;
}

.ou-section__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.ou-section__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gold corner accents — exact same as .about__image-wrap */
.ou-section__image-wrap::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}
.ou-section__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

/* Flip corners when image is on the right */
.ou-section--img-right .ou-section__image-wrap::before {
  left: auto;
  right: -14px;
  border-left: none;
  border-right: 2px solid var(--gold);
}
.ou-section--img-right .ou-section__image-wrap::after {
  right: auto;
  left: -14px;
  border-right: none;
  border-left: 2px solid var(--gold);
}

/* ---- Text column ---- */
.ou-section__eyebrow {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ou-section__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.25;
  margin-bottom: 20px;
  margin-top: 0;
}

.ou-section__body {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 32px;
}
.ou-section__body p { margin-bottom: 1em; }
.ou-section__body p:last-child { margin-bottom: 0; }

/* Button on a light background override */
.btn.btn--on-light {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn.btn--on-light:hover {
  background: var(--gold-dark);
  color: #fff;
  border-color: var(--gold-dark);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ou-section__inner { gap: 50px; }
}

@media (max-width: 768px) {
  .ou-section { padding: 64px 0; }
  .ou-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Always put image on top on mobile */
  .ou-section--img-right .ou-section__image-col,
  .ou-section--img-left  .ou-section__image-col { order: 1; }
  .ou-section--img-right .ou-section__text-col,
  .ou-section--img-left  .ou-section__text-col  { order: 2; }

  /* Reset corner accents for mobile single-col */
  .ou-section__image-wrap::before,
  .ou-section--img-right .ou-section__image-wrap::before {
    top: -10px; left: -10px; right: auto;
    border: none;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    width: 50px; height: 50px;
  }
  .ou-section__image-wrap::after,
  .ou-section--img-right .ou-section__image-wrap::after {
    bottom: -10px; right: -10px; left: auto;
    border: none;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    width: 50px; height: 50px;
  }
}

/* ---- Image shape variants ---- */
.ou-section__image--radius {
  border-radius: 10px;
}
.ou-section__image--square {
  border-radius: 0;
}
.ou-section__image--round {
  border-radius: 50%;
  aspect-ratio: 1 / 1 !important;  /* force square crop for circle */
  object-fit: cover;
}

/* Round image: corners don't make sense — hide them */
.ou-section__image--round ~ * { display: none; }
.ou-section__image-wrap:has(.ou-section__image--round)::before,
.ou-section__image-wrap:has(.ou-section__image--round)::after {
  display: none;
}

/* ---- Caption ---- */
.ou-section__caption {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   TEXT / CTA BLOCKS  (centred by default)
   ============================================================ */
.ou-text-block {
  padding: 80px 0;
  text-align: center;
}

.ou-text-block__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Gold line — reuse shared .gold-line, already centred */
.ou-text-block .gold-line { margin-bottom: 24px; }

.ou-text-block__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.25;
  margin: 0 0 20px;
}

.ou-text-block__body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 620px;
  text-align: center;
}
.ou-text-block__body p { margin-bottom: 1em; }
.ou-text-block__body p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .ou-text-block { padding: 60px 0; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ou-testimonials { padding: 90px 0; }
.ou-testimonials__header { text-align: center; margin-bottom: 50px; }
.ou-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ou-testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition);
}
.ou-testimonial-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.ou-stars { font-size: 1.05rem; letter-spacing: 2px; }
.ou-star-empty { opacity: 0.25; }
.ou-testimonial__content {
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.8;
  flex: 1;
  margin: 0;
  quotes: '\201C' '\201D';
}
.ou-testimonial__content::before { content: open-quote; }
.ou-testimonial__content::after  { content: close-quote; }
.ou-testimonial__author { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
.ou-testimonial__name { font-size: 0.9rem; font-weight: 600; }
.ou-testimonial__role { font-size: 0.8rem; opacity: 0.7; }

/* ============================================================
   VIDEO EMBED
   ============================================================ */
.ou-video-section { padding: 90px 0; text-align: center; }
.ou-video__header  { margin-bottom: 36px; }
.ou-video__intro   { font-size: 1rem; max-width: 600px; margin: 0 auto 0; line-height: 1.75; }
.ou-video__embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(201,168,76,0.35);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  margin-bottom: 32px;
}
.ou-video__embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.ou-video__cta { text-align: center; }

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.ou-before-after { padding: 90px 0; }
.ou-ba__header    { text-align: center; margin-bottom: 50px; }
.ou-ba__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.ou-ba__pair {
  border: 2px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
}
.ou-ba__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ou-ba__img-wrap { position: relative; overflow: hidden; }
.ou-ba__img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ou-ba__pair:hover .ou-ba__img-wrap img { transform: scale(1.04); }
.ou-ba__tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.ou-ba__tag--after {
  background: var(--gold);
  color: var(--black);
  left: auto;
  right: 8px;
}
/* Gold divider between Before/After */
.ou-ba__images { border-bottom: 2px solid var(--gold); position: relative; }
.ou-ba__images::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
}
.ou-ba__caption {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  padding: 10px 16px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.ou-faq { padding: 90px 0; }
.ou-faq__header { margin-bottom: 40px; }
.ou-faq__list { display: flex; flex-direction: column; gap: 8px; max-width: 820px; }

.ou-faq__item {
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.ou-faq__item[open] { border-color: var(--gold); }

.ou-faq__question {
  list-style: none;
  padding: 18px 50px 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
  position: relative;
  transition: background var(--transition);
}
.ou-faq__question::-webkit-details-marker { display: none; }
.ou-faq__question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}
.ou-faq__item[open] .ou-faq__question { background: rgba(201,168,76,0.06); }
.ou-faq__item[open] .ou-faq__question::after { transform: translateY(-50%) rotate(45deg); }

.ou-faq__answer {
  padding: 6px 22px 20px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.ou-faq__answer p { margin-bottom: 0.8em; }

/* ============================================================
   WIDTH HELPERS
   ============================================================ */
.ou-w-full { width: 100%; padding: 0 5%; box-sizing: border-box; }

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .ou-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .ou-ba__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .ou-testimonials { padding: 64px 0; }
  .ou-testimonials__grid { grid-template-columns: 1fr; }
  .ou-video-section { padding: 64px 0; }
  .ou-before-after  { padding: 64px 0; }
  .ou-faq { padding: 64px 0; }
}
