/*
Theme Name: Health Creativity
Author: Renata Novaes
Version: 1.0
*/

/* =========================
   GOOGLE FONTS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* =========================
   ROOT VARIABLES
========================= */

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d8;

  --burgundy: #5c1a1a;
  --burgundy-mid: #7a2020;

  --gold: #b07d3a;
  --gold-light: #c9973f;
  --gold-pale: #d4a850;

  --text-dark: #3a1a1a;
  --text-body: #4a2020;

  --white: #ffffff;

  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;

  --nav-h: 72px;
}

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

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

/* =========================
   BASE STYLES
========================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  padding-top: var(--nav-h);
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin-bottom: 15px;
}

p {
  margin-bottom: 10px;
}

/* =========================
   HIDE DEFAULT WORDPRESS CONTENT
========================= */

.entry-content,
.post-content,
.page-content,
.entry-header,
.post-header,
.page-header,
.hentry,
.entry-title,
.page-title,
.post-title,
.entry-content,
 .post-content,
 .page-content,
.hentry {
  display: none !important;
}

/* Make sure custom sections remain visible */
section[id] {
  display: block !important;
  visibility: visible !important;
}

/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: var(--nav-h);
  z-index: 1000;

  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(176, 125, 58, 0.28);

  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.97);
  border-bottom-color: rgba(176, 125, 58, 0.45);
}

.nav-container {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   LOGO
========================= */

.logo a {
  font-family: 'Alex Brush', cursive;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;

  color: var(--burgundy);
  text-decoration: none;

  position: relative;
  display: inline-block;

  transition: color 0.25s ease;
}

.logo a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    to right,
    var(--gold),
    transparent
  );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}

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

.logo a:hover::after {
  transform: scaleX(1);
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: var(--text-body);
  text-decoration: none;

  position: relative;
  padding-bottom: 2px;

  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition:
    width 0.3s ease,
    left 0.3s ease;
}

/* Hover state */
.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::after {
  width: 100%;
  left: 0;
}

/* Current/selected page state */
.nav-menu a.active,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--gold);
}

.nav-menu a.active::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
  width: 100%;
  left: 0;
}

/* =========================
   HAMBURGER BUTTON
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;

  width: 36px;
  height: 36px;

  background: none;
  border: none;
  cursor: pointer;

  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 1.5px;

  background: var(--burgundy);
  border-radius: 2px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.25s ease,
    width 0.3s ease;
}

.hamburger span:nth-child(1) {
  width: 24px;
}

.hamburger span:nth-child(2) {
  width: 16px;
}

.hamburger span:nth-child(3) {
  width: 20px;
}

.hamburger:hover span {
  background: var(--gold);
}

/* Open hamburger state */
.hamburger.is-open span:nth-child(1) {
  width: 24px;
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  width: 24px;
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100dvh;

    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;

    padding: 48px 40px;

    transform: translateY(-100%);
    transition: transform 0.38s cubic-bezier(0.77, 0, 0.175, 1);

    z-index: 1050;
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    max-width: 280px;

    padding: 16px 0;

    font-size: 15px;
    letter-spacing: 0.2em;
    text-align: center;

    border-bottom: 1px solid rgba(176, 125, 58, 0.15);
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-menu a::after {
    bottom: 6px;
  }

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

  .nav-menu a:hover::after,
  .nav-menu a:active::after,
  .nav-menu a.active::after,
  .nav-menu .current-menu-item > a::after,
  .nav-menu .current_page_item > a::after {
    width: 60%;
    left: 20%;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .nav-container {
    padding: 0 22px;
  }

  .logo a {
    font-size: 29px;
  }

  .nav-menu a {
    font-size: 14px;
    letter-spacing: 0.18em;
  }
}


/* =====================================================
   HERO V2 - ASHA LAVA PREMIUM EDITORIAL
===================================================== */

.hero-v2 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #f5f0e8;
  overflow: hidden;
  position: relative;
  font-family: var(--ff-sans, "Montserrat", sans-serif);
}

/* ========================================
   HERO IMAGE
======================================== */

.hero-v2__hero {
  
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    border-bottom: 1px solid rgba(193,145,74,.18);
  }


.hero-v2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(15, 10, 8, 0.78) 0%,
      rgba(15, 10, 8, 0.55) 35%,
      rgba(15, 10, 8, 0.25) 65%,
      rgba(15, 10, 8, 0.08) 100%
    );
}

.hero-v2__content {
  position: relative;
  z-index: 2;
  min-height: 88vh;
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 90px;
}

/* ========================================
   HERO TITLE
======================================== */

