/* ==========================================
   LIBBY BISSCHOPS - R.N. AESTHETICS STUDIO
   ========================================== */

/* --- CSS Variables / Theme --- */
:root {
  --color-primary: #2b2b29;
  --color-secondary: #9b7b37;
  --color-accent: #cba74d;
  --color-accent-light: #efd47e;
  --color-bg: #f4efe4;
  --color-bg-alt: #e7dfd1;
  --color-bg-dark: #d5c9b6;
  --color-text: #302f2b;
  --color-text-light: #6f695f;
  --color-white: #fffaf0;
  --color-gold: #d5b456;
  
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Arial', 'Helvetica', sans-serif;
  --font-alt: 'Arial', sans-serif;
  
  --transition: all 0.4s ease;
  --shadow: 0 4px 20px rgba(92, 64, 51, 0.08);
  --shadow-hover: 0 8px 30px rgba(92, 64, 51, 0.15);
  --border-radius: 12px;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: normal;
  line-height: 1.3;
}

h1 { font-size: 2.8rem; letter-spacing: -0.5px; }
h2 { font-size: 2.2rem; letter-spacing: -0.3px; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--color-text);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.8;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1vw 2rem;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  background: rgba(43, 43, 41, 0.96);
  border-bottom: 1px solid rgba(203, 167, 77, 0.35);
  will-change: top;
}

.site-header.scrolled {
  background: rgba(43, 43, 41, 0.98);
  box-shadow: 0 5px 24px rgba(0,0,0,0.18);
  padding: 0.3rem 2rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo a {
  display: block;
}

.logo img {
  height: 70px;
  width: auto;
}

.site-header.scrolled .logo img {
  height: 42px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ead9aa;
  position: relative;
  padding: 0.3rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--color-accent);
}

.btn-book {
  background: var(--color-accent);
  color: var(--color-primary) !important;
  padding: 0.7rem 1.6rem !important;
  border-radius: 50px;
  font-size: 0.8rem !important;
  letter-spacing: 1.5px !important;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-book::after {
  display: none !important;
}

.btn-book:hover {
  background: var(--color-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 116, 110, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-accent-light);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(35, 35, 33, 0.9), rgba(35, 35, 33, 0.94)),
    var(--hero-image, url('../images/caroline-background.jpg')) center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::after {
  content: '';
  position: absolute;
  inset: clamp(1.2rem, 3vw, 3rem);
  border: 1px solid rgba(203, 167, 77, 0.7);
  box-shadow: inset 0 0 0 5px #292927, inset 0 0 0 6px rgba(203, 167, 77, 0.45);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(196, 116, 110, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2%, -2%); }
}

/* --- Scrolling Statement --- */
.statement-marquee {
  overflow: hidden;
  padding: 1.4rem 0;
  background: var(--color-primary);
  color: var(--color-bg);
}

.statement-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: statementScroll 24s linear infinite;
}

.statement-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.6vw, 3.8rem);
  line-height: 1;
  white-space: nowrap;
}

.statement-marquee__mark {
  color: var(--color-accent-light);
  font-size: 0.55em;
}

@keyframes statementScroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .statement-marquee__track {
    animation-play-state: paused;
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* --- Scroll-driven Horizontal Story --- */
.horizontal-story {
  position: relative;
  height: calc(var(--panel-count) * 100vh);
  background: var(--color-bg-alt);
}

.horizontal-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.horizontal-story__track {
  display: flex;
  width: calc(var(--panel-count) * 100vw);
  height: 100%;
  will-change: transform;
}

.horizontal-story__panel {
  flex: 0 0 100vw;
  min-width: 0;
}

.horizontal-story__intro {
  padding: clamp(5rem, 8vh, 7rem) clamp(2rem, 8vw, 9rem) 3rem;
}

.horizontal-story__intro > h2 {
  max-width: 1200px;
  margin-bottom: clamp(2rem, 5vh, 4rem);
  font-size: clamp(2.2rem, 4.3vw, 4.8rem);
  line-height: 1.05;
}

.horizontal-story__intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  max-width: 1350px;
}

