/* ============================================
   KELLEHER PROPERTY MANAGEMENT — Design Tokens
   Navy / gold coastal palette derived from brand logo
   ============================================ */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #faf8f3;
  --color-surface: #ffffff;
  --color-surface-2: #fffefb;
  --color-surface-offset: #f2eee3;
  --color-surface-offset-2: #ebe5d5;
  --color-surface-dynamic: #e2dac2;
  --color-divider: #e0d9c8;
  --color-border: #d3c9ac;

  /* Text */
  --color-text: #0e1f38;
  --color-text-muted: #566277;
  --color-text-faint: #9aa3b1;
  --color-text-inverse: #faf8f3;

  /* Primary Accent — Navy */
  --color-primary: #0b2545;
  --color-primary-hover: #163a66;
  --color-primary-active: #081a33;
  --color-primary-highlight: #d7dee9;

  /* Secondary Accent — Gold */
  --color-gold: #b98a2e;
  --color-gold-hover: #9c7326;
  --color-gold-active: #7d5b1e;
  --color-gold-highlight: #f0e4c8;

  /* Warning */
  --color-warning: #964219;
  --color-warning-hover: #713417;
  --color-warning-highlight: #ddcfc6;

  /* Error */
  --color-error: #9c2f3f;
  --color-error-hover: #7a2531;
  --color-error-highlight: #e3cfd2;

  /* Success */
  --color-success: #3f6b3a;
  --color-success-hover: #2e5029;
  --color-success-highlight: #d6ded1;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows (tone-matched navy) */
  --shadow-sm: 0 1px 2px oklch(0.15 0.03 250 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.15 0.03 250 / 0.1);
  --shadow-lg: 0 16px 40px oklch(0.15 0.03 250 / 0.16);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0a1626;
  --color-surface: #0f1f34;
  --color-surface-2: #122340;
  --color-surface-offset: #142840;
  --color-surface-offset-2: #1a3049;
  --color-surface-dynamic: #1f3a58;
  --color-divider: #223a54;
  --color-border: #2c4463;
  --color-text: #eef1f6;
  --color-text-muted: #a9b6c8;
  --color-text-faint: #6d7d94;
  --color-text-inverse: #0a1626;
  --color-primary: #c9d6e8;
  --color-primary-hover: #e4ebf4;
  --color-primary-active: #f5f8fb;
  --color-primary-highlight: #24405e;
  --color-gold: #d9ab4f;
  --color-gold-hover: #e6bd6b;
  --color-gold-active: #f0cd85;
  --color-gold-highlight: #3a3320;
  --color-warning: #bb653b;
  --color-warning-hover: #b95525;
  --color-warning-highlight: #564942;
  --color-error: #d1707f;
  --color-error-hover: #c24a59;
  --color-error-highlight: #574848;
  --color-success: #7fae78;
  --color-success-hover: #4d8f25;
  --color-success-highlight: #2f4030;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 16px 40px oklch(0 0 0 / 0.5);
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ============================================
   Base type
   ============================================ */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
}
[data-theme='dark'] h1,
[data-theme='dark'] h2,
[data-theme='dark'] h3,
[data-theme='dark'] h4 {
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
}
[data-theme='dark'] .eyebrow {
  color: var(--color-gold);
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}

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

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3);
}
.header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.header__logo-img {
  height: 52px;
  width: auto;
}
.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.15rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
[data-theme='dark'] .header__brand-name {
  color: var(--color-text);
}
.header__brand-sub {
  font-size: clamp(0.65rem, 0.58rem + 0.2vw, 0.72rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  font-weight: 600;
  white-space: nowrap;
}
[data-theme='dark'] .header__brand-sub {
  color: var(--color-gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__list {
  display: flex;
  gap: var(--space-6);
}
.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  position: relative;
}
.nav__link:hover {
  color: var(--color-primary);
}
[data-theme='dark'] .nav__link:hover {
  color: var(--color-text);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-interactive);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
[data-theme='dark'] .nav-toggle {
  color: var(--color-text);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-height: 44px;
}
.btn--primary {
  background: var(--color-gold);
  color: #1a1305;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-gold-hover);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
[data-theme='dark'] .btn--outline {
  border-color: var(--color-text);
  color: var(--color-text);
}
[data-theme='dark'] .btn--outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}
.btn--ghost-inverse {
  border: 1.5px solid oklch(1 0 0 / 0.5);
  color: #fff;
}
.btn--ghost-inverse:hover {
  background: oklch(1 0 0 / 0.12);
  border-color: #fff;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    oklch(0.13 0.03 250 / 0.86) 0%,
    oklch(0.13 0.03 250 / 0.68) 42%,
    oklch(0.13 0.03 250 / 0.28) 75%,
    oklch(0.13 0.03 250 / 0.1) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero .eyebrow {
  color: var(--color-gold);
}
.hero__title {
  font-size: var(--text-3xl);
  color: #fff;
  margin-block: var(--space-5) var(--space-6);
}
.hero__lede {
  font-size: var(--text-lg);
  color: oklch(1 0 0 / 0.86);
  max-width: 46ch;
  margin-bottom: var(--space-8);
  font-family: var(--font-body);
  font-weight: 400;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero__note {
  margin-top: var(--space-10);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: oklch(1 0 0 / 0.72);
  font-size: var(--text-sm);
}
.hero__note svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

/* ============================================
   Trust strip
   ============================================ */
.trust {
  background: var(--color-primary);
  padding-block: var(--space-6);
}
[data-theme='dark'] .trust {
  background: #071527;
  border-bottom: 1px solid var(--color-divider);
}
.trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-6) var(--space-10);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: oklch(1 0 0 / 0.92);
  font-size: var(--text-sm);
  font-weight: 500;
}
.trust__item svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

/* ============================================
   Intro / About strip
   ============================================ */
.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.intro__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro__media img {
  width: 100%;
  aspect-ratio: 4/3.1;
  object-fit: cover;
}
.intro__badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.intro__badge strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
.intro__badge span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 12ch;
  line-height: 1.3;
}
.intro__title {
  font-size: var(--text-2xl);
  margin-block: var(--space-4) var(--space-5);
}
.intro__body p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: 52ch;
}
.intro__signature {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.intro__signature-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
[data-theme='dark'] .intro__signature-name {
  color: var(--color-text);
}
.intro__signature-role {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   Services
   ============================================ */
.services {
  background: var(--color-surface-offset);
}
[data-theme='dark'] .services {
  background: var(--color-surface);
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-head__title {
  font-size: var(--text-2xl);
  margin-top: var(--space-4);
}
.section-head p {
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  font-size: var(--text-lg);
}

.service-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-10));
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 4vw, var(--space-10));
  display: flex;
  flex-direction: column;
}
.service-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-divider);
}
.service-card__head h3 {
  font-size: var(--text-lg);
}
.service-card__head span {
  font-size: var(--text-xs);
  color: var(--color-gold-hover);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
}
[data-theme='dark'] .service-card__head span {
  color: var(--color-gold);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
}
.service-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--color-text);
}
.service-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-gold-hover);
}
[data-theme='dark'] .service-list svg {
  color: var(--color-gold);
}
.service-list strong {
  font-weight: 600;
}
.service-list-desc {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-top: 2px;
}

