/*
Theme Name: Agency Colette
Theme URI: https://agencycolette.com
Author: Agency Colette
Description: A minimal, neutral-toned "coming soon" theme for Agency Colette. Serif, lowercase, modern-feminine aesthetic.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: agency-colette
*/

/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Variables — neutral, modern-feminine palette
   ========================================================================== */

:root {
  --color-bg: #e9e9de;          /* off-white */
  --color-bg-soft: #e2e2d4;     /* slightly deeper off-white for gradient texture */

  --color-brand: #4c70c9;       /* brand blue — large text (24px+) & decorative use only, 3.84:1 on bg */
  --color-brand-text: #3c59a0;  /* deepened brand blue — for small/body text, 5.49:1 on bg (AA) */
  --color-text: #26292f;        /* charcoal — optional high-contrast text, 11.92:1 on bg */

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
}

/*
  WCAG 2.1 AA contrast notes (verified against --color-bg #e9e9de):
  --color-brand       (#4c70c9) -> 3.84:1 -- passes AA for large text (24px+ / 18.66px+ bold) and UI components/graphics (3:1 min). Do NOT use for small body text.
  --color-brand-text  (#3c59a0) -> 5.49:1 -- passes AA for normal/small text (4.5:1 min).
  --color-text        (#26292f) -> 11.92:1 -- passes AAA, available if higher contrast is wanted.
*/

/* ==========================================================================
   Base
   ========================================================================== */

body {
  font-family: var(--font-serif);
  background-color: var(--color-bg);
  background-image: radial-gradient(circle at 50% 20%, var(--color-bg-soft) 0%, var(--color-bg) 70%);
  color: var(--color-text);
  text-transform: lowercase;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

/* ==========================================================================
   Coming Soon Page
   ========================================================================== */

.cs-wrapper {
  width: 100%;
  max-width: 640px;
  padding: 48px 32px;
  text-align: center;
}

.cs-eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--color-brand-text);
  margin: 0 0 28px;
  font-weight: 600;
}

.cs-logo {
  font-size: clamp(40px, 9vw, 72px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--color-brand);
}

.cs-divider {
  width: 64px;
  height: 1px;
  background-color: var(--color-brand);
  opacity: 0.55;
  margin: 32px auto;
  border: none;
}

.cs-message {
  font-size: clamp(17px, 2.4vw, 21px);
  letter-spacing: 0.03em;
  color: var(--color-brand-text);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}

.cs-footer {
  margin-top: 56px;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--color-brand-text);
}

@media (max-width: 480px) {
  .cs-wrapper {
    padding: 32px 24px;
  }

  .cs-eyebrow {
    letter-spacing: 0.24em;
  }
}
