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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.a11y-large-text {
  font-size: 1.075rem;
}

body.a11y-high-contrast {
  --bg: #fff;
  --surface: #fff;
  --surface-strong: #fff;
  --text: #111;
  --muted: #333;
  --border: rgba(0, 0, 0, 0.3);
  --shadow: none;
}

body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.75rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.eyebrow,
.micro-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title,
h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lede,
.section-copy,
.muted {
  color: var(--muted);
}

.button-row,
.button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button-stack {
  flex-direction: column;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: var(--shadow);
}

.button--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.nav__links a[aria-current="page"] {
  color: var(--text);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.site-footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-footer__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.surface,
.card,
.panel,
.embed-card,
.contact-card,
.stats-card,
.quote-card,
.metric-card,
.service-card,
.project-card,
.list-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 1rem;
}

.embed-shell {
  display: grid;
  gap: 0.9rem;
}

.embed-preview {
  position: relative;
  min-height: 280px;
  padding: 1.4rem;
  border-radius: calc(var(--radius) - 4px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.embed-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.1), rgba(5, 10, 18, 0.75));
}

.embed-preview__content {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  color: #fff;
  display: grid;
  gap: 0.8rem;
}

.embed-frame iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 90%, white);
  color: var(--text);
  padding: 0.95rem 1rem;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.utility-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.65rem;
  z-index: 80;
}

.utility-button {
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  color: var(--text);
  box-shadow: var(--shadow);
}

.utility-panel,
.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 4.4rem;
  width: min(360px, calc(100vw - 2rem));
  padding: 1rem;
  z-index: 90;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.utility-panel[hidden],
.cookie-banner[hidden] {
  display: none;
}

.utility-panel__header,
.cookie-banner__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.utility-panel__actions {
  display: grid;
  gap: 0.65rem;
}

.utility-action {
  width: 100%;
  min-height: 44px;
  padding: 0 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: transparent;
  text-align: left;
}

.chat-thread {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.chat-message {
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 90%, white);
}

.chat-message--user {
  background: color-mix(in srgb, var(--accent) 15%, white);
}

.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.chat-prompt,
.cookie-choice {
  min-height: 40px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
}

.cookie-banner {
  bottom: 1rem;
  left: 1rem;
  right: auto;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .grid-4,
  .grid-3,
  .grid-2,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .nav__toggle {
    display: inline-block;
  }

  .nav__links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav__links.nav__links--open {
    display: flex;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.5rem 0;
  }

  .utility-dock {
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    justify-content: space-between;
  }

  .utility-button {
    flex: 1 1 0;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #f7f2ee;
  --surface: rgba(255, 252, 249, 0.84);
  --surface-strong: #fffaf7;
  --text: #253543;
  --muted: #586b78;
  --accent: #bf7b55;
  --accent-contrast: #fff7f2;
  --border: rgba(37, 53, 67, 0.12);
  --shadow: 0 18px 45px rgba(73, 62, 55, 0.12);
  --radius: 28px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
}

.hero-editorial {
  padding: 4rem 0 2rem;
}

.hero-editorial__grid,
.curation,
.consult-grid,
.about-letter,
.service-essay,
.portfolio-feature,
.contact-salon {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.hero-editorial__copy,
.hero-editorial__visual,
.feature-spread,
.issue-note,
.contact-card,
.letter-card,
.schedule-card,
.menu-card,
.journal-card,
.project-essay,
.service-essay__panel {
  padding: 1.5rem;
}

.hero-editorial__copy {
  padding: 2rem 0;
}

.hero-editorial__title {
  font-size: clamp(3.4rem, 8vw, 6.3rem);
  margin: 0 0 1rem;
}

.hero-editorial__lede {
  max-width: 34rem;
  font-size: 1.1rem;
  margin-bottom: 1.35rem;
}

.hero-editorial__visual {
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(21, 28, 37, 0.08), rgba(21, 28, 37, 0.18)),
    url('images/hero-office-modern.jpg') center/cover;
  position: relative;
}

.hero-editorial__floating-note {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: min(280px, 88%);
  background: rgba(255, 250, 247, 0.84);
  border: 1px solid rgba(37, 53, 67, 0.1);
  border-radius: 24px;
  padding: 1rem;
  backdrop-filter: blur(12px);
}

.issue-grid,
.journal-grid,
.principles-grid,
.menu-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.issue-note {
  min-height: 220px;
}

.issue-note strong,
.metric-card strong,
.schedule-card strong {
  font-size: 1.9rem;
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
}

.curation__image,
.portrait-frame img,
.project-essay img,
.service-essay__media img,
.journal-card img {
  border-radius: calc(var(--radius) - 8px);
  width: 100%;
  object-fit: cover;
}

.curation__image {
  min-height: 540px;
  background: url('images/about-office-interior.jpg') center/cover;
}

.pull-quote {
  padding: 2rem;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.journal-card img {
  height: 220px;
  margin-bottom: 1rem;
}

.timeline-editorial {
  display: grid;
  gap: 1rem;
}

.timeline-editorial__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.service-essay__media {
  display: grid;
  gap: 1rem;
}

.service-essay__media img {
  height: 240px;
}

.portfolio-feature__spread {
  min-height: 520px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(13, 18, 27, 0.12), rgba(13, 18, 27, 0.22)),
    url('images/results-dashboard.jpg') center/cover;
}

.contact-salon__map {
  min-height: 420px;
}

@media (max-width: 960px) {
  .hero-editorial__grid,
  .curation,
  .consult-grid,
  .about-letter,
  .service-essay,
  .portfolio-feature,
  .contact-salon,
  .issue-grid,
  .journal-grid,
  .principles-grid,
  .menu-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero-editorial__visual {
    min-height: 420px;
  }
}