/* ============================================
   Process / How it works
   ============================================ */
.process {
  position: relative;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(var(--space-6), 3vw, var(--space-8));
  margin-top: clamp(var(--space-10), 5vw, var(--space-14));
}
.process__step {
  position: relative;
  padding-top: var(--space-8);
  border-top: 2px solid var(--color-divider);
}
.process__step--active {
  border-top-color: var(--color-gold);
}
.process__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold-hover);
  display: block;
  margin-bottom: var(--space-3);
}
[data-theme='dark'] .process__num {
  color: var(--color-gold);
}
.process__step h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}
.process__step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================
   Lanai / photo-quote break
   ============================================ */
.break {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.break__bg {
  position: absolute;
  inset: 0;
}
.break__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.break__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, oklch(0.13 0.03 250 / 0.82) 10%, oklch(0.13 0.03 250 / 0.15) 60%);
}
.break__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.break__quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
  font-weight: 500;
  line-height: 1.35;
}
.break__cite {
  margin-top: var(--space-5);
  color: oklch(1 0 0 / 0.75);
  font-size: var(--text-sm);
}

/* ============================================
   Service area
   ============================================ */
.area {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.area__title {
  font-size: var(--text-2xl);
  margin-block: var(--space-4) var(--space-5);
}
.area__body p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  max-width: 50ch;
}
.area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.area__tag {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.area__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.area__stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}
.area__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1.4vw, 1.75rem);
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  white-space: nowrap;
}
[data-theme='dark'] .area__stat strong {
  color: var(--color-gold);
}
.area__stat span {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--color-surface-offset);
}
[data-theme='dark'] .testimonials {
  background: var(--color-surface);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--space-6), 3vw, var(--space-8));
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars {
  color: var(--color-gold-hover);
  margin-bottom: var(--space-4);
  letter-spacing: 0.05em;
}
[data-theme='dark'] .testimonial-card__stars {
  color: var(--color-gold);
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  flex: 1;
  margin-bottom: var(--space-6);
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-4);
}
.testimonial-card__author strong {
  font-size: var(--text-sm);
  font-weight: 600;
}
.testimonial-card__author span {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============================================
   CTA band
   ============================================ */
.cta {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-12), 6vw, var(--space-20));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-10);
  align-items: center;
}
.cta__title {
  font-size: var(--text-xl);
  color: #fff;
}
.cta__title span {
  color: var(--color-gold);
}
.cta p {
  color: oklch(1 0 0 / 0.78);
  margin-top: var(--space-4);
  max-width: 46ch;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}
