/* ═══════════════════════════════════════════
   CROWN CONSTRUCTION MANAGEMENT
   Premium Construction Management Website
   ═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --navy: #2B3441;
  --navy-deep: #1A2029;
  --navy-mid: #34404F;
  --gold: #C5963B;
  --gold-light: #D4AA5C;
  --gold-dim: #8B6B2A;
  --gold-accessible: #7A5C1E;
  --gold-bg: #F8F1E4;
  --charcoal: #333840;
  --slate: #5A6475;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --cream: #FAF8F5;
  --border: #E2E0DD;
  --border-dark: #3A4555;
  --text-primary: #2A2520;
  --text-secondary: #5A5550;
  --text-light: #8A8580;
  --text-on-dark: #D4CFC5;
  --text-on-dark-bright: #EEEAE5;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --nav-height: 80px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;
  --max-width: 1200px;
  --max-width-narrow: 800px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { 
  font-size: 1.05rem; 
  line-height: 1.7; 
  color: var(--text-secondary); 
}

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

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

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

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

.section--dark {
  background: var(--navy);
  color: var(--text-on-dark-bright);
}

.section--dark p { color: var(--text-on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section--cream { background: var(--cream); }
.section--deep { background: var(--navy-deep); color: var(--text-on-dark-bright); }
.section--deep p { color: var(--text-on-dark); }
.section--deep h2, .section--deep h3 { color: var(--white); }

/* ── Gold Accent Line ── */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}

.gold-line--center { margin-left: auto; margin-right: auto; }
.gold-line--wide { width: 80px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: 0.02em;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 150, 59, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--gold-accessible);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--white-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 150, 59, 0.2);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
}

.nav--transparent {
  background: transparent;
}

.nav--solid {
  background: rgba(26, 32, 41, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(197, 150, 59, 0.15);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 50px;
  width: auto;
  transition: opacity 0.3s;
}

.nav__logo:hover img { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--gold); }
.nav__link--active::after { width: 100%; }

.nav__cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 13px 24px;
  min-height: 44px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 3px;
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: 0.02em;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 14px 8px;
  min-height: 44px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.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 ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Architectural grid lines */
.hero__bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(197,150,59,0.08) 30%, rgba(197,150,59,0.08) 70%, transparent);
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 20%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(197,150,59,0.05) 40%, rgba(197,150,59,0.05) 60%, transparent);
}

/* Subtle diagonal accent */
.hero__accent {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 120%;
  background: linear-gradient(135deg, transparent 40%, rgba(197,150,59,0.03) 50%, transparent 60%);
  transform: skewX(-15deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__logo {
  width: 280px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero h1 span { color: var(--gold); }

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

/* Hero for sub-pages */
.hero--sub {
  min-height: 400px;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
}

/* Hero Home — two-column with seamless logo */
.hero--home {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__home-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__home-layout .hero__content {
  max-width: none;
}

.hero__logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out) 0.6s forwards;
}

.hero__logo-seamless {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
  transition: transform 0.6s var(--ease-smooth);
}

.hero__logo-block:hover .hero__logo-seamless {
  transform: scale(1.03);
}

/* Subtle glow behind logo */
.hero__logo-block::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(197,150,59,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero--sub h1 {
  animation-delay: 0.2s;
}

.hero--sub .gold-line {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero--sub p {
  animation-delay: 0.4s;
}

/* ── About Preview (Home) ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-card {
  padding: 24px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-smooth);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.value-card h3 {
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 1rem;
}

.value-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-preview__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-preview__logo-display {
  width: 100%;
  max-width: 380px;
  padding: 60px 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-preview__logo-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.about-preview__logo-display img {
  width: 85%;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-smooth);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.service-card:hover::before { height: 100%; }

.service-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card:hover .service-card__number { color: var(--gold-dim); }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Service card - featured (larger) */
.service-card--featured {
  grid-column: span 1;
  background: var(--navy);
  border-color: var(--navy);
}

.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: var(--text-on-dark); }
.service-card--featured .service-card__number { color: var(--navy-mid); }
.service-card--featured:hover .service-card__number { color: var(--gold-dim); }
.service-card--featured:hover { border-color: var(--gold); }

/* ── Process Timeline ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border-dark);
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--ease-smooth);
}

.process-step:hover .process-step__number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(197,150,59,0.4);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ── Why Crown Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  padding: 32px;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
}

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

.why-card:hover {
  border-color: rgba(197,150,59,0.3);
  transform: translateY(-4px);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card__icon {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-on-dark);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ── Engagement Types ── */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.engagement-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(197,150,59,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s;
}

.engagement-item:hover {
  border-color: var(--gold);
  background: rgba(197,150,59,0.1);
}

.engagement-item h3 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.engagement-item p {
  font-size: 0.82rem;
}

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-info__item {
  margin-bottom: 32px;
}

.contact-info__item h3 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-info__item p {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
}

.contact-info__item p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info__item p a:hover { color: var(--gold-light); }

.contact-info__item p.desc {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.92rem;
}

/* ── Form ── */
.form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s;
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,150,59,0.12);
}

.form__textarea { resize: vertical; min-height: 120px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
}

/* ── Footer ── */
.footer {
  background: var(--navy-deep);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand img {
  height: 55px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 12px;
}

.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  color: var(--text-on-dark);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: #9E9891;
}

/* ── 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Keyframe Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Page-specific: About ── */
.about-full {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-full__story h2 { margin-bottom: 8px; }
.about-full__story p { margin-bottom: 16px; }

.about-full__sidebar {
  background: var(--navy);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-full__sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.about-full__sidebar h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.area-list li {
  color: var(--text-on-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-list li::before {
  content: '';
  width: 8px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.area-list li:last-child { border-bottom: none; }

.values-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-full-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.value-full-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.value-full-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.value-full-card h3 { margin-bottom: 8px; }

.value-full-card p {
  font-size: 0.88rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .values-full { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --nav-height: 70px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(26, 32, 41, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
  }

  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.1rem; color: var(--white); }
  .nav__toggle { display: flex; }

  .hero { min-height: 90vh; padding-top: calc(var(--nav-height) + 40px); }
  .hero__logo { width: 200px; }
  .hero--sub { min-height: 300px; }

  .hero__home-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero__logo-block { order: -1; }
  .hero__logo-seamless { max-width: 300px; }

  .about-preview { grid-template-columns: 1fr; gap: 40px; }
  .about-preview__image { order: -1; }
  .about-preview__values { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .engagement-grid { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero__buttons { flex-direction: column; }
  .btn--large { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .values-full { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── Focus Visible ── */
.nav__link:focus-visible,
.nav__logo:focus-visible,
.nav__cta:focus-visible,
.nav__toggle:focus-visible,
.footer__links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.form__input:focus-visible,
.form__select:focus-visible,
.form__textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 150, 59, 0.18);
}

/* ── Placeholder Text ── */
.form__input::placeholder,
.form__textarea::placeholder {
  color: #6B6B6B;
  opacity: 1;
}

/* ── Form Status Messages ── */
#form-status:empty { display: none; }

.form__success {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(74, 143, 82, 0.1);
  border: 1px solid rgba(74, 143, 82, 0.4);
  border-radius: 4px;
  color: #2F7A35;
  font-size: 0.95rem;
  font-weight: 500;
}

.form__error {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(190, 50, 50, 0.08);
  border: 1px solid rgba(190, 50, 50, 0.3);
  border-radius: 4px;
  color: #9E2020;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero h1,
  .hero p,
  .hero__tagline,
  .hero__buttons,
  .hero__logo,
  .hero__logo-block,
  .hero--sub .gold-line {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