.horizontal-story__portrait {
  height: min(58vh, 600px);
  overflow: hidden;
  background: linear-gradient(135deg, #d6c39b, #eee4ce);
  border: 1px solid var(--color-accent);
}

.horizontal-story__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.horizontal-story__copy {
  max-width: 620px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.horizontal-story__treatment {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 7vw, 7rem);
  overflow: hidden;
  background: #292927;
  color: var(--color-bg);
}

.horizontal-story__treatment:nth-child(3n + 2) {
  background: #292927;
}

.horizontal-story__treatment:nth-child(3n + 3) {
  background: #34332f;
}

.horizontal-story__treatment:nth-child(3n + 4) {
  background: #242422;
}

.horizontal-story__treatment-content > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(0.75) contrast(1.08);
}

.horizontal-story__treatment::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 29, 27, 0.82) 0%, rgba(29, 29, 27, 0.35) 58%, rgba(29, 29, 27, 0.08) 100%);
  pointer-events: none;
}

.horizontal-story__treatment-content {
  max-width: min(780px, 80vw);
}

.horizontal-story__treatment-content > *:not(img) {
  position: relative;
  z-index: 2;
}

.horizontal-story__treatment h2 {
  color: var(--color-bg);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 1;
  margin: 1rem 0;
}

.horizontal-story__treatment p,
.horizontal-story__treatment .section-subtitle {
  color: var(--color-bg);
}

.horizontal-story__link {
  color: var(--color-bg);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content .hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #e1dbcf;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.hero .btn-secondary {
  color: var(--color-accent-light);
  border-color: var(--color-accent);
}

.hero .btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 116, 110, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--color-accent);
  color: var(--color-primary);
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 999;
}

.announcement-bar a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

/* --- Sections General --- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-dark .section-title {
  color: var(--color-white);
}

.section-dark .section-desc {
  color: rgba(255,255,255,0.8);
}

.section-center {
  text-align: center;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(203, 167, 77, 0.5);
  border-radius: var(--border-radius);
  padding: 0 2rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-photo {
  width: calc(100% + 4rem);
  max-width: none;
  height: 260px;
  margin: 0 -2rem 1.8rem;
  object-fit: cover;
  filter: saturate(0.75);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.service-card:hover .service-photo {
  transform: scale(1.04);
  filter: saturate(0.95);
}

.service-card:nth-child(1) .service-photo {
  object-position: center 35%;
}

.service-card:nth-child(2) .service-photo {
  object-position: center 25%;
}

.service-card:nth-child(3) .service-photo {
  object-position: center 30%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.service-card .service-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  font-weight: 600;
}

/* --- About Page --- */
.about-page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 88vh;
  padding-top: 72px;
  background: var(--color-primary);
}

.about-page-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.about-page-hero__content::before {
  content: '';
  position: absolute;
  inset: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(203, 167, 77, 0.55);
  pointer-events: none;
}

.about-page-hero__content > * {
  position: relative;
  z-index: 1;
}

.about-page-hero h1 {
  margin: 1rem 0 1.5rem;
  color: var(--color-accent-light);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 1.02;
}

.about-page-hero p {
  max-width: 650px;
  color: #ded7ca;
  font-size: 1.08rem;
}

.about-page-hero .btn-secondary {
  margin-top: 1rem;
  color: var(--color-accent-light);
  border-color: var(--color-accent);
}

.about-page-hero__image {
  min-height: 650px;
  overflow: hidden;
}

.about-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.about-story {
  background:
    linear-gradient(rgba(244, 239, 228, 0.94), rgba(244, 239, 228, 0.97)),
    url('../images/caroline-background.jpg') center / cover no-repeat;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.about-story__heading h2 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.about-story__copy {
  font-size: 1.08rem;
}

.about-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: #292927;
}

.about-experience__image {
  overflow: hidden;
}

.about-experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
}

.about-experience__number {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.85;
  margin-bottom: 1.5rem;
}

.about-experience h2 {
  color: var(--color-accent-light);
  margin: 1rem 0 1.5rem;
}

.about-experience p {
  color: #d8d1c5;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.about-values__grid article {
  min-height: 270px;
  padding: 2.5rem;
  background: var(--color-white);
  border: 1px solid rgba(203, 167, 77, 0.48);
}

.about-values__grid article > span {
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.about-values__grid h3 {
  margin: 2.5rem 0 1rem;
}

/* --- About Section (Split Layout) --- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image .about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 1.2rem;
  border-radius: var(--border-radius);
  text-align: center;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(196, 116, 110, 0.3);
}

.about-image .about-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.about-image .about-badge .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.signature {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin-top: 2rem;
}

/* --- Stats / Numbers Section --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-accent);
  display: block;
  line-height: 1.2;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
}

/* --- Process Section --- */
.process-section {
  background:
    linear-gradient(rgba(231, 223, 209, 0.9), rgba(231, 223, 209, 0.94)),
    url('../images/caroline-background.jpg') center / cover no-repeat;
}

.process-section .process-step {
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(203, 167, 77, 0.38);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -1rem;
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
}

.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--color-accent);
  color: var(--color-white);
}