.hero-v2__title {
  font-family: "Alex Brush", cursive;
  font-size: clamp(5rem, 8.5vw, 8rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: 0;
  text-shadow:
    0 5px 20px rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-v2__title-rule {
  width: 70px;
  height: 2px;
  margin: 22px auto 0;
  background: #c69b58;
}

/* Bigger hero bio text */
.hero-v2__hero-bio {
  
max-width:950px;
margin:0 auto 70px;

text-align:center;

font-family:var(--ff-serif,"Cormorant Garamond",serif);
font-size:clamp(1.45rem,2vw,1.85rem);
line-height:1.7;
font-weight:300;

color:#6a1e1e;

}
.hero-v2__intro-bio{
  max-width:950px;
  margin:0 auto 70px;

  text-align:center;

  font-family:var(--ff-serif,"Cormorant Garamond",serif);
  font-size:clamp(1.45rem,2vw,1.85rem);
  line-height:1.7;
  font-weight:300;

  color:#6a1e1e;
}


/* ========================================
   WHAT IS ASHA LAVA
======================================== */

.hero-v2__what {
  background: #f5f0e8;
  padding: 80px 30px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-v2__what::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 300px;
  height: 100%;
  opacity: 0.05;
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0 25px,
      rgba(176, 125, 58, 0.5) 26px 27px,
      transparent 28px 50px
    );
}

.hero-v2__what::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 0;
  width: 300px;
  height: 100%;
  opacity: 0.05;
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0 25px,
      rgba(176, 125, 58, 0.5) 26px 27px,
      transparent 28px 50px
    );
}

.hero-v2__what-inner {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-v2__what-title {
  font-family: var(--ff-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: #6a1e1e;
  margin: 0 0 20px;
}

.hero-v2__what-title::after {
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  margin: 20px auto 0;
  background: #c1914a;
}

/* Increased lead text size */
.hero-v2__what-lead {
  max-width: 850px;
  margin: 0 auto 60px;
  font-family: "Alex Brush", cursive;
  font-style: normal;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.45;
  color: #c1914a;
}

/* 3 Column Grid */
.hero-v2__what-grid {
  
display:grid;
grid-template-columns:repeat(2,1fr);
gap:60px;
max-width:1000px;
margin:45px auto 0;

}

.hero-v2__what-card {
  padding: 0 42px;
  position: relative;
}


.hero-v2__what-card:first-child{
  border-right:1px solid rgba(193,145,74,.28);
  padding-right:40px;
}

.hero-v2__what-card:last-child{
  padding-left:40px;
}

/* Increased card paragraph text */
.hero-v2__what-card p {
  margin: 0;
  font-family: var(--ff-sans, "Montserrat", sans-serif);
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.85;
  color: #6b5050;
  font-weight: 300;
  text-align: center;
}

/* ========================================
   ANIMATIONS
======================================== */

@media (prefers-reduced-motion: no-preference) {
  .hero-v2__title,
  .hero-v2__hero-bio {
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 1.1s ease forwards;
  }

  .hero-v2__hero-bio {
    animation-delay: 0.25s;
  }

  .hero-v2__what-inner {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.8s ease forwards;
  }

  @keyframes heroFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes heroFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .hero-v2__hero {
    min-height: 70vh;
  }

  .hero-v2__content {
    min-height: 70vh;
    width: 88%;
    padding-top: 70px;
  }

  .hero-v2__title {
    font-size: clamp(4rem, 13vw, 6rem);
  }

  .hero-v2__hero-bio {
    max-width: 720px;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.65;
  }

  .hero-v2__what {
    padding: 70px 24px 75px;
  }

  .hero-v2__what-title {
    font-size: 2.7rem;
  }

  .hero-v2__what-lead {
    max-width: 700px;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    line-height: 1.55;
    margin-bottom: 45px;
  }

  .hero-v2__what-grid {
    
  grid-template-columns:1fr;
  gap:32px;

  }

  .hero-v2__what-card {
    padding: 0 0 32px;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-v2__what-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(193, 145, 74, 0.28);
  }

  .hero-v2__what-card p {
    font-size: 1.05rem;
    line-height: 1.85;
  }

.hero-v2__what-card:first-child{
  border-right:none;
  border-bottom:1px solid rgba(193,145,74,.28);
  padding-right:0;
  padding-bottom:32px;
}

.hero-v2__what-card:last-child{
  padding-left:0;
}

}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 480px) {
  .hero-v2__hero {
    min-height: 62vh;
  }

  .hero-v2__content {
    min-height: 62vh;
    padding-top: 55px;
  }

  .hero-v2__title {
    font-size: 3.4rem;
  }

  .hero-v2__title-rule {
    width: 55px;
    margin-top: 16px;
  }

  .hero-v2__hero-bio {
    margin-top: 28px;
    font-size: 1.35rem;
    line-height: 1.6;
  }

 
  .hero-v2__what {
    padding: 60px 18px 65px;
  }

  .hero-v2__what-title {
    font-size: 2.3rem;
  }

  .hero-v2__what-lead {
    font-size: 1.35rem;
    line-height: 1.55;
    margin-bottom: 38px;
  }

  .hero-v2__what-card p {
    font-size: 1rem;
    line-height: 1.8;
  }
}
/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 20px;
  background: #f8f7f2;
}

