/* ============================================
   CUTT N COUSINS — Lawn Care & Landscaping
   Your Lawn, Our Priority.
   ============================================ */

:root {
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --charcoal: #2a2a2a;
  --silver: #c8c9cb;
  --silver-light: #e8e9eb;
  --silver-bg: #f4f5f7;
  --white: #ffffff;
  --orange: #f2a23a;
  --orange-deep: #e88a14;
  --orange-bright: #ff9a1f;
  --text-muted: #6b6b6b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--silver-light);
}

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

.logo-wrap { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-wrap img { height: 52px; width: auto; }
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1;
}
.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-top: 0.3rem;
}

.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange-deep); }

.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 0.7rem 1.5rem; border-radius: 999px;
  transition: all 0.25s !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange); color: var(--black) !important; transform: translateY(-1px); }

.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--black); margin: 4px 0;
  transition: 0.3s;
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--silver-light);
  padding: 1.5rem 2rem 2rem;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 1rem; }
.mobile-menu a {
  text-decoration: none; color: var(--ink);
  font-size: 1.05rem; font-weight: 500;
  display: block; padding: 0.5rem 0;
}
.mobile-menu a.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  text-align: center; margin-top: 0.5rem;
}

/* ============ BUTTONS ============ */
.btn-primary, .btn-secondary {
  padding: 1.05rem 2.1rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer; font-family: inherit;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--orange); color: var(--black);
  box-shadow: 0 6px 20px -6px rgba(242, 162, 58, 0.5);
}
.btn-primary:hover {
  background: var(--orange-bright); transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(242, 162, 58, 0.6);
}
.btn-secondary {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-secondary:hover { background: var(--black); color: var(--white); }

/* ============ HERO ============ */
.hero {
  padding: 9rem 0 5rem; position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(242, 162, 58, 0.08) 0%, transparent 50%),
    var(--white);
  overflow: hidden;
}

.hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--orange-deep); margin-bottom: 1.75rem;
}
.eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--orange);
}

h1.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 1.75rem;
}
h1.hero-title em {
  font-style: italic; font-weight: 400;
  color: var(--orange-deep);
  position: relative;
  display: inline-block;
}
h1.hero-title em::after {
  content: ''; position: absolute;
  bottom: 0.1em; left: 0; right: 0; height: 0.15em;
  background: var(--orange);
  opacity: 0.25;
  z-index: -1;
}

.hero-text {
  font-size: 1.15rem; color: var(--text-muted);
  margin-bottom: 2.5rem; max-width: 500px; line-height: 1.65;
}

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

.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(165deg, #1a1a1a 0%, #0a0a0a 100%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200, 201, 203, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 201, 203, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.hero-visual::after {
  content: ''; position: absolute;
  top: -20%; right: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(242, 162, 58, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero-visual-logo {
  position: absolute; top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62%; max-width: 290px;
  filter: drop-shadow(0 10px 30px rgba(242, 162, 58, 0.4));
  z-index: 2;
}

.hero-badge {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  background: var(--white); padding: 1.1rem 1.4rem;
  border-radius: 14px; z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 0.9rem;
  border: 1px solid var(--silver-light);
}
.hero-badge-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); display: flex;
  align-items: center; justify-content: center;
  color: var(--black); font-size: 1.2rem; font-weight: 700;
}
.hero-badge-num {
  font-family: 'Fraunces', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--black); line-height: 1;
}
.hero-badge-label {
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.2rem; font-weight: 500;
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  padding: 9rem 0 4rem;
  background:
    radial-gradient(ellipse at top right, rgba(242, 162, 58, 0.08) 0%, transparent 50%),
    var(--white);
  border-bottom: 1px solid var(--silver-light);
  position: relative;
}
.page-hero-inner { max-width: 780px; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--orange-deep); font-weight: 400; }
.page-hero p {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.65;
}

/* ============ TRUST BAR ============ */
.trust {
  padding: 2.5rem 0;
  background: var(--silver-bg);
  border-bottom: 1px solid var(--silver-light);
}
.trust-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--ink); font-size: 0.9rem; font-weight: 500;
}
.trust-item svg { color: var(--orange-deep); flex-shrink: 0; }

/* ============ SECTIONS ============ */
.services { padding: 7rem 0; }

.section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-bottom: 4.5rem; align-items: end;
}

h2.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--black);
}
h2.section-title em { font-style: italic; color: var(--orange-deep); font-weight: 400; }

.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 460px; }