.process-step h4 {
  margin-bottom: 0.8rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* --- Testimonials Section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.testimonial-author .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author .location {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-bg-dark);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question .icon {
  font-size: 1.5rem;
  transition: var(--transition);
  color: var(--color-accent);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 64, 51, 0.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay span {
  color: var(--color-white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Horizontal Scrolling Gallery --- */
.gallery-scroll-wrapper {
  position: relative;
  margin: 2rem 0;
}

.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) var(--color-bg-alt);
}

.gallery-scroll::-webkit-scrollbar {
  height: 6px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
  border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
}

.gallery-scroll-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.gallery-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery-card .gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.9);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.gallery-scroll-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

.gallery-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.gallery-photo + div {
  display: none !important;
}

@media (max-width: 768px) {
  .gallery-scroll-item {
    flex: 0 0 280px;
  }
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-detail .detail h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-detail .detail p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--color-bg-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196, 116, 110, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

/* --- Journal --- */
.journal-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64vh;
  padding: 9rem max(2rem, 10vw) 5rem;
  background:
    linear-gradient(rgba(38,38,36,.88), rgba(38,38,36,.92)),
    url('../images/caroline-background.jpg') center / cover no-repeat;
}

.journal-hero h1 {
  margin: 1rem 0;
  color: var(--color-accent-light);
  font-size: clamp(3rem, 6vw, 6rem);
}

.journal-hero p { max-width: 620px; color: #ded7ca; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.journal-card { overflow: hidden; background: var(--color-white); border: 1px solid rgba(203,167,77,.45); }
.journal-card img { width: 100%; height: 280px; object-fit: cover; }
.journal-card > div { padding: 2rem; }
.journal-card span { color: var(--color-secondary); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.journal-card h2 { margin: 1rem 0; }
.journal-card a { color: var(--color-secondary); font-weight: 700; }
.journal-empty { padding: 5rem 1rem; text-align: center; }

.article-page { max-width: 1050px; margin: 0 auto; padding: 11rem 2rem 6rem; }
.article-page header { max-width: 820px; margin: 0 auto 4rem; text-align: center; }
.article-page h1 { margin: 1rem 0; font-size: clamp(2.8rem, 6vw, 5.5rem); }
.article-page header p { font-size: 1.15rem; color: var(--color-text-light); }
.article-page__image { width: 100%; max-height: 680px; object-fit: cover; margin-bottom: 4rem; }
.article-page__body { max-width: 760px; margin: auto; font-size: 1.08rem; line-height: 1.9; }

/* --- Experience Page --- */
.experience-hero {
  position: relative;
  min-height: 86vh;
  padding-top: 72px;
  overflow: hidden;
  background: var(--color-primary);
}

.experience-hero__image {
  position: absolute;
  inset: 0;
}

.experience-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 38, 36, 0.96) 0%, rgba(38, 38, 36, 0.76) 48%, rgba(38, 38, 36, 0.18) 100%);
}

.experience-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(86vh - 72px);
  max-width: 850px;
  padding: clamp(5rem, 10vw, 11rem);
}

.experience-hero h1 {
  margin: 1rem 0 1.5rem;
  color: var(--color-accent-light);
  font-size: clamp(3rem, 5.6vw, 6rem);
  line-height: 1.02;
}

.experience-hero p {
  max-width: 620px;
  color: #e0d9cc;
  font-size: 1.1rem;
}

.experience-story__intro {
  max-width: 780px;
  margin-bottom: 4rem;
}

.experience-story__intro h2 {
  margin: 1rem 0 1.5rem;
}

.experience-story__gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.experience-story__gallery figure {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.experience-story__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.experience-story__gallery figure:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}

.experience-story__gallery figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  color: var(--color-accent-light);
  background: rgba(35, 35, 33, 0.84);
  border: 1px solid rgba(203, 167, 77, 0.45);
}

.experience-reassurance {
  padding: clamp(5rem, 9vw, 9rem) 2rem;
  color: #e0d9cc;
  background: var(--color-primary);
}

