/* ============================================================
   MALINDA PERRY CONSULTING
   Strengths Coaching — Old Italy / Tuscan Villa Aesthetic
   Color Identity: ORANGE — Warm Terracotta, Burnt Orange
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette — Warm Terracotta / Copper */
  --copper:        #C67D4A;
  --copper-light:  #D4956E;
  --copper-dark:   #A86535;
  --copper-glow:   rgba(198, 125, 74, 0.3);

  /* THE Main Color — Orange */
  --orange:        #D4783A;
  --orange-bright: #E8923E;
  --orange-burnt:  #B86830;
  --amber:         #DCA055;

  /* Accent — Muted Sage */
  --jade:          #5E8E78;
  --jade-light:    #7BAA94;
  --jade-dark:     #4A7562;
  --jade-muted:    #6B9E86;

  /* Sparingly — Teal */
  --teal:          #5A8A86;
  --teal-light:    #78A8A4;
  --teal-dark:     #3D6B68;
  --teal-deep:     #2D4F4D;

  /* Warm Neutrals */
  --offwhite:      #FBF6EF;
  --cream:         #F4EBE0;
  --warm-white:    #FDF8F2;
  --parchment:     #EBE0D2;

  /* Dark Neutrals */
  --charcoal:      #3A3632;
  --dark-brown:    #4A3F36;
  --warm-gray:     #938A80;
  --light-gray:    #DAD4CC;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Lora', Georgia, serif;
  --font-accent:   'Cormorant Garamond', 'Times New Roman', serif;

  /* Spacing */
  --section-pad:   7rem;
  --container-max: 1200px;

  /* Transitions */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* --- Utilities --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--orange);
}

.text-center .section-label::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-label--light {
  color: var(--amber);
}

.section-label--light::after {
  background: var(--amber);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: italic;
  color: var(--orange);
}

.section-heading--light {
  color: var(--offwhite);
}

.section-heading--light em {
  color: var(--amber);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--orange);
  color: var(--offwhite);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-burnt);
  border-color: var(--orange-burnt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--copper-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--offwhite);
  border-color: var(--offwhite);
}

.btn--ghost:hover {
  background: var(--offwhite);
  color: var(--dark-brown);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn--outline:hover {
  background: var(--orange);
  color: var(--offwhite);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--copper-glow);
}

.btn--full {
  width: 100%;
  text-align: center;
}

.btn--large {
  padding: 1.2rem 3rem;
  font-size: 1.05rem;
}


/* ============================================================
   SECTION WAVE DIVIDERS
   SVG curved transitions between sections
   ============================================================ */
.section-wave {
  position: relative;
  width: 100%;
  height: 80px;
  margin-top: -1px;
  margin-bottom: -1px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Cream wave — transitions INTO cream/offwhite sections */
.section-wave--cream {
  color: var(--offwhite);
  background: transparent;
}

/* Orange wave — transitions INTO the philosophy section (deep burnt orange) */
.section-wave--orange {
  color: #6B3420;
  background: var(--offwhite);
}

/* Dark orange wave — transitions INTO the testimonials section */
.section-wave--orange-dark {
  color: #4A2818;
  background: var(--cream);
}

/* Flipped wave — used after dark sections transitioning back to light */
.section-wave--flip {
  transform: scaleY(-1);
}

/* When flip comes after philosophy, it sits on the orange bg */
.section-wave--flip.section-wave--cream {
  background: transparent;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(58, 36, 24, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--copper);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--copper);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-mark {
  background: var(--copper);
  color: var(--offwhite);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--offwhite);
  letter-spacing: 0.05em;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--offwhite);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  color: var(--copper-light);
  border: 1px solid var(--copper);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--offwhite);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--offwhite);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================================
   HERO SECTION — Rich Terracotta / Orange Gradient
   With arch-shaped frame and floating decorative elements
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Rich terracotta/orange hero gradient — THE identity */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #7A3D1E 0%,
    #9B5228 20%,
    #C67D4A 45%,
    #B86830 65%,
    #A86535 80%,
    #7A3D1E 100%
  );
}

/* Warm radial overlays for depth — like light through terracotta arches */
.hero-bg-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(220, 160, 85, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, rgba(184, 104, 48, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 220, 180, 0.08) 0%, transparent 70%);
}