/* ============ SERVICES GRID (home page) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.service-card { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: span 2; }

.service-card {
  background: var(--white); border-radius: 20px;
  padding: 2.25rem 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--silver-light);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.15);
  border-color: var(--silver);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--silver-bg); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--black); font-size: 1.5rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--orange); color: var(--black); transform: rotate(-6deg);
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--black); margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.6; margin-bottom: 1.25rem;
}
.service-link {
  color: var(--black); text-decoration: none;
  font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.service-link:hover { gap: 0.7rem; color: var(--orange-deep); }

/* ============ FEATURE STRIP (dark) ============ */
.feature-strip {
  background: var(--black);
  padding: 6rem 0; color: var(--white); position: relative; overflow: hidden;
}
.feature-strip::before {
  content: ''; position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242, 162, 58, 0.15) 0%, transparent 70%);
}
.feature-strip::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200, 201, 203, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 201, 203, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
}
.feature-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.feature-grid h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 1.5rem;
}
.feature-grid h2 em { font-style: italic; color: var(--orange); font-weight: 400; }
.feature-grid > div p { color: var(--silver); font-size: 1.05rem; max-width: 480px; }

.stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.stat { border-left: 2px solid var(--orange); padding-left: 1.25rem; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem; font-weight: 600;
  line-height: 1; color: var(--white);
  letter-spacing: -0.025em;
}
.stat-label {
  color: var(--silver);
  font-size: 0.8rem; margin-top: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 500;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  padding: 7rem 0; text-align: center;
  background: var(--silver-bg);
}
.testimonial-content { max-width: 780px; margin: 0 auto; }
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 5rem; color: var(--orange);
  line-height: 0.8; margin-bottom: 1rem;
  font-weight: 700;
}
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400; font-style: italic;
  line-height: 1.25; color: var(--black);
  letter-spacing: -0.015em; margin-bottom: 2rem;
}
.testimonial cite {
  font-style: normal; color: var(--text-muted);
  font-size: 0.95rem; font-weight: 600;
}
.testimonial cite span {
  display: block; font-weight: 500; font-size: 0.75rem;
  color: var(--orange-deep); margin-top: 0.4rem;
  text-transform: uppercase; letter-spacing: 0.15em;
}

/* ============ CTA CARD ============ */
.cta-section { padding: 5rem 0 7rem; }
.cta-card {
  background: var(--black);
  border-radius: 28px; padding: 5rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242, 162, 58, 0.3) 0%, transparent 70%);
}
.cta-card::after {
  content: ''; position: absolute;
  top: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 201, 203, 0.06) 0%, transparent 70%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600; color: var(--white);
  line-height: 1.05; margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.cta-card h2 em { font-style: italic; color: var(--orange); font-weight: 400; }
.cta-card p {
  color: var(--silver); font-size: 1.1rem;
  margin-bottom: 2.5rem; max-width: 540px;
  margin-left: auto; margin-right: auto;
}

/* ============ SERVICES PAGE — DETAIL CARDS ============ */
.service-detail-list {
  padding: 6rem 0;
  display: grid; gap: 4rem;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
}
.service-detail:nth-child(even) .service-detail-visual { order: 2; }
.service-detail-visual {
  aspect-ratio: 4/3; border-radius: 20px;
  background: linear-gradient(165deg, var(--silver-bg), var(--silver-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-deep); position: relative;
  overflow: hidden; border: 1px solid var(--silver-light);
}
.service-detail-visual svg { width: 40%; height: 40%; opacity: 0.5; }
.service-detail-visual::before {
  content: ''; position: absolute;
  top: 20px; right: 20px;
  background: var(--orange); color: var(--black);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1.2rem;
}
.service-detail:nth-child(1) .service-detail-visual::before { content: '01'; }
.service-detail:nth-child(2) .service-detail-visual::before { content: '02'; }
.service-detail:nth-child(3) .service-detail-visual::before { content: '03'; }
.service-detail:nth-child(4) .service-detail-visual::before { content: '04'; }
.service-detail:nth-child(5) .service-detail-visual::before { content: '05'; }
.service-detail-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--black);
  margin-bottom: 1rem;
}
.service-detail-content > p {
  color: var(--text-muted); font-size: 1.05rem;
  margin-bottom: 1.75rem; line-height: 1.65;
}
.service-detail-content ul {
  list-style: none; margin-bottom: 1.75rem;
}
.service-detail-content li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative; color: var(--ink);
  font-size: 0.95rem;
}
.service-detail-content li::before {
  content: ''; position: absolute;
  left: 0; top: 1.05rem;
  width: 16px; height: 2px; background: var(--orange);
}

/* ============ FORMS (quote, contact, portal) ============ */
.form-section { padding: 5rem 0 7rem; }
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.form-info h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--black);
  margin-bottom: 1.25rem;
}
.form-info h2 em { font-style: italic; color: var(--orange-deep); font-weight: 400; }
.form-info > p {
  color: var(--text-muted); font-size: 1.05rem;
  margin-bottom: 2rem; line-height: 1.65;
}