.experience-reassurance h2 {
  max-width: 950px;
  margin: 1rem 0 3rem;
  color: var(--color-accent-light);
}

.experience-reassurance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.experience-reassurance__grid p {
  margin: 0;
  padding: 2rem;
  color: #e0d9cc;
  border-top: 1px solid var(--color-accent);
}

/* --- Contact Page --- */
.contact-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 82vh;
  padding-top: 72px;
  background: var(--color-primary);
}

.contact-hero__image {
  min-height: 620px;
  overflow: hidden;
}

.contact-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.contact-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(4rem, 8vw, 9rem);
}

.contact-hero__content::before {
  content: '';
  position: absolute;
  inset: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(203, 167, 77, 0.55);
  pointer-events: none;
}

.contact-hero__content > * {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  color: var(--color-accent-light);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 1.04;
  margin: 1rem 0 1.5rem;
}

.contact-hero p {
  max-width: 600px;
  color: #ded7ca;
  font-size: 1.05rem;
}

.contact-hero .btn {
  margin-top: 1rem;
  background: var(--color-accent);
  color: var(--color-primary);
}

.contact-details {
  background:
    linear-gradient(rgba(244, 239, 228, 0.92), rgba(244, 239, 228, 0.96)),
    url('../images/caroline-background.jpg') center / cover no-repeat;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-details__intro h2 {
  margin: 1rem 0 1.5rem;
}

.contact-details__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-detail-card {
  min-height: 210px;
  padding: 2rem;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(203, 167, 77, 0.48);
}

.contact-detail-card > span {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.contact-detail-card h3 {
  margin: 1.5rem 0 0.8rem;
}

.contact-detail-card p {
  margin: 0;
  color: var(--color-text-light);
}

/* --- CTA Section --- */
.cta-section {
  background:
    linear-gradient(90deg, rgba(31, 31, 29, 0.94), rgba(31, 31, 29, 0.74)),
    url('../images/caroline-lips.jpg') center 35% / cover no-repeat;
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--color-accent-light);
  color: var(--color-accent-light);
  background: rgba(255,255,255,0.05);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 2.5rem; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .journal-grid { grid-template-columns: 1fr; }

  .experience-hero {
    min-height: 78vh;
    padding-top: 60px;
  }

  .experience-hero__content {
    min-height: calc(78vh - 60px);
    padding: 5rem 1.5rem;
  }

  .experience-hero__image::after {
    background: rgba(38, 38, 36, 0.78);
  }

  .experience-story__gallery,
  .experience-reassurance__grid {
    grid-template-columns: 1fr;
  }

  .experience-story__gallery figure {
    min-height: 480px;
  }

  .about-page-hero,
  .about-story__grid,
  .about-experience {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    padding-top: 60px;
  }

  .about-page-hero__content {
    padding: 4.5rem 1.5rem;
  }

  .about-page-hero__content::before {
    inset: 1rem;
  }

  .about-page-hero__image {
    min-height: 60vh;
  }

  .about-experience {
    min-height: auto;
  }

  .about-experience__image {
    height: 65vh;
  }

  .about-experience__content {
    padding: 4rem 1.5rem;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .contact-hero__image {
    min-height: 55vh;
  }

  .contact-hero__content {
    padding: 4.5rem 1.5rem;
  }

  .contact-hero__content::before {
    inset: 1rem;
  }

  .contact-details__grid,
  .contact-details__cards {
    grid-template-columns: 1fr;
  }

  .horizontal-story {
    height: auto;
  }

  .horizontal-story__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .horizontal-story__track {
    display: block;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .horizontal-story__panel {
    width: 100%;
    min-height: auto;
  }

  .horizontal-story__intro {
    padding: 4rem 1.5rem;
  }

  .horizontal-story__intro-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-story__portrait {
    height: 420px;
  }

  .horizontal-story__treatment {
    min-height: 75vh;
    padding: 3rem 1.5rem;
  }

  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-primary);
    border-left: 1px solid rgba(203, 167, 77, 0.45);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    align-items: flex-start;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav a {
    font-size: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content .hero-tagline {
    font-size: 1.1rem;
  }
  
  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .section { padding: 3rem 0; }
  .container { padding: 0 1.5rem; }
  
  .about-image img {
    height: 300px;
  }
  
  .about-image .about-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content .hero-tagline { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item .stat-number { font-size: 2.2rem; }
}
