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

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

:root {
  /* Calm, professional palette */
  --cream:        #F7F3EE;
  --warm-white:   #FDFAF6;
  --beige:        #E8DDD1;
  --sand:         #C9B99A;
  --sage:         #7A9E9F;
  --sage-dark:    #4E7E80;
  --sage-deeper:  #2D5A5C;
  --charcoal:     #3A3530;
  --taupe:        #6B6056;
  --text-main:    #3A3530;
  --text-soft:    #7A7068;
  --text-light:   #A39A90;
  --accent-gold:  #B8956A;
  --accent-rose:  #C9A89A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-soft: 0 4px 24px rgba(58,53,48,0.08);
  --shadow-hover: 0 12px 40px rgba(58,53,48,0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--warm-white);
  color: var(--text-main);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 250, 246, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 185, 154, 0.2);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(58,53,48,0.06);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sage-deeper);
  letter-spacing: 0.02em;
}

.nav-logo-title {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--sage-deeper) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  display: block;
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    border-bottom: 1px solid var(--beige);
  }

  .nav-links.open {
    max-height: 400px;
    padding: 1rem 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin: 0.5rem 2rem;
  }
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 110%;
  background: linear-gradient(145deg, rgba(122,158,159,0.12) 0%, rgba(78,126,128,0.08) 50%, rgba(184,149,106,0.06) 100%);
  border-radius: 0 0 0 60% / 0 0 0 40%;
  pointer-events: none;
}

.hero-bg-dots {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--sand) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2.5rem 5rem;
  width: 100%;
}

.hero-text {
  animation: fadeInUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sage);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-darker);
  color: var(--sage-dark);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--sage-deeper);
  color: white;
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,90,92,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--beige);
}

.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.9s 0.2s ease both;
  position: relative;
}

.hero-image-frame {
  width: 380px;
  height: 480px;
  border-radius: 60% 40% 40% 60% / 55% 55% 45% 45%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deeper) 100%);
  box-shadow: var(--shadow-hover);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.hero-image-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-image-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-image-badge-text {
  display: flex;
  flex-direction: column;
}

.hero-image-badge-label {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

.hero-image-badge-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sand), transparent);
}

/* ===========================
   SECTIONS COMMON
=========================== */
.section {
  padding: 6rem 2.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--sage), var(--accent-gold));
  border-radius: 2px;
  margin: 1.5rem auto 0;
}

/* ===========================
   ABOUT / INTRO SECTION
=========================== */
.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-portrait {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deeper) 100%);
  opacity: 0.15;
  z-index: 0;
}

.about-image-card {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}

.about-image-card-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sage-darker);
  color: var(--sage-dark);
  line-height: 1;
}

.about-image-card-text {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.about-text .section-eyebrow {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-body {
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.85;
}

.about-qualities {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.quality-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--cream);
  border: 1px solid var(--beige);
  font-size: 0.8rem;
  color: var(--text-soft);
}

.quality-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* ===========================
   SERVICES CARDS
=========================== */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(122,158,159,0.06) 100%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card.mediator .service-card-accent {
  background: linear-gradient(to right, var(--sage), var(--sage-dark));
}

.service-card.accountant .service-card-accent {
  background: linear-gradient(to right, var(--accent-gold), var(--accent-rose));
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.service-card-header .service-icon {
  margin-bottom: 0;
}

.service-card.mediator .service-icon {
  background: rgba(122,158,159,0.12);
}

.service-card.accountant .service-icon {
  background: rgba(184,149,106,0.12);
}

.service-card-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.service-card-header .service-card-title {
  margin-bottom: 0;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.service-tag {
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 400;
}

.service-card.mediator .service-tag {
  background: rgba(122,158,159,0.1);
  color: var(--sage-dark);
}

.service-card.accountant .service-tag {
  background: rgba(184,149,106,0.1);
  color: var(--accent-gold);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap var(--transition);
}

.service-card.mediator .service-card-link {
  color: var(--sage-dark);
}

.service-card.accountant .service-card-link {
  color: var(--accent-gold);
}

.service-card:hover .service-card-link {
  gap: 0.8rem;
}

/* ===========================
   VALUES / APPROACH
=========================== */
.values-section {
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ===========================
   TESTIMONIAL / QUOTE
=========================== */
.quote-section {
  background: var(--sage-deeper);
  padding: 5rem 2.5rem;
}

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.7;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1rem;
  display: block;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quote-author {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ===========================
   CONTACT CTA STRIP
=========================== */
.cta-strip {
  background: var(--cream);
  padding: 5rem 2.5rem;
}

.cta-strip-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-strip-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.cta-strip-text {
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.cta-strip-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 4rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.25rem;
}

.footer-brand-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: rgba(122,158,159,0.1);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sage);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  padding: 9rem 2.5rem 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-bg-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--sage);
  top: -200px;
  right: -200px;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-hero-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}

.page-hero-breadcrumb a:hover {
  color: var(--sage-dark);
}

.page-hero-breadcrumb span {
  color: var(--beige);
}

.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage);
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.18;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.85;
}

/* ===========================
   CONTENT SECTIONS (inner pages)
=========================== */
.content-section {
  padding: 5rem 2.5rem;
  background: white;
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.content-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-cols.reverse {
  direction: rtl;
}

.content-cols.reverse > * {
  direction: ltr;
}

.content-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.content-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.content-text {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.content-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.content-list.gold li::before {
  background: var(--accent-gold);
}

/* ===========================
   PROCESS STEPS
=========================== */
.process-section {
  padding: 5rem 2.5rem;
  background: var(--cream);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ===========================
   BENEFITS GRID
=========================== */
.benefits-section {
  padding: 5rem 2.5rem;
  background: white;
}

.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid var(--beige);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: white;
}

.benefit-body {}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.benefit-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-section {
  padding: 5rem 2.5rem;
  background: white;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.contact-info-text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-body {}

.contact-detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 400;
}

.contact-detail-value a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-detail-value a:hover {
  color: var(--sage-dark);
}

.contact-social-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--beige);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all var(--transition);
}

.contact-social-btn svg {
  width: 16px;
  height: 16px;
}

.contact-social-btn:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

/* Contact Form */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--beige);
  background: white;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,159,0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-success-sub {
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  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; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-frame {
    width: 280px;
    height: 350px;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-subtitle,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrap {
    display: flex;
    justify-content: center;
  }

  .about-image-card {
    right: 0;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .content-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .content-cols.reverse {
    direction: ltr;
  }

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

@media (max-width: 600px) {
  .section {
    padding: 4rem 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 0 1.5rem;
  }

  .hero-content {
    padding: 7rem 1.5rem 4rem;
  }

  .page-hero {
    padding: 8rem 1.5rem 4rem;
  }
}
