/* ═══════════════════════════════════════════════════
   JMCFI — Main Stylesheet
   Palette: #0c1018 charcoal · #c9a84c gold · #7fb3c8 sky blue · #fff
═══════════════════════════════════════════════════ */

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

:root {
  --charcoal:    #0c1018;
  --charcoal-2:  #111827;
  --charcoal-3:  #1c2333;
  --gold:        #c9a84c;
  --gold-dim:    rgba(201,168,76,0.25);
  --sky:         #7fb3c8;
  --white:       #ffffff;
  --text-dim:    rgba(255,255,255,0.5);
  --text-dimmer: rgba(255,255,255,0.28);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sc:     'Playfair Display SC', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-sc);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.3px;
}

.section-heading em {
  font-style: normal;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

/* ── Background layer stack ─────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Sectional chart grid — thin cyan lines at low opacity */
.hero-chart {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(127,179,200,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,179,200,0.045) 1px, transparent 1px),
    linear-gradient(rgba(127,179,200,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,179,200,0.02) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
  transform-origin: center;
  animation: chartDrift 60s linear infinite;
}

@keyframes chartDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(120px, 120px); }
}

/* Aviation airways SVG — VOR rings, radials */
.hero-airways {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Ccircle cx='200' cy='180' r='80' stroke='%237fb3c8' stroke-width='1' fill='none'/%3E%3Ccircle cx='200' cy='180' r='140' stroke='%237fb3c8' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='200' cy='180' r='200' stroke='%237fb3c8' stroke-width='0.5' fill='none' stroke-dasharray='4 8'/%3E%3Cline x1='200' y1='40' x2='200' y2='320' stroke='%237fb3c8' stroke-width='0.5'/%3E%3Cline x1='60' y1='180' x2='340' y2='180' stroke='%237fb3c8' stroke-width='0.5'/%3E%3Cline x1='101' y1='81' x2='299' y2='279' stroke='%237fb3c8' stroke-width='0.5'/%3E%3Cline x1='299' y1='81' x2='101' y2='279' stroke='%237fb3c8' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='180' r='4' fill='%237fb3c8'/%3E%3Ccircle cx='600' cy='400' r='60' stroke='%237fb3c8' stroke-width='1' fill='none'/%3E%3Ccircle cx='600' cy='400' r='100' stroke='%237fb3c8' stroke-width='0.5' fill='none' stroke-dasharray='4 8'/%3E%3Cline x1='600' y1='300' x2='600' y2='500' stroke='%237fb3c8' stroke-width='0.5'/%3E%3Cline x1='500' y1='400' x2='700' y2='400' stroke='%237fb3c8' stroke-width='0.5'/%3E%3Ccircle cx='600' cy='400' r='4' fill='%237fb3c8'/%3E%3Cline x1='200' y1='180' x2='600' y2='400' stroke='%237fb3c8' stroke-width='0.5' stroke-dasharray='6 10'/%3E%3Cline x1='50' y1='500' x2='750' y2='100' stroke='%237fb3c8' stroke-width='0.4' stroke-dasharray='6 14'/%3E%3Cline x1='0' y1='300' x2='800' y2='280' stroke='%237fb3c8' stroke-width='0.4' stroke-dasharray='6 14'/%3E%3C/svg%3E");
  background-size: 800px 600px;
  background-repeat: repeat;
}

/* Cloud layer base */
.hero-clouds {
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  opacity: 0;
  pointer-events: none;
}

/* Layer 1 — thin wispy, very slow */
.hero-clouds--1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='400' viewBox='0 0 1200 400'%3E%3Cellipse cx='200' cy='180' rx='280' ry='55' fill='rgba(255,255,255,0.028)'/%3E%3Cellipse cx='600' cy='140' rx='350' ry='70' fill='rgba(255,255,255,0.022)'/%3E%3Cellipse cx='1000' cy='200' rx='240' ry='45' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  opacity: 0.7;
  animation: cloudDrift1 90s linear infinite;
}

/* Layer 2 — medium, mid-speed */
.hero-clouds--2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='400' viewBox='0 0 1400 400'%3E%3Cellipse cx='300' cy='220' rx='320' ry='65' fill='rgba(255,255,255,0.018)'/%3E%3Cellipse cx='800' cy='160' rx='400' ry='80' fill='rgba(255,255,255,0.025)'/%3E%3Cellipse cx='1200' cy='240' rx='280' ry='55' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
  opacity: 0.6;
  animation: cloudDrift2 65s linear infinite;
  top: 5%;
}

/* Layer 3 — slightly larger, slowest */
.hero-clouds--3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='500' viewBox='0 0 1600 500'%3E%3Cellipse cx='400' cy='260' rx='380' ry='75' fill='rgba(255,255,255,0.015)'/%3E%3Cellipse cx='1000' cy='200' rx='440' ry='85' fill='rgba(255,255,255,0.02)'/%3E%3Cellipse cx='1500' cy='280' rx='300' ry='60' fill='rgba(255,255,255,0.018)'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: cloudDrift3 110s linear infinite;
  top: -5%;
}

@keyframes cloudDrift1 {
  from { transform: translateX(0); }
  to   { transform: translateX(33.333%); }
}
@keyframes cloudDrift2 {
  from { transform: translateX(0); }
  to   { transform: translateX(33.333%); }
}
@keyframes cloudDrift3 {
  from { transform: translateX(0); }
  to   { transform: translateX(33.333%); }
}