.info-list { list-style: none; }
.info-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--silver-light);
}
.info-list li:last-child { border-bottom: 1px solid var(--silver-light); }
.info-list svg {
  color: var(--orange-deep); flex-shrink: 0;
  margin-top: 0.2rem;
}
.info-list strong {
  display: block; font-weight: 600;
  color: var(--black); margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.info-list span, .info-list a {
  font-size: 0.9rem; color: var(--text-muted);
  text-decoration: none;
}
.info-list a:hover { color: var(--orange-deep); }

.form-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.1);
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--orange-deep); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.9rem 1rem;
  border: 1.5px solid var(--silver-light);
  border-radius: 10px;
  font-family: inherit; font-size: 0.95rem;
  background: var(--white); color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 162, 58, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-group {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 0.5rem;
}
.checkbox-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--silver-light);
  border-radius: 10px; cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem; font-weight: 500;
}
.checkbox-item:hover { border-color: var(--silver); }
.checkbox-item input { accent-color: var(--orange); }
.checkbox-item input:checked + span { color: var(--black); font-weight: 600; }
.checkbox-item:has(input:checked) {
  border-color: var(--orange);
  background: rgba(242, 162, 58, 0.05);
}

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

.form-note {
  margin-top: 1.25rem; font-size: 0.8rem;
  color: var(--text-muted); text-align: center;
}

/* ============ ABOUT PAGE BLOCKS ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 6rem 0;
}
.about-grid h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--black);
  margin-bottom: 1.5rem;
}
.about-grid h2 em { font-style: italic; color: var(--orange-deep); font-weight: 400; }
.about-grid > div > p {
  color: var(--text-muted); font-size: 1.05rem;
  margin-bottom: 1.25rem; line-height: 1.7;
}
.about-visual {
  aspect-ratio: 1/1; border-radius: 24px;
  background: linear-gradient(165deg, #1a1a1a, #0a0a0a);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(242, 162, 58, 0.35) 0%, transparent 60%);
}
.about-visual img {
  width: 60%; max-width: 280px; position: relative; z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(242, 162, 58, 0.4));
}

/* ============ PORTAL ============ */
.portal-card {
  max-width: 480px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.1);
  text-align: center;
}
.portal-card .portal-logo {
  height: 72px; margin: 0 auto 1.5rem;
  display: block;
}
.portal-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem; font-weight: 600;
  color: var(--black); margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.portal-card > p {
  color: var(--text-muted); font-size: 0.95rem;
  margin-bottom: 2rem;
}
.portal-card .form-group { text-align: left; }
.portal-extras {
  display: flex; justify-content: space-between;
  align-items: center; margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
}
.portal-extras label {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--text-muted); font-weight: 500;
}
.portal-extras label input { accent-color: var(--orange); }
.portal-extras a {
  color: var(--orange-deep); text-decoration: none;
  font-weight: 600;
}
.portal-extras a:hover { text-decoration: underline; }
.portal-divider {
  margin: 1.5rem 0; display: flex; align-items: center;
  gap: 1rem; color: var(--text-muted);
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 600;
}
.portal-divider::before, .portal-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--silver-light);
}
.portal-footer {
  margin-top: 1.5rem; font-size: 0.9rem;
  color: var(--text-muted);
}
.portal-footer a {
  color: var(--black); font-weight: 600;
  text-decoration: none;
}
.portal-footer a:hover { color: var(--orange-deep); }

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  color: var(--silver);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--charcoal);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img { height: 64px; margin-bottom: 1.25rem; }
.footer-brand .footer-slogan {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.footer-brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.6; color: var(--silver); }
.footer-col h4 {
  color: var(--white); font-family: 'Fraunces', serif;
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  color: var(--silver); text-decoration: none;
  font-size: 0.9rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--charcoal);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: var(--text-muted);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-grid > div > * { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards; }
.hero-grid > div > *:nth-child(1) { animation-delay: 0.05s; }
.hero-grid > div > *:nth-child(2) { animation-delay: 0.15s; }
.hero-grid > div > *:nth-child(3) { animation-delay: 0.25s; }
.hero-grid > div > *:nth-child(4) { animation-delay: 0.35s; }
.hero-visual { animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s backwards; }
.page-hero-inner > * { animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) backwards; }
.page-hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.page-hero-inner > *:nth-child(3) { animation-delay: 0.25s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid, .section-head, .feature-grid, .footer-grid,
  .service-detail, .form-wrap, .about-grid {
    grid-template-columns: 1fr; gap: 2.5rem;
  }
  .service-detail:nth-child(even) .service-detail-visual { order: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 7rem 0 4rem; }
  .page-hero { padding: 7rem 0 3rem; }
  .services, .testimonial, .feature-strip { padding: 5rem 0; }
  .cta-card { padding: 3.5rem 1.5rem; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-inner { justify-content: center; }
  .form-row, .checkbox-group { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; }
}
@media (max-width: 500px) {
  .container { padding: 0 1.25rem; }
  .logo-wrap img { height: 42px; }
  .logo-text { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .form-card, .portal-card { padding: 1.75rem 1.25rem; }
}
