:root {
  /* Palette 2: Atlantic Cliffs */
  --deep-ocean: #0F2D3D;
  --atlantic-blue: #1F4E6E;
  --seafoam: #7FA3AD;
  --slate: #5C6670;
  --fog-gray: #DCE3E8;
  --sand-stone: #EDE8DF;
  --coral: #E0694A;
  --cool-mint: #B7C9C8;

  /* Legacy palette aliases (mapped to Atlantic Cliffs) */
  --avocado: var(--deep-ocean);
  --avocado-dark: var(--atlantic-blue);
  --sage: var(--seafoam);
  --sage-light: var(--cool-mint);
  --cream: var(--sand-stone);
  --cream-deep: var(--fog-gray);
  --stone: var(--deep-ocean);
  --stone-soft: var(--slate);
  --stone-muted: var(--seafoam);
  --white: #FFFFFF;

  /* Post rental CTA */
  --cta-accent: var(--deep-ocean);
  --cta-accent-dark: var(--atlantic-blue);
  --cta-accent-glow: rgba(15, 45, 61, 0.28);

  /* Semantic aliases */
  --green: var(--deep-ocean);
  --green-dark: var(--atlantic-blue);
  --green-wash: color-mix(in srgb, var(--cool-mint) 45%, var(--sand-stone));
  --accent: var(--coral);
  --accent-dark: #C55A3D;
  --grey-mist: var(--fog-gray);
  --grey-muted: var(--slate);
  --ink: var(--deep-ocean);
  --ink-soft: var(--slate);

  --bg: var(--sand-stone);
  --bg-alt: var(--fog-gray);
  --text: var(--deep-ocean);
  --text-muted: var(--slate);
  --border: rgba(15, 45, 61, 0.1);
  --shadow-sm: 0 1px 2px rgba(15, 45, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 45, 61, 0.1);
  --shadow-lg: 0 16px 48px rgba(15, 45, 61, 0.12);

  /* Type */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;

  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-lg: 1.0625rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.625rem;
  --text-3xl: clamp(1.75rem, 4vw, 2.25rem);

  /* Space */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --nav-h: 72px;
  --container: 1120px;
}