/* Gold horizon line — pulses gently */
.hero-horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  opacity: 0;
  animation: horizonFade 3s var(--ease-out) 0.8s forwards;
}

@keyframes horizonFade {
  from { opacity: 0; transform: scaleX(0.6); }
  to   { opacity: 0.6; transform: scaleX(1); }
}

/* ── Hero content ───────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 60px;
  opacity: 0;
  animation: heroReveal 1.2s var(--ease-out) 0.3s forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.hero-bar {
  display: inline-block;
  width: 2px;
  height: 28px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-sc);
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 520px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: heroReveal 1s var(--ease-out) 1.4s forwards;
}

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

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

.hero-scroll-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  writing-mode: vertical-rl;
}


/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */

.about {
  padding: 120px 0;
  background: var(--charcoal-2);
  position: relative;
  z-index: 1;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim) 40%, var(--gold-dim) 60%, transparent);
}

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

/* Photo column */
.about-photo-col {}

.about-photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 10%;
  filter: brightness(0.9) contrast(1.05) saturate(0.8);
  display: block;
}

/* Corner accent lines */
.about-photo-frame::before,
.about-photo-frame::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}

.about-photo-frame::before {
  top: -12px;
  left: -12px;
  border-width: 2px 0 0 2px;
}

.about-photo-frame::after {
  bottom: -12px;
  right: -12px;
  border-width: 0 2px 2px 0;
}

.about-photo-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-num {
  font-family: var(--font-sc);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Text column */
.about-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 32px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.about-body p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.about-body em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-family: var(--font-sc);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-dimmer);
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}


/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */

.services {
  padding: 120px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim) 40%, var(--gold-dim) 60%, transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--charcoal);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card--active,
.service-card--featured {
  background: var(--charcoal-2);
}

.service-card--active::before,
.service-card--featured::before {
  transform: scaleX(1);
}

.service-num {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--sky);
  margin-bottom: 20px;
  opacity: 0.7;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.service-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}

.service-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.service-link:hover { opacity: 0.7; }

.services-note {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-dimmer);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */

.contact-section {
  padding: 120px 0;
  background: var(--charcoal-2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim) 40%, var(--gold-dim) 60%, transparent);
}

/* Subtle chart bg on contact */
.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}

.contact-chart {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(127,179,200,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,179,200,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-intro {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 44px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  transition: color 0.2s;
}

.contact-item:hover { color: var(--white); }

.contact-item-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item-icon svg { width: 100%; height: 100%; }

.contact-sub-location {
  font-size: 12px;
  color: var(--text-dimmer);
}

/* Form card */
.contact-form-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 48px;
}

/* ── Gravity Forms reset & style ─────────────── */
.gform_wrapper .gform_title { display: none; }
.gform_wrapper .gform_description { display: none; }

.gform_wrapper .gfield {
  margin-bottom: 20px !important;
}

.gform_wrapper .gfield_label {
  font-family: var(--font-sans) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--text-dimmer) !important;
  margin-bottom: 8px !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100% !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  padding: 14px 16px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  -webkit-appearance: none !important;
}

.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: var(--gold) !important;
}

.gform_wrapper textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

.gform_wrapper select option {
  background: var(--charcoal-2);
  color: var(--white);
}

.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
  margin-top: 8px !important;
  padding: 0 !important;
}

.gform_wrapper input[type="submit"],
.gform_wrapper .gform_button {
  display: inline-block !important;
  width: 100% !important;
  padding: 16px 32px !important;
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.3s, color 0.3s !important;
  border-radius: 0 !important;
}

.gform_wrapper input[type="submit"]:hover,
.gform_wrapper .gform_button:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}

.gform_wrapper .gfield_required { color: var(--gold) !important; }

.gform_wrapper .validation_message,
.gform_wrapper .gfield_description.validation_message {
  font-size: 11px !important;
  color: #e07b7b !important;
  margin-top: 6px !important;
}

.gform_wrapper .gform_confirmation_message {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-size: 18px !important;
  color: var(--gold) !important;
  text-align: center !important;
  padding: 32px 0 !important;
}

/* Placeholder fallback */
.gf-placeholder {
  text-align: center;
  padding: 48px 24px;
}

.gf-placeholder-msg {
  font-size: 13px;
  color: var(--text-dimmer);
  font-style: italic;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */

.site-footer {
  background: var(--charcoal);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim) 40%, var(--gold-dim) 60%, transparent);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-bottom: 48px;
}

.footer-name {
  font-family: var(--font-sc);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-name span {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-left: 8px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-dimmer);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}

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

.footer-dot { color: var(--gold); opacity: 0.4; }

.footer-copy {
  font-size: 11px;
  color: var(--text-dimmer);
  letter-spacing: 0.5px;
}

.footer-bar {
  height: 3px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  opacity: 0.6;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo-badge {
    right: 0;
    bottom: 16px;
  }

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

  .hero-content {
    padding: 0 32px;
  }

  .container { padding: 0 24px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .about, .services, .contact-section { padding: 80px 0; }
  .contact-form-card { padding: 28px 20px; }
}

/* -- Scroll fade-in --------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