/* Subtle dot pattern — like aged terracotta texture */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image:
    radial-gradient(ellipse at 25% 40%, var(--amber) 1px, transparent 1px),
    radial-gradient(ellipse at 75% 60%, var(--copper-light) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 80%, var(--orange-bright) 1px, transparent 1px);
  background-size: 50px 50px, 70px 70px, 90px 90px;
}

/* --- Floating Decorative Elements --- */
.hero-float {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.hero-float--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  animation: heroFloat1 8s ease-in-out infinite;
}

.hero-float--2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 5%;
  background: radial-gradient(circle, var(--copper-light) 0%, transparent 70%);
  animation: heroFloat2 10s ease-in-out infinite;
  /* Diamond shape */
  border-radius: 0;
  transform: rotate(45deg);
}

.hero-float--3 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 8%;
  background: radial-gradient(circle, var(--orange-bright) 0%, transparent 70%);
  animation: heroFloat3 12s ease-in-out infinite;
}

@keyframes heroFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -15px) scale(1.05); }
  50% { transform: translate(10px, 20px) scale(0.95); }
  75% { transform: translate(-15px, 10px) scale(1.03); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  33% { transform: rotate(45deg) translate(-15px, 20px); }
  66% { transform: rotate(45deg) translate(20px, -10px); }
}

@keyframes heroFloat3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.12; }
  50% { transform: translate(15px, -20px); opacity: 0.18; }
}

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

/* --- Arch-Shaped Frame --- */
.hero-arch {
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  border: 1px solid rgba(255, 220, 180, 0.2);
  padding: 4rem 3rem 3rem;
  position: relative;
  background: rgba(122, 61, 30, 0.15);
  backdrop-filter: blur(2px);
}

.hero-arch::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  border: 1px solid rgba(255, 220, 180, 0.1);
  pointer-events: none;
}

.hero-arch-inner {
  position: relative;
  z-index: 1;
}

.hero-preheading {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--offwhite);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-heading em {
  font-style: italic;
  color: var(--amber);
  position: relative;
}

.hero-heading em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange-bright);
  opacity: 0.6;
  border-radius: 2px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
}

.hero-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
}

.hero-divider-line:last-child {
  background: linear-gradient(90deg, var(--amber), transparent);
}

.hero-divider-icon {
  color: var(--orange-bright);
  font-size: 1rem;
  line-height: 1;
  opacity: 0.8;
}

.hero-subheading {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}


/* ============================================================
   ABOUT SECTION — Cream/Off-White Background
   ============================================================ */
.about {
  background: var(--offwhite);
  overflow: hidden;
}

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

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

.about-image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198, 125, 74, 0.18);
  border-radius: 8px;
}

.about-image-icon {
  width: 80px;
  height: 80px;
  color: var(--copper);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.about-image-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--orange);
  border-radius: 12px;
  opacity: 0.3;
  z-index: -1;
}

/* Decorative dot pattern — like mosaic tile texture */
.about-image-dots {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  z-index: -1;
  opacity: 0.4;
  background-image: radial-gradient(circle, var(--copper) 2px, transparent 2px);
  background-size: 12px 12px;
}

.about-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  margin: 1.5rem 0;
  border-radius: 1px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}


/* ============================================================
   PHILOSOPHY SECTION — Deep Burnt Orange / Terracotta Interior
   Like being inside a beautiful terracotta building
   ============================================================ */
.philosophy {
  background: linear-gradient(
    170deg,
    #6B3420 0%,
    #7A3D28 30%,
    #8B4528 55%,
    #7A3D28 75%,
    #6B3420 100%
  );
  position: relative;
  overflow: hidden;
}

.philosophy-bg {
  position: absolute;
  inset: 0;
}

/* Grid pattern — like terracotta tile lines */
.philosophy-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255, 220, 180, 0.4) 40px,
      rgba(255, 220, 180, 0.4) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255, 220, 180, 0.4) 40px,
      rgba(255, 220, 180, 0.4) 41px
    );
}

.philosophy-header {
  margin-bottom: 4rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.4s var(--ease-out);
}

