/*
Theme Name: Shihana Alrammah
Theme URI: https://shihanaalrammah.com
Author: Sam Trabulsi
Author URI: https://samtrabulsi.com
Description: A luxury editorial WordPress theme for executive and leadership coach Shihana Alrammah. Built around the HERE Method™ brand identity — deep forest green, warm gold, and refined typography.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: shihana
Tags: custom-menu, custom-logo, featured-images, full-width-template, post-thumbnails, theme-options
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — SHIHANA BRAND SYSTEM
   ============================================================ */
:root {
  /* Brand Colors */
  --forest:       #0e1f12;
  --forest-mid:   #1a2e1a;
  --forest-light: #243d24;
  --gold:         #c8963e;
  --gold-light:   #e2b96a;
  --gold-pale:    #f5e9d3;
  --cream:        #f9f5ef;
  --cream-dark:   #ede8df;
  --sand:         #d4c8b0;
  --charcoal:     #2c2c2c;
  --white:        #ffffff;
  --text-dark:    #1c1c1c;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --font-label:   'Jost', sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   7rem;
  --space-2xl:  10rem;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --duration:   0.5s;

  /* Layout */
  --max-width:  1280px;
  --col-gap:    2rem;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h4 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: var(--charcoal);
}

.label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section {
  padding: var(--space-xl) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--col-gap);
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary:hover { color: var(--gold); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  border: 1px solid var(--forest);
  color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--gold-light);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   DECORATIVE ELEMENTS
   ============================================================ */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider-center { margin: 1.5rem auto; }

.gold-rule {
  border: none;
  border-top: 1px solid var(--gold);
  opacity: 0.4;
  margin: 3rem 0;
}

.number-badge {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(200, 150, 62, 0.12);
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: -1rem;
  pointer-events: none;
}

/* ============================================================
   SITE HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(14, 31, 18, 0.96);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200, 150, 62, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

.site-logo span {
  color: var(--gold);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.primary-nav a {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a.current { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a.current::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(200, 150, 62, 0.4);
  padding: 0.6rem 1.4rem;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
  border-color: var(--gold) !important;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(200, 150, 62, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(200, 150, 62, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, var(--forest) 0%, #0a1a0d 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: 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='%23c8963e' 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");
  opacity: 0.5;
}

.hero-line {
  position: absolute;
  top: 0;
  right: 20%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(200, 150, 62, 0.2), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-xl);
  padding-top: 120px;
  width: 100%;
}

.hero-tagline {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tagline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 0.2em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  max-width: 480px;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(200, 150, 62, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============================================================
   PHILOSOPHY / INTRO SECTION
   ============================================================ */
.philosophy {
  background: var(--cream);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}

.philosophy-left {
  position: relative;
}

.philosophy-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--forest-light);
}

.philosophy-portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-portrait-placeholder span {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(200, 150, 62, 0.2);
}

.portrait-label {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  padding: 1.5rem;
  max-width: 200px;
}

.portrait-label p {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.6;
}

.philosophy-right blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

/* ============================================================
   THE HERE METHOD™
   ============================================================ */
.here-method {
  background: var(--forest);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.here-method::before {
  content: 'HERE';
  position: absolute;
  font-family: var(--font-display);
  font-size: 25vw;
  font-weight: 300;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.here-header {
  text-align: center;
  margin-bottom: 5rem;
}

.here-header h2 {
  color: var(--white);
}

.here-header .eyebrow {
  color: var(--gold);
}

.here-header p {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 1.5rem auto 0;
}

.here-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200, 150, 62, 0.1);
}

.here-step {
  background: var(--forest);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out);
}

.here-step:hover {
  background: var(--forest-light);
}

.here-step::before {
  content: attr(data-letter);
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(200, 150, 62, 0.08);
  line-height: 1;
  transition: color 0.4s;
}

.here-step:hover::before {
  color: rgba(200, 150, 62, 0.15);
}

.step-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.here-step p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   CREDENTIALS / TRUST SECTION
   ============================================================ */
.credentials {
  background: var(--cream-dark);
  padding: var(--space-xl) 0;
}

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

.cred-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cred-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cred-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--forest);
}

.cred-text strong {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  display: block;
  margin-bottom: 0.25rem;
}

.cred-text span {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

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

.stat-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid var(--gold);
}

.stat-card .number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}

.stat-card .stat-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ============================================================
   WHY SHIHANA / DIFFERENTIATORS
   ============================================================ */
.differentiators {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand);
  margin-top: 4rem;
}

.diff-card {
  background: var(--cream);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.diff-card:hover {
  background: var(--white);
}

.diff-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.diff-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--forest);
}

.diff-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--forest-mid);
  padding: var(--space-xl) 0;
  position: relative;
}

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

.services-header h2 { color: var(--white); }
.services-header p {
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-top: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(200, 150, 62, 0.1);
}

.service-card {
  background: var(--forest);
  padding: 4rem 3rem;
  position: relative;
  transition: background 0.4s var(--ease-out);
  overflow: hidden;
}

.service-card:hover { background: #162616; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}

.service-card:hover::after { width: 100%; }

.service-tag {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-badge {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 150, 62, 0.25);
  color: rgba(200, 150, 62, 0.7);
  padding: 0.4rem 0.8rem;
}

/* ============================================================
   CLIENT IDEAL / WHO THIS IS FOR
   ============================================================ */
.ideal-client {
  background: var(--gold-pale);
  padding: var(--space-xl) 0;
}

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

.ideal-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.ideal-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.ideal-marker {
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.65rem;
  flex-shrink: 0;
}

.ideal-item p {
  font-size: 1rem;
  color: var(--forest);
  line-height: 1.7;
}

.ideal-aside {
  background: var(--forest);
  padding: 4rem 3rem;
}

.ideal-aside h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.ideal-aside p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.testimonial-card {
  background: var(--white);
  padding: 3rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.testimonial-author strong {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  display: block;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gold);
}

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.contact-cta {
  background: var(--forest);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200, 150, 62, 0.08);
}

.contact-cta::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(200, 150, 62, 0.05);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-left h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-left p {
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin-bottom: 3rem;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 150, 62, 0.12);
  padding: 3rem;
}

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

.form-group label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200, 150, 62, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group select option { background: var(--forest); }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080f09;
  padding: 5rem 0 2.5rem;
  color: rgba(255,255,255,0.4);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .site-logo {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
  max-width: 260px;
}

.footer-col h5 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
}

.footer-bottom a { color: var(--gold); }

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   WORDPRESS NATIVE ELEMENTS
   ============================================================ */
.wp-block-image img { width: 100%; height: auto; }

.entry-content h2 { margin: 2.5rem 0 1rem; }
.entry-content h3 { margin: 2rem 0 0.75rem; }
.entry-content p { margin-bottom: 1.25rem; }

.alignleft { float: left; margin: 0 2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 2rem; }
.aligncenter { margin: 0 auto 1rem; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .philosophy-inner,
  .credentials-inner,
  .contact-inner,
  .ideal-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .here-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero h1 { font-size: clamp(3rem, 10vw, 5rem); }
  .here-steps { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }

  /* Mobile nav drawer */
  .primary-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--forest);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .primary-nav.open ul { flex-direction: column; align-items: center; gap: 2rem; }
  .primary-nav.open a { font-size: 0.9rem; }
}