.cta__phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.cta__phone svg {
  color: var(--color-gold);
}
[data-theme='dark'] .cta {
  background: #071527;
  border: 1px solid var(--color-border);
}

/* ============================================
   Contact / Consult form
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
}
.contact__info-title {
  font-size: var(--text-2xl);
  margin-block: var(--space-4) var(--space-5);
}
.contact__info p {
  color: var(--color-text-muted);
  max-width: 44ch;
  margin-bottom: var(--space-8);
}
.contact__detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-6);
}
.contact__detail svg {
  color: var(--color-gold-hover);
  flex-shrink: 0;
  margin-top: 3px;
}
[data-theme='dark'] .contact__detail svg {
  color: var(--color-gold);
}
.contact__detail strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 2px;
}
.contact__detail span,
.contact__detail a {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.contact__detail a:hover {
  color: var(--color-primary);
}
[data-theme='dark'] .contact__detail a:hover {
  color: var(--color-text);
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 4vw, var(--space-10));
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.field {
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field label {
  font-size: var(--text-sm);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  font-size: var(--text-base);
  min-height: 44px;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.field-fine {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-2);
}
.form-submit {
  width: 100%;
  margin-top: var(--space-2);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-primary);
  color: oklch(1 0 0 / 0.82);
}
[data-theme='dark'] .footer {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: var(--space-10);
  padding-block: clamp(var(--space-14), 6vw, var(--space-20));
  border-bottom: 1px solid oklch(1 0 0 / 0.14);
}
[data-theme='dark'] .footer__top {
  border-bottom-color: var(--color-divider);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.footer__logo-img {
  height: 44px;
  width: auto;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
}
[data-theme='dark'] .footer__brand-name {
  color: var(--color-text);
}
.footer p {
  font-size: var(--text-sm);
  max-width: 34ch;
}
[data-theme='dark'] .footer p {
  color: var(--color-text-muted);
}
.footer__heading {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__list a {
  font-size: var(--text-sm);
}
.footer__list a:hover {
  color: #fff;
}
[data-theme='dark'] .footer__list a:hover {
  color: var(--color-text);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-6);
  font-size: var(--text-xs);
  flex-wrap: wrap;
  gap: var(--space-3);
}
[data-theme='dark'] .footer__bottom {
  color: var(--color-text-faint);
}
.footer__socials {
  display: flex;
  gap: var(--space-4);
}
.footer__socials a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(1 0 0 / 0.2);
  border-radius: var(--radius-full);
}
.footer__socials a:hover {
  background: oklch(1 0 0 / 0.1);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .nav__list,
  .header__actions .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .intro,
  .area,
  .contact {
    grid-template-columns: 1fr;
  }
  .service-groups {
    grid-template-columns: 1fr;
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--space-10);
  }
}

@media (max-width: 640px) {
  .header__logo-img {
    height: 40px;
  }
  .header__brand-name {
    font-size: var(--text-sm);
  }
  .header__brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }
  .header__inner {
    gap: var(--space-3);
  }
  .header__actions {
    gap: var(--space-2);
  }
  .hero {
    min-height: auto;
    padding-block: clamp(var(--space-24), 30vw, var(--space-32)) var(--space-16);
  }
  .hero__content {
    max-width: 100%;
  }
  .trust__list {
    justify-content: flex-start;
    gap: var(--space-4) var(--space-8);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .process__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .cta__actions {
    width: 100%;
  }
  .cta__actions .btn {
    width: 100%;
  }
  .area__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .header__brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.03em;
  }
  .header__brand-name {
    font-size: 0.85rem;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav--open {
  transform: translateX(0);
}
.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}
.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
[data-theme='dark'] .mobile-nav__close {
  color: var(--color-text);
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.mobile-nav__list a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
[data-theme='dark'] .mobile-nav__list a {
  color: var(--color-text);
}
.mobile-nav__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