.philosophy-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.philosophy-card:hover::before {
  width: 80px;
}

/* Roman numeral decoration — large, semi-transparent */
.philosophy-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.philosophy-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--offwhite);
  margin-bottom: 1rem;
}

/* Decorative line — short 40px ornamental line */
.philosophy-card-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin: 0 auto 1.2rem;
  border-radius: 1px;
}

.philosophy-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.philosophy-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--amber);
}

.philosophy-quote {
  text-align: center;
  position: relative;
  padding: 2rem 0;
}

.philosophy-quote blockquote {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--offwhite);
  line-height: 1.6;
  opacity: 0.9;
}

.philosophy-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
}

.philosophy-quote-mark--end {
  text-align: right;
}


/* ============================================================
   SERVICES SECTION — Cream/Off-White Background
   ============================================================ */
.services {
  background: var(--offwhite);
}

.services-header {
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--light-gray);
  padding: 2.5rem;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--copper-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
  border-radius: 0 0 10px 10px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Featured card — warm terracotta gradient, NOT green */
.service-card--featured {
  background: linear-gradient(160deg, #7A3D1E, #9B5228 50%, #A86535 100%);
  border-color: transparent;
  transform: scale(1.02);
}

.service-card--featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 20px 60px rgba(122, 61, 30, 0.3);
}

.service-card--featured .service-card-title,
.service-card--featured .service-card-text,
.service-card--featured .service-card-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card--featured .service-card-number {
  color: var(--amber);
}

.service-card--featured .service-card-accent {
  background: var(--amber);
}

.service-card--featured::after {
  background: var(--amber);
}

.service-card-badge {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: var(--orange-bright);
  color: var(--offwhite);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 2.5rem;
  transform: rotate(45deg);
  transform-origin: center;
}

.service-card-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
}

.service-card-accent {
  width: 30px;
  height: 2px;
  background: var(--orange);
  margin-top: 0.75rem;
  border-radius: 1px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.service-card-text em {
  color: var(--orange);
  font-style: italic;
}

.service-card--featured .service-card-text em {
  color: var(--amber);
}

.service-card-features {
  margin-bottom: 2rem;
}

.service-card-features li {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border: 1px solid var(--orange);
}

.service-card--featured .service-card-features li::before {
  border-color: var(--amber);
}


/* ============================================================
   JOURNEY / PROCESS SECTION — Light warm background
   ============================================================ */
.journey {
  background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  overflow: hidden;
}

.journey-header {
  margin-bottom: 4rem;
}

.journey-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.journey-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange-bright), var(--amber), var(--copper-light), var(--copper));
}

.journey-step {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.journey-step:last-child {
  margin-bottom: 0;
}

.journey-step-marker {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  border: 2px solid var(--orange);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.journey-step-marker span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}

.journey-step:hover .journey-step-marker {
  background: var(--orange);
  transform: rotate(45deg) scale(1.05);
}

.journey-step:hover .journey-step-marker span {
  color: var(--offwhite);
  transform: rotate(-45deg);
}

.journey-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.journey-step-content p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
}


/* ============================================================
   TESTIMONIALS SECTION — Dark Warm Brown-Orange
   Like an old Italian wine cellar
   ============================================================ */
.testimonials {
  background: linear-gradient(
    160deg,
    #4A2818 0%,
    #5A3220 30%,
    #6B3420 55%,
    #5A3220 75%,
    #4A2818 100%
  );
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
}

/* Dot pattern — like aged brick texture */
.testimonials-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, var(--copper-light) 1px, transparent 1px);
  background-size: 30px 30px;
}

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

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  transition: all 0.5s var(--ease-out);
  backdrop-filter: blur(4px);
  border-radius: 10px;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-stars span {
  color: var(--amber);
  font-size: 1.1rem;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--offwhite);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50%;
}

.testimonial-author strong {
  display: block;
  color: var(--offwhite);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}


/* ============================================================
   CTA SECTION — Warm parchment background
   ============================================================ */
.cta-section {
  background: linear-gradient(180deg, var(--parchment) 0%, var(--cream) 100%);
  padding: 5rem 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--offwhite), var(--warm-white));
  border: 1px solid var(--light-gray);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(198, 125, 74, 0.15);
  border-radius: 8px;
  pointer-events: none;
}