.about {
  padding: 80px 0;
}

 /* ════════════════════════════════════════════════════════
   OFFERINGS — ZIGZAG TWO-IMAGE COLLAGE SECTIONS
════════════════════════════════════════════════════════ */

.of3 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--rn-cream, #f5f0e8);
  overflow: hidden;
}

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

.of3__header {
  text-align: center;
  padding: 5rem 1.5rem 3.5rem;
  background: var(--rn-cream, #f5f0e8);
}

.of3__eyebrow {
  font-family: var(--ff-sans, sans-serif);
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rn-gold, #b07d3a);
  margin: 0 0 0.5rem;
}

.of3__flourish {
  color: var(--rn-gold, #b07d3a);
  margin-bottom: 1rem;
}

.of3__title {
  font-family: var(--ff-serif, serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--rn-burgundy, #5c1a1a);
  margin: 0;
}

.of3__subtitle {
  font-family: "Alex Brush", cursive;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--rn-gold, #b07d3a);
  margin: 0.4rem 0 0;
}

/* ========================================
   ROW LAYOUT
======================================== */

.of3__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: auto;
}

/* Image right */
.of3__row--imgright .of3__img-col {
  order: 2;
}

.of3__row--imgright .of3__content-col {
  order: 1;
}

/* Image left */
.of3__row--imgleft .of3__img-col {
  order: 1;
}

.of3__row--imgleft .of3__content-col {
  order: 2;
}

/* ========================================
   IMAGE COLUMN — TWO IMAGE COLLAGE
======================================== */

.of3__img-col {
  position: relative;
  background: var(--rn-cream, #f5f0e8);
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 4rem 3.5rem;
  min-height: 100%;
}

/* Overall collage area */
.of3__img-collage {
  position: relative;
  width: min(88%, 660px);
  height: clamp(620px, 62vw, 720px);
}

/* Back / main image — increased height */
.of3__img-collage .img-primary {
  position: absolute;
  top: 4%;
  left: 0;

  width: 74%;
  height: 100%;

  object-fit: cover;
  object-position: center;
  display: block;

  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
}

/* Front / secondary overlapping image */
.of3__img-collage .img-secondary {
  position: absolute;
  right: 0;
  bottom: 5%;

  width: 48%;
  height: 43%;

  object-fit: cover;
  object-position: center;
  display: block;

  border: 3px solid var(--rn-gold, #b07d3a);
  background: var(--rn-cream, #f5f0e8);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

/* Mirror collage when image is on the right */
.of3__row--imgright .of3__img-collage .img-primary {
  left: auto;
  right: 0;
}

.of3__row--imgright .of3__img-collage .img-secondary {
  right: auto;
  left: 0;
}

/* Decorative circle */
.of3__img-collage::before {
  content: "";
  position: absolute;
  top: 2%;

  width: 58px;
  height: 58px;

  border: 1px solid rgba(176, 125, 58, 0.3);
  border-radius: 50%;

  pointer-events: none;
}

.of3__row--imgleft .of3__img-collage::before {
  right: 0;
}

.of3__row--imgright .of3__img-collage::before {
  left: 0;
}

/* Small decorative gold line */
.of3__img-collage::after {
  content: "";
  position: absolute;
  bottom: 2%;

  width: 40px;
  height: 2px;

  background: var(--rn-gold, #b07d3a);
  opacity: 0.5;
}

.of3__row--imgleft .of3__img-collage::after {
  right: 4%;
}

.of3__row--imgright .of3__img-collage::after {
  left: 4%;
}

/* ========================================
   CONTENT COLUMN
======================================== */

.of3__content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 4.2rem 4.2rem;
  background: var(--rn-parchment, #ede6d8);
}

.of3__row--imgleft .of3__content-col {
  background: var(--rn-cream, #f5f0e8);
}

.of3__row--imgright .of3__content-col {
  background: var(--rn-parchment, #ede6d8);
}

.of3__num {
  font-family: var(--ff-serif, serif);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--rn-gold, #b07d3a);
  margin: 0 0 0.65rem;
}

.of3__service-title {
  font-family: var(--ff-serif, serif);
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--rn-burgundy, #5c1a1a);
  margin: 0 0 1.8rem;
}

.of3__intro {
  font-family: var(--ff-sans, sans-serif);
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--rn-muted, #6b5050);
  margin: 0 0 1.25rem;
}

.of3__col-title {
  font-family: var(--ff-serif, serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--rn-burgundy, #5c1a1a);
  margin: 2rem 0 0.95rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--rn-divider, rgba(176, 125, 58, 0.25));
}

/* ========================================
   BULLET LISTS
======================================== */

.of3__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.of3__list li {
  position: relative;
  padding-left: 1.7rem;

  font-family: var(--ff-sans, sans-serif);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--rn-muted, #6b5050);

  margin: 0 0 0.72rem;
}

.of3__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.08rem;

  color: var(--rn-gold, #b07d3a);
  font-size: 0.78rem;
  line-height: 1.75;
}

/* Hide browser default marker */
.of3__list li::marker {
  display: none;
}

/* ========================================
   CLOSING LINE
======================================== */

.of3__closing-line {
  font-family: var(--ff-serif, serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--rn-burgundy, #5c1a1a);

  margin: 2rem 0 0;
  padding-top: 1.7rem;

  border-top: 1px solid var(--rn-divider, rgba(176, 125, 58, 0.25));
}

/* ========================================
   CTA BUTTON
======================================== */

.of3__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  margin-top: 2.2rem;
  padding: 0.95rem 2rem;

  font-family: var(--ff-sans, sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--rn-cream, #f5f0e8);
  background: var(--rn-burgundy, #5c1a1a);
  border: 1.5px solid var(--rn-burgundy, #5c1a1a);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}

.of3__cta-btn:hover {
  background: transparent;
  color: var(--rn-burgundy, #5c1a1a);
  border-color: var(--rn-gold, #b07d3a);
  gap: 14px;
}

.of3__cta-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========================================
   FINAL SECTION
======================================== */

.of3__final {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.of3__final-title {
  font-family: var(--ff-serif, serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--rn-burgundy, #5c1a1a);
  margin-bottom: 1rem;
}

.of3__final-rule {
  width: 80px;
  height: 2px;
  background: var(--rn-gold, #b07d3a);
  margin: 0 auto 2rem;
  opacity: 0.6;
}

.of3__final-lead {
  font-family: "Alex Brush", cursive;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--rn-gold, #b07d3a);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.of3__final-body {
  font-family: var(--ff-sans, sans-serif);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--rn-muted, #6b5050);
  margin-bottom: 1.2rem;
}

/* ========================================
   FADE ANIMATION SUPPORT
======================================== */

.ab2-fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.ab2-visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.12s;
}

/* ========================================
   RESPONSIVE — TABLET
======================================== */

@media (max-width: 1100px) {
  .of3__img-col {
    padding: 3.8rem 2.8rem;
  }

  .of3__content-col {
    padding: 4rem 3.2rem;
  }

  .of3__img-collage {
    width: min(92%, 600px);
    height: 620px;
  }

  .of3__intro {
    font-size: 1.02rem;
  }

  .of3__list li {
    font-size: 0.96rem;
  }
}

/* ========================================
   RESPONSIVE — MOBILE / STACKED
======================================== */

@media (max-width: 900px) {
  .of3__row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .of3__row--imgleft .of3__img-col,
  .of3__row--imgleft .of3__content-col,
  .of3__row--imgright .of3__img-col,
  .of3__row--imgright .of3__content-col {
    order: initial;
  }

  .of3__img-col {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .of3__img-collage {
    width: min(92%, 560px);
    height: 560px;
  }

  .of3__img-collage .img-primary {
    width: 76%;
    height: 80%;
  }

  .of3__img-collage .img-secondary {
    width: 52%;
    height: 42%;
  }

  .of3__content-col {
    padding: 3.5rem 1.5rem;
  }

  .of3__service-title {
    font-size: clamp(2rem, 7vw, 2.7rem);
  }

  .of3__intro {
    font-size: 1rem;
    line-height: 1.85;
  }

  .of3__list li {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .of3__closing-line {
    font-size: 1.08rem;
  }

  .of3__cta-btn {
    width: 100%;
  }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE
======================================== */

@media (max-width: 560px) {
  .of3__header {
    padding: 4rem 1rem 2.8rem;
  }

  .of3__title {
    font-size: 2.6rem;
  }

  .of3__subtitle {
    font-size: 1.5rem;
  }

  .of3__img-col {
    padding: 2.4rem 1rem;
  }

  .of3__img-collage {
    width: 100%;
    height: 450px;
  }

  .of3__img-collage .img-primary {
    width: 78%;
    height: 78%;
  }

  .of3__img-collage .img-secondary {
    width: 58%;
    height: 40%;
  }

  .of3__content-col {
    padding: 3rem 1.2rem;
  }

  .of3__service-title {
    font-size: 2.1rem;
  }

  .of3__intro {
    font-size: 0.98rem;
  }

  .of3__list li {
    font-size: 0.94rem;
    padding-left: 1.5rem;
  }

  .of3__list li::before {
    font-size: 0.72rem;
  }

  .of3__cta-btn {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    padding: 0.9rem 1rem;
  }
}
  /* ═══════════════════════════════════════════════════════════
       FADE-IN UTILITY — REQUIRED, was missing before
       This is what makes every headline/paragraph/card visible.
       Without this rule + the script at the bottom of this file,
       every .ab2-fade element stays invisible permanently.
  ═══════════════════════════════════════════════════════════  */
  .ab2-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
 
  .ab2-fade.ab2-visible {
    opacity: 1;
    transform: none;
  }
 
  .ab2-fade.d1 { transition-delay: 0.1s; }
  .ab2-fade.d2 { transition-delay: 0.2s; }
  .ab2-fade.d3 { transition-delay: 0.3s; }
  .ab2-fade.d4 { transition-delay: 0.4s; }
  .ab2-fade.d5 { transition-delay: 0.5s; }
 
 /* ════════════════════════════════════════════════════════
   ABOUT — CENTRED PORTRAIT + NARRATIVE BELOW
════════════════════════════════════════════════════════ */

.ab3 {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--rn-burgundy, #5c1a1a);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

/* Subtle radial glow top-right */
.ab3::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Subtle radial glow bottom-left */
.ab3::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ========================================
   INNER CONTAINER
======================================== */

.ab3__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.ab3__header {
  text-align: center;
  margin-bottom: 2rem;
}

.ab3__eyebrow {
  font-family: var(--ff-sans, sans-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rn-gold, #b07d3a);
  margin: 0 0 0.5rem;
}

.ab3__flourish {
  color: var(--rn-gold, #b07d3a);
  font-size: 0.9rem;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ========================================
   PORTRAIT
======================================== */

.ab3__photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.ab3__photo-frame {
  width: 280px;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;

  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.25),
    0 24px 60px rgba(0, 0, 0, 0.45);
}

.ab3__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ========================================
   BODY TEXT
======================================== */

.ab3__body {
  width: 100%;
}

.ab3__body p {
  font-family: var(--ff-sans, sans-serif);
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 1.6rem;
  text-align: left;
}

/* Drop cap on first paragraph */
.ab3__body p:first-child::first-letter {
  font-family: var(--ff-serif, serif);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 0.75;
  float: left;

  color: var(--rn-gold-light, #c9973f);
  margin: 0.1em 0.12em 0 0;
  padding-top: 0.08em;
}

/* Emphasis */
.ab3__body em,
.ab3__body strong {
  color: var(--rn-gold-pale, #d4a850);
}

.ab3__body em {
  font-style: italic;
}

.ab3__body strong {
  font-weight: 600;
}

/* Last paragraph spacing */
.ab3__body p:last-child {
  margin-bottom: 0;
}

/* ========================================
   FADE ANIMATION
======================================== */

.ab2-fade {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.ab2-fade.ab2-visible {
  opacity: 1;
  transform: translateY(0);
}

.ab2-fade.d1 {
  transition-delay: 0.1s;
}

.ab2-fade.d2 {
  transition-delay: 0.2s;
}

.ab2-fade.d3 {
  transition-delay: 0.3s;
}

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

@media (max-width: 700px) {
  .ab3 {
    padding: 4.5rem 0 4rem;
  }

  .ab3__inner {
    padding: 0 1.4rem;
  }

  .ab3__photo-frame {
    width: 230px;
    height: 310px;
  }

  .ab3__body p {
    font-size: 1rem;
    line-height: 1.9;
  }

  .ab3__body p:first-child::first-letter {
    font-size: 2.7rem;
  }
}

@media (max-width: 480px) {
  .ab3 {
    padding: 4rem 0 3.5rem;
  }

  .ab3__inner {
    padding: 0 1.2rem;
  }

  .ab3__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .ab3__flourish {
    font-size: 0.85rem;
  }

  .ab3__photo-wrap {
    margin-bottom: 3rem;
  }

  .ab3__photo-frame {
    width: 220px;
    height: 290px;
  }

  .ab3__body p {
    font-size: 0.96rem;
    line-height: 1.85;
    margin-bottom: 1.35rem;
  }

  .ab3__body p:first-child::first-letter {
    font-size: 2.5rem;
  }
}
/* ════════════════════════════════════════════════════════
   TESTIMONIALS — PREMIUM EDITORIAL CAROUSEL
════════════════════════════════════════════════════════ */

.testimonials-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  background: var(--rn-cream, #f5f0e8);
  padding: 6rem 2rem 6.5rem;
  overflow: hidden;
}

/* Soft subtle background texture */
.testimonials-section::before,
.testimonials-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.18;
}

.testimonials-section::before {
  width: 280px;
  height: 240px;
  left: -120px;
  top: 80px;
  background: radial-gradient(
    ellipse,
    rgba(176, 125, 58, 0.28) 0%,
    transparent 68%
  );
}

.testimonials-section::after {
  width: 260px;
  height: 220px;
  right: -110px;
  bottom: 90px;
  background: radial-gradient(
    ellipse,
    rgba(92, 26, 26, 0.18) 0%,
    transparent 70%
  );
}

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

.testimonials-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.testimonials-eyebrow {
  font-family: var(--ff-sans, sans-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rn-gold, #b07d3a);
  margin: 0 0 0.55rem;
}

.testimonials-rule {
  width: 55px;
  height: 1px;
  background: var(--rn-gold, #b07d3a);
  margin: 0 auto 1.35rem;
  opacity: 0.85;
}

.testimonials-title {
  font-family: var(--ff-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--rn-burgundy, #5c1a1a);
  margin: 0 0 0.75rem;
}

.testimonials-subtitle {
  font-family: var(--ff-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--rn-gold, #b07d3a);
  margin: 0;
}

/* ========================================
   CAROUSEL LAYOUT
======================================== */

.carousel-outer {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.carousel-track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  box-sizing: border-box;
  padding: 0 0.25rem;
}

/* ========================================
   TESTIMONIAL CARDS
======================================== */

.testimonial-card {
  flex: 0 0 calc(50% - 0.75rem);
  width: calc(50% - 0.75rem);
  background: #fff;
  border: 1px solid rgba(176, 125, 58, 0.12);
  border-radius: 0;
  padding: 1rem;
  box-shadow: 0 14px 36px rgba(61, 11, 26, 0.08);
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card--empty {
  flex: 0 0 100%;
  width: 100%;
  min-height: 160px;
  text-align: center;
  font-family: var(--ff-sans, sans-serif);
  color: var(--rn-muted, #6b5050);
}

/* Screenshot image wrapper */
.screenshot-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--rn-cream, #f5f0e8);
  border: 1px solid rgba(176, 125, 58, 0.16);
}

.screenshot-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

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

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--rn-burgundy, #5c1a1a);
  color: #fff;

  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;

  box-shadow: 0 8px 22px rgba(92, 26, 26, 0.22);
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.carousel-btn:hover {
  background: #7a2424;
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(92, 26, 26, 0.28);
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--rn-gold, #b07d3a);
  outline-offset: 4px;
}

/* ========================================
   DOTS
======================================== */

.carousel-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2.2rem;
}

.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(176, 125, 58, 0.32);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.dot.active {
  background: var(--rn-gold, #b07d3a);
  transform: scale(1.25);
}

.dot:focus-visible {
  outline: 2px solid var(--rn-burgundy, #5c1a1a);
  outline-offset: 4px;
}

/* ========================================
   ANIMATION SUPPORT
======================================== */

.ab2-fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.ab2-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .testimonials-section {
    padding: 5rem 1.4rem 5.5rem;
  }

  .carousel-outer {
    max-width: 760px;
    gap: 0.8rem;
  }

  .testimonial-card {
    min-height: 400px;
  }

  .screenshot-wrapper img {
    max-height: 480px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4.5rem 1rem 4.8rem;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-eyebrow {
    font-size: 0.9rem;
  }

  .testimonials-title {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .testimonials-subtitle {
    font-size: 1.05rem;
  }

  .carousel-outer {
    gap: 0.6rem;
    max-width: 100%;
  }

  .carousel-slide {
    gap: 0;
    padding: 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: auto;
    padding: 0.75rem;
  }

  .screenshot-wrapper img {
    max-height: 520px;
    object-fit: contain;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .carousel-dots {
    margin-top: 1.8rem;
  }
}

@media (max-width: 520px) {
  .testimonials-section {
    padding: 4rem 0.85rem 4.5rem;
  }

  .carousel-outer {
    gap: 0.45rem;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
  }

  .testimonial-card {
    padding: 0.6rem;
  }

  .screenshot-wrapper img {
    max-height: 460px;
  }
}
/* ═══════════════════════════════════════════════
   GALLERY — AUTO-SCROLLING MARQUEE
═══════════════════════════════════════════════ */

.gal3 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--rn-cream, #f5f0e8);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

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

.gal3__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 20px;
}

.gal3__eyebrow {
  font-family: var(--ff-sans, sans-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rn-gold, #b07d3a);
  margin: 0 0 0.5rem;
}

.gal3__divider {
  color: var(--rn-gold, #b07d3a);
  font-size: 0.9rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.gal3__title {
  font-family: var(--ff-serif, serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--rn-burgundy, #5c1a1a);
  margin: 0;
}

/* ========================================
   MARQUEE
======================================== */

.gal3__marquee {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.gal3__track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  padding: 0 20px;

  animation: gal3Marquee 60s linear infinite;
  will-change: transform;
}

.gal3__track.is-paused {
  animation-play-state: paused;
}

@keyframes gal3Marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================================
   SLIDES
======================================== */

.gal3__slide {
  flex: 0 0 clamp(240px, 24vw, 340px);
  width: clamp(240px, 24vw, 340px);
  aspect-ratio: 3 / 4;

  display: block;
  padding: 0;
  margin: 0;

  border: none;
  background: #fff;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gal3__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;

  transition: transform 0.35s ease;
}

.gal3__slide:hover img {
  transform: scale(1.06);
}

.gal3__empty {
  text-align: center;
  color: var(--rn-muted, #6b5050);
  padding: 2rem;
}

/* ========================================
   LIGHTBOX
======================================== */

.gal3-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(20, 12, 12, 0.94);
}

.gal3-lightbox.is-open {
  display: flex;
}

.gal3-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gal3-lightbox__close {
  position: absolute;
  top: 20px;
  right: 25px;

  width: 44px;
  height: 44px;

  background: transparent;
  border: none;

  color: #fff;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}

.gal3-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  color: #fff;

  font-size: 1.8rem;
  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.gal3-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gal3-lightbox__nav--prev {
  left: 30px;
}

.gal3-lightbox__nav--next {
  right: 30px;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {
  .gal3 {
    padding: 90px 0;
  }

  .gal3__header {
    margin-bottom: 3rem;
  }

  .gal3__slide {
    flex-basis: 58vw;
    width: 58vw;
  }

  .gal3__track {
    gap: 14px;
    padding: 0 14px;
    animation-duration: 50s;
  }

  .gal3-lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .gal3-lightbox__nav--prev {
    left: 14px;
  }

  .gal3-lightbox__nav--next {
    right: 14px;
  }
}

/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {
  .gal3__track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gal3__slide {
    scroll-snap-align: start;
  }
}
/* ══════════════════════════════════════════════════════════
   CONTACT SECTION — HARDENED FIX
   Forces side-by-side layout regardless of other rules
   elsewhere in style.css that may be overriding display/grid.
   ══════════════════════════════════════════════════════════ */

   section.contact-section,
   .contact-section {
     display: grid !important;
     grid-template-columns: 1fr 1fr !important;
     grid-template-rows: auto;
     align-items: stretch;
     min-height: 750px;
     width: 100%;
     position: relative;
   }
   
   /* ── LEFT PANEL: burgundy ── */
   .contact-section > .contact-left {
     grid-column: 1;
     background: var(--burgundy);
     padding: 70px 60px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     position: relative;
     overflow: hidden;
     min-width: 0; /* prevents grid blowout from long text */
   }
   
   .contact-left::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
       radial-gradient(ellipse at 20% 80%, rgba(201,168,76,.10) 0%, transparent 55%),
       radial-gradient(ellipse at 80% 10%, rgba(93,22,40,.35) 0%, transparent 60%);
     pointer-events: none;
   }
   
   .contact-left-inner {
     position: relative;
     z-index: 1;
   }
   
   .contact-eyebrow {
     font-family: var(--font-sans);
     font-size: .65rem;
     letter-spacing: .25em;
     color: var(--gold-light);
     text-transform: uppercase;
     font-weight: 500;
     margin-bottom: 14px;
   }
   
   .contact-heading {
     font-family: var(--font-serif);
     font-size: clamp(2rem, 3.5vw, 2.8rem);
     font-weight: 400;
     color: #fff;
     line-height: 1.2;
     margin-bottom: 14px;
   }
   
   .contact-floral {
     color: var(--gold-light);
     font-size: 1.1rem;
     margin-bottom: 20px;
   }
   
   .contact-desc {
     font-family: var(--font-body);
     font-size: 1rem;
     color: rgba(245,239,230,.75);
     line-height: 1.75;
     margin-bottom: 36px;
     max-width: 340px;
   }
   
   .contact-info {
     display: flex;
     flex-direction: column;
     gap: 18px;
   }
   
   .info-item {
     display: flex;
     align-items: flex-start;
     gap: 14px;
   }
   
   .info-icon {
     width: 38px;
     height: 38px;
     border: 1.5px solid var(--gold-light);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: var(--gold-light);
     font-size: .95rem;
   }
   
   .info-label {
     font-family: var(--font-sans);
     font-size: .6rem;
     letter-spacing: .2em;
     text-transform: uppercase;
     color: var(--gold-light);
     font-weight: 500;
     display: block;
     margin-bottom: 3px;
   }
   
   .info-value {
     font-family: var(--font-body);
     color: rgba(245,239,230,.85);
     font-size: .98rem;
     display: block;
   }
   
   /* Pinned footer row inside the left panel */
   .contact-left-bottom {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr auto 1fr;
     align-items: center;
     gap: 24px;
     border-top: 1px solid rgba(201,168,76,.2);
     padding-top: 28px;
     margin-top: 40px;
   }
   
   .left-info-col { text-align: left; }
   
   .working-label {
     font-family: var(--font-sans);
     font-size: .6rem;
     letter-spacing: .2em;
     text-transform: uppercase;
     color: var(--gold-light);
     font-weight: 500;
     display: block;
     margin-bottom: 6px;
   }
   
   .working-value {
     font-family: var(--font-body);
     color: rgba(245,239,230,.75);
     font-size: .9rem;
     line-height: 1.5;
   }
   
   .contact-divider-line {
     width: 1px;
     height: 60px;
     background: rgba(201,168,76,.3);
     justify-self: center;
   }
   
   .signature-block {
     text-align: right;
   }
   
   .sig-quote-mark {
     font-size: 2.2rem;
     color: var(--gold-light);
     line-height: .7;
     display: block;
     margin-bottom: 10px;
   }
   
   .sig-quote {
     font-family: var(--font-serif);
     font-style: italic;
     font-size: 1.05rem;
     color: rgba(245,239,230,.85);
     line-height: 1.65;
     margin-bottom: 14px;
   }
   
   .sig-name {
     font-family: 'Cormorant Garamond', cursive;
     font-size: 1.5rem;
     font-style: italic;
     color: var(--gold-light);
   }

   .info-link {
    color: rgba(245,239,230,.85);
    text-decoration: none;
    transition: color .25s ease;
  }
  
  .info-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
  }
  .info-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
  }
   
   /* ── RIGHT PANEL: cream form ── */
   .contact-section > .contact-right {
     grid-column: 2;
     background: linear-gradient(160deg, var(--cream) 0%, #EDE0D0 100%);
     padding: 70px 60px;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     min-width: 0;
   }
   
   .contact-right::after {
     content: '';
     position: absolute;
     bottom: -60px;
     right: -80px;
     width: 320px;
     height: 260px;
     border-radius: 50%;
     background: radial-gradient(ellipse, rgba(93,22,40,.12) 0%, transparent 70%);
     pointer-events: none;
   }
   
   .form-container {
     width: 100%;
     position: relative;
     z-index: 1;
   }
   
   .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-bottom: 16px;
   }
   
   .form-group {
     position: relative;
   }
   
   .form-full {
     grid-column: 1 / -1;
   }
   
   .form-input,
   .form-select,
   .form-textarea {
     width: 100%;
     background: rgba(255,255,255,.7);
     border: 1px solid rgba(139,100,32,.25);
     border-radius: 8px;
     padding: 14px 16px;
     font-family: var(--font-body);
     font-size: .97rem;
     color: var(--text-dark);
     outline: none;
     transition: border-color .2s, background .2s;
     -webkit-appearance: none;
     appearance: none;
   }
   
   .form-input:focus,
   .form-select:focus,
   .form-textarea:focus {
     border-color: var(--gold);
     background: rgba(255,255,255,.95);
   }
   
   .form-textarea {
     resize: vertical;
     min-height: 130px;
   }
   
   .submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--burgundy);
    color: var(--cream);
    border: 1.5px solid var(--burgundy);
    border-radius: 2px;
    padding: 17px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, color 0.25s, border-color 0.25s, gap 0.2s;
   }
   
   /* Gold shimmer sweep — identical to .of3__cta-btn */
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(176,125,58,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
}
.submit-btn:hover::before { transform: translateX(100%); }

.submit-btn:hover {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--gold);
  gap: 14px;
}

/* Arrow nudge on hover */
.submit-btn .btn-arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.submit-btn:hover .btn-arrow {
  transform: translateX(3px);
}
   .privacy-note {
     text-align: center;
     font-family: var(--font-body);
     font-size: .82rem;
     color: var(--text-body);
     opacity: .7;
     margin-top: 16px;
   }
   
   /* ── Responsive ── */
   @media (max-width: 900px) {
     section.contact-section,
     .contact-section {
       grid-template-columns: 1fr !important;
       min-height: auto;
     }
     .contact-section > .contact-left,
     .contact-section > .contact-right {
       grid-column: 1;
     }
     .contact-left {
       padding: 50px 30px;
     }
     .contact-right {
       padding: 50px 30px;
     }
     .contact-left-bottom {
       grid-template-columns: 1fr;
       gap: 20px;
       text-align: center;
     }
     .contact-divider-line {
       width: 60%;
       height: 1px;
       margin: 0 auto;
     }
     .signature-block {
       text-align: center;
     }
     .form-grid {
       grid-template-columns: 1fr;
     }
     .form-full {
       grid-column: 1;
     }
   }
   
   @media (max-width: 480px) {
     .contact-heading {
       font-size: 1.9rem;
     }
   }
/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

.site-footer {
  position: relative;
  background: var(--burgundy);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 120px;
  height: 2px;

  background: var(--gold);
  opacity: .75;
}

.site-footer__inner {
  max-width: 900px;
  margin: 0 auto;
}

.site-footer__brand {
  display: block;

  font-family: 'Alex Brush', cursive;
  font-size: 2.3rem;
  line-height: 1;

  color: #fff;

  margin-bottom: .85rem;
}

.site-footer__tagline {
  max-width: 640px;
  margin: 0 auto 2rem;

  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;

  color: rgba(245,240,232,.75);
}

.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176,125,58,.18);
}

.site-footer__copyright {
  margin: 0 0 .45rem;

  font-family: var(--font-body);
  font-size: .9rem;

  color: rgba(245,240,232,.72);
}

.site-footer__credit {
  margin: 0;

  font-family: var(--font-display);
  font-size: .45rem;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: var(--gold);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .site-footer {
    padding: 2.5rem 1rem 2rem;
  }

  .site-footer__brand {
    font-size: 2rem;
  }

  .site-footer__tagline {
    font-size: .95rem;
  }

  .site-footer__copyright {
    font-size: .85rem;
  }

  .site-footer__credit {
    font-size: .7rem;
  }
}