/* ============================================================
   YOUR PROPERTY CREW — STYLES
   Colour tokens, typography, and all section styles
   ============================================================ */

/* ── Tokens ── */
:root {
  --green:    #2C4A30;
  --green-dk: #1e3320;
  --linen:    #F5EFE6;
  --charcoal: #231A16;
  --sage:     #7F917E;
  --stone:    #DCD4C9;
  --white:    #FFFFFF;
  --shadow:   0 2px 16px rgba(35, 26, 22, 0.08);
  --shadow-md:0 4px 32px rgba(35, 26, 22, 0.12);
  --radius:   4px;
  --radius-md:8px;
  --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }
scrollbar-width: thin;
scrollbar-color: var(--stone) transparent;

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.1;
  font-weight: 700;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 4.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; font-weight: 600; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.eyebrow-sage { color: var(--sage); }
.eyebrow-light { color: rgba(255,255,255,0.6); }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header-light h2,
.section-header-light .eyebrow { color: var(--white); }
.section-sub {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #6b6058;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dk); border-color: var(--green-dk); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--stone);
}
.btn-ghost:hover { border-color: var(--charcoal); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Hidden ── */
.hidden { display: none !important; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--linen);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav-scrolled {
  border-bottom-color: var(--stone);
  box-shadow: 0 1px 12px rgba(35,26,22,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5a4a42;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 0.875rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: 16px 40px 24px;
  border-top: 1px solid var(--stone);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav-mobile a { font-size: 1rem; font-weight: 500; color: var(--charcoal); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { padding: 16px 20px 24px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  min-height: 92vh;
  overflow: hidden;
}
.hero-left {
  width: 46%;
  flex-shrink: 0;
  background: var(--linen);
  display: flex;
  align-items: center;
  padding: 80px 0 80px 0;
  position: relative;
}
.hero-left .hero-text {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.hero-right {
  flex: 1;
  overflow: visible;
  position: relative;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
.hero-text h1 {
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--green);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.hero-body {
  font-size: 0.925rem;
  color: #5a4a42;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  font-size: 0.72rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  text-transform: uppercase;
}
.dot { color: var(--stone); }

@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { width: 100%; padding: 60px 0 48px; }
  .hero-left .hero-text { margin-left: 0; max-width: 100%; padding: 0 20px; }
  .hero-right { width: 100%; height: 300px; }
}

/* ============================================================
   TICKER BANNER
   ============================================================ */
.ticker {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-track span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 8px;
}
.ticker-dot {
  color: rgba(255,255,255,0.3) !important;
  padding: 0 4px !important;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--green);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 32px;
}
.trust-item svg { opacity: 0.7; flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 600px) {
  .trust-inner { gap: 4px; }
  .trust-item { padding: 6px 16px; font-size: 0.78rem; }
  .trust-divider { display: none; }
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 280px;
  overflow: hidden;
}
.photo-strip-item {
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-strip-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); height: 200px; }
  .photo-strip-item:nth-child(4),
  .photo-strip-item:nth-child(5) { display: none; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  background: var(--linen);
  padding: 100px 0;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.problem-left h2 {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.problem-body {
  font-size: 1rem;
  color: #6b5e57;
  line-height: 1.7;
}
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.problem-icon {
  color: var(--sage);
  margin-bottom: 12px;
}
.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 0.9rem;
  color: #6b5e57;
  line-height: 1.6;
}

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

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--white);
  padding: 100px 0;
}
.services-toggle {
  display: flex;
  gap: 4px;
  background: var(--linen);
  border: 1px solid var(--stone);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}
.toggle-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b5e57;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.toggle-btn.active {
  background: var(--green);
  color: var(--white);
}
.toggle-btn:hover:not(.active) { color: var(--charcoal); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--linen);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon { color: var(--sage); margin-bottom: 4px; }
.service-card h3 {
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.service-card p {
  font-size: 0.875rem;
  color: #6b5e57;
  line-height: 1.6;
  flex: 1;
}
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: 0.02em; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-toggle { width: 100%; justify-content: center; }
}

/* ============================================================
   HOW IT WORKS (PROCESS)
   ============================================================ */
.process {
  background: var(--green);
  padding: 100px 0;
}
.process .section-header h2 { color: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}
.step-icon {
  color: rgba(255,255,255,0.8);
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.process-connector {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}

@media (max-width: 900px) {
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 60px; height: 1px; margin: 0; }
  .process-step { padding: 24px 16px; max-width: 380px; }
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-proof {
  background: var(--linen);
  padding: 100px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  padding: 40px;
}
.stat { text-align: center; flex: 1; }
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--stone);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-property {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--sage);
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .stats-row { flex-direction: column; gap: 32px; padding: 32px 24px; }
  .stat-divider { width: 60px; height: 1px; }
}

/* ============================================================
   BOOKING / INQUIRY FORM
   ============================================================ */
.booking {
  background: var(--white);
  padding: 100px 0;
}
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

/* Progress dots */
.form-progress {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--stone);
  background: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.progress-step.active .progress-dot {
  background: var(--green);
  border-color: var(--green);
}
.progress-step.completed .progress-dot {
  background: var(--sage);
  border-color: var(--sage);
}
.progress-step span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--transition);
}
.progress-step.active span { color: var(--green); }
.progress-step.completed span { color: var(--sage); }
.progress-line {
  flex: 1;
  height: 1px;
  background: var(--stone);
  margin: 0 8px;
  margin-bottom: 24px;
}

/* Form card */
.inquiry-form {
  background: var(--linen);
  border: 1px solid var(--stone);
  border-top: 4px solid var(--green);
  border-radius: var(--radius-md);
  padding: 48px 48px 40px;
  margin-bottom: 24px;
}
.form-step h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

/* Form fields */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.optional {
  font-weight: 400;
  color: var(--sage);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0a49c; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44, 74, 48, 0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237F917E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.checkbox-item:hover { border-color: var(--sage); }
.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--stone);
  border-radius: 4px;
  background: var(--white);
  margin-top: 2px;
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-item input:checked ~ .checkbox-box {
  background: var(--green);
  border-color: var(--green);
}
.checkbox-item input:checked ~ .checkbox-box::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}
.checkbox-item input:checked ~ div strong { color: var(--green); }
.checkbox-item strong { display: block; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 2px; }
.checkbox-item p { font-size: 0.82rem; color: var(--sage); margin: 0; }

/* Form nav */
.form-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 28px;
}
.form-reassurance {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--sage);
  margin-top: 16px;
}

/* Success */
.success-message {
  text-align: center;
  padding: 40px 0;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(44, 74, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--green);
}
.success-message h3 { font-size: 1.8rem; margin-bottom: 12px; }
.success-message p { color: #6b5e57; font-size: 1rem; }

/* GHL widget placeholder */
.ghl-booking {
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ghl-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 20px;
  border-bottom: 1px solid var(--stone);
}
.ghl-placeholder {
  background: var(--linen);
  padding: 60px 40px;
  text-align: center;
  color: var(--sage);
}
.ghl-placeholder p { font-size: 0.95rem; margin-top: 12px; font-weight: 500; }
.ghl-hint { font-size: 0.78rem; color: var(--stone); margin-top: 6px; }

@media (max-width: 600px) {
  .inquiry-form { padding: 32px 24px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
}
.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}