.cta-card-ornament {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--copper);
  opacity: 0.3;
}

.cta-card-ornament--tl {
  top: 30px;
  left: 30px;
  border-top: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
  border-radius: 4px 0 0 0;
}

.cta-card-ornament--tr {
  top: 30px;
  right: 30px;
  border-top: 2px solid var(--copper);
  border-right: 2px solid var(--copper);
  border-radius: 0 4px 0 0;
}

.cta-card-ornament--bl {
  bottom: 30px;
  left: 30px;
  border-bottom: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
  border-radius: 0 0 0 4px;
}

.cta-card-ornament--br {
  bottom: 30px;
  right: 30px;
  border-bottom: 2px solid var(--copper);
  border-right: 2px solid var(--copper);
  border-radius: 0 0 4px 0;
}

.cta-card-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-card-text {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}


/* ============================================================
   CONTACT SECTION — Off-white background
   ============================================================ */
.contact {
  background: var(--offwhite);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-brown);
  margin-bottom: 0.1rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.contact-detail a:hover {
  color: var(--orange);
}

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

.contact-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  color: var(--warm-gray);
  transition: all 0.3s ease;
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
}

.contact-social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--offwhite);
  transform: translateY(-2px);
}

/* --- Contact Form --- */
.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--light-gray);
  padding: 3rem;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--offwhite);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--copper-glow);
}

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23938A80'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 1rem;
  font-style: italic;
}


/* ============================================================
   FOOTER — Dark Warm Brown
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #3A2418 0%, #2A1810 100%);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--offwhite);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-ornament-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
  opacity: 0.6;
  border-radius: 1px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--offwhite);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}


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

/* --- 1024px — Tablet landscape / small desktop --- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-col {
    max-width: 400px;
    margin: 0 auto;
  }

  .philosophy-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .philosophy-grid {
    margin-bottom: 4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--featured {
    transform: none;
  }

  .service-card--featured:hover {
    transform: translateY(-8px);
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-arch {
    padding: 3rem 2.5rem 2.5rem;
  }
}

/* --- 768px — Tablet portrait / large mobile --- */
@media (max-width: 768px) {
  :root {
    --section-pad: 5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #3A2418;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link--cta {
    border: none;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-radius: 0;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-arch {
    padding: 2.5rem 2rem 2rem;
    border-radius: 50% 50% 0 0 / 12% 12% 0 0;
  }

  .hero-arch::before {
    border-radius: 50% 50% 0 0 / 12% 12% 0 0;
  }

  .hero-float--1 {
    width: 200px;
    height: 200px;
  }

  .hero-float--2 {
    width: 120px;
    height: 120px;
  }

  .hero-float--3 {
    width: 100px;
    height: 100px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .testimonials-grid {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .section-wave {
    height: 50px;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

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

  .hero-subheading br {
    display: none;
  }

  .about-image-dots {
    width: 60px;
    height: 60px;
  }
}

/* --- 480px — Small mobile --- */
@media (max-width: 480px) {
  :root {
    --section-pad: 4rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero-arch {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 50% 50% 0 0 / 10% 10% 0 0;
  }

  .hero-arch::before {
    inset: 5px;
    border-radius: 50% 50% 0 0 / 10% 10% 0 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .service-card-badge {
    display: none;
  }

  .journey-step {
    gap: 1.5rem;
  }

  .journey-step-marker {
    width: 46px;
    height: 46px;
  }

  .journey-line {
    left: 22px;
  }

  .section-heading {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .section-wave {
    height: 40px;
  }

  .philosophy-card-num {
    font-size: 2rem;
  }

  .about-image-dots {
    width: 50px;
    height: 50px;
    top: -10px;
    left: -10px;
  }

  .cta-card-ornament {
    width: 25px;
    height: 25px;
  }

  .cta-card-ornament--tl { top: 15px; left: 15px; }
  .cta-card-ornament--tr { top: 15px; right: 15px; }
  .cta-card-ornament--bl { bottom: 15px; left: 15px; }
  .cta-card-ornament--br { bottom: 15px; right: 15px; }

  .cta-card::before {
    inset: 8px;
  }
}
