/* ---------- Brand tokens ---------- */
:root {
  --charcoal: #333333;
  --sage: #a09f8d;
  --bronze: #88754b;
  --ivory: #fffbf2;
  --sand: #f4efe4;

  /* Text-safe tints: the brand bronze fails WCAG AA (4.5:1) as small text on
     ivory/sand (4.33:1), and fails badly on charcoal (2.82:1). Sage fails
     everywhere as text (2.59:1 on ivory). These are for text/labels only —
     backgrounds, buttons, and icon strokes keep using --bronze / --sage. */
  --bronze-text: #6f603e;
  --gold-on-dark: #c2a06c;
  /* Darker bronze for solid-fill buttons: ivory text on raw --bronze only
     reaches 4.33:1 (fails AA 4.5:1 for 13px/600 text, which doesn't qualify
     as "large text" under WCAG). This shade holds 5.1:1. */
  --bronze-btn: #7d6944;

  --container-w: 1280px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: none; cursor: pointer; padding: 0; color: inherit; }
svg { display: block; }

.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;
}

/* Anchor targets sit under the fixed 80px header without this */
[id] { scroll-margin-top: 96px; }

/* Default focus ring: charcoal reads well on ivory/sand (12.23:1). Solid-fill
   dark/bronze buttons and charcoal sections need a light ring instead — see
   overrides below — since a charcoal ring on a charcoal button is invisible. */
:focus-visible {
  outline: 2px solid var(--charcoal);
  outline-offset: 3px;
}
.btn-primary:focus-visible,
.btn-bronze:focus-visible,
.site-footer :focus-visible,
.contact-cta :focus-visible,
.brand-image :focus-visible {
  outline-color: var(--ivory);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: top .2s var(--ease);
}
.skip-link:focus {
  top: 16px;
  outline-color: var(--ivory);
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--bronze-text);
}

.section-head { max-width: 640px; }
.section-head h2 {
  margin-top: 14px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

@media (min-width: 1024px) {
  .section-head h2 { font-size: 36px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 46px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-primary { background: var(--charcoal); color: var(--ivory); }
.btn-primary:hover { background: var(--bronze-btn); }
.btn-secondary { border: 1px solid rgba(51,51,51,.25); color: var(--charcoal); }
.btn-secondary:hover { border-color: var(--charcoal); }
.btn-outline-light { border: 1px solid rgba(255,251,242,.35); color: var(--ivory); }
.btn-outline-light:hover { background: var(--ivory); color: var(--charcoal); }
.btn-bronze { background: var(--bronze-btn); color: var(--ivory); }
.btn-bronze:hover { background: var(--ivory); color: var(--charcoal); }

.btn-group { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.btn-group-center { justify-content: center; }
.icon-arrow { width: 16px; height: 16px; }

.section-more { margin-top: 40px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(51,51,51,.3);
  padding-bottom: 2px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.text-link:hover { color: var(--bronze-text); border-color: var(--bronze-text); }
.text-link .icon-arrow { width: 14px; height: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: var(--ivory);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,251,242,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 0 rgba(51,51,51,.12);
}

.header-row {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 32px; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 32px; }
.nav-desktop a {
  padding: 12px 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(51,51,51,.78);
  transition: color .3s var(--ease);
}
.nav-desktop a:hover { color: var(--charcoal); }
.nav-desktop a[aria-current="page"],
.mobile-nav-link[aria-current="page"] { color: var(--charcoal); }

.nav-contact-btn { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--charcoal);
}
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-drawer {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--ivory);
  border-top: 1px solid rgba(51,51,51,.1);
}
.mobile-drawer.is-open { display: block; }

.mobile-nav { display: flex; flex-direction: column; padding: 24px 16px; gap: 4px; }
.mobile-nav-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(51,51,51,.08);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(51,51,51,.8);
}
.mobile-nav-cta { margin-top: 24px; width: 100%; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-contact-btn { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-drawer { display: none !important; }
}

/* ---------- Brand image (photo + logo overlay) ---------- */
.brand-image {
  margin: 0;
  position: relative;
  min-height: 280px;
  background: var(--charcoal);
  overflow: hidden;
}
.brand-image > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: .92;
  transition: transform .8s var(--ease);
}
.brand-card:hover .brand-image > img:first-child {
  transform: scale(1.045);
}
.brand-image-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(72%, 320px);
  height: auto;
}

/* ---------- Facts row (Brands / Souss & Stone) ---------- */
.facts-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.facts-row li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(51,51,51,.78);
}
.facts-row li strong { font-weight: 600; color: var(--charcoal); }

/* ---------- Hero ---------- */
.hero { padding: 112px 0 56px; overflow: hidden; }
.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 4px; }
.hero-copy h1 {
  margin-top: 20px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.hero-copy .lede {
  margin-top: 24px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(51,51,51,.78);
}
.hero-visual { max-width: 420px; margin: 0 auto; }

.hero-image {
  margin: 0;
  position: relative;
  padding: 14px;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(51,51,51,.12);
  pointer-events: none;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (min-width: 640px) {
  .hero { padding: 128px 0 72px; }
  .hero-copy h1 { font-size: 42px; }
}

@media (min-width: 1024px) {
  .hero { padding: 160px 0 104px; }
  .hero-copy h1 { font-size: 56px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 80px; }
  .hero-visual { max-width: none; margin: 0; }
}

/* ---------- Company Role ---------- */
.company-role { padding: 56px 0; border-top: 1px solid rgba(51,51,51,.08); }
.role-grid {
  margin-top: 56px;
  display: grid;
  gap: 1px;
  background: rgba(51,51,51,.1);
  overflow: hidden;
}
.role-card {
  background: var(--ivory);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.role-icon-chip {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(136,117,75,.25);
  background: var(--sand);
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.role-card:hover .role-icon-chip {
  border-color: var(--bronze);
  background: var(--ivory);
}
.role-icon { width: 24px; height: 24px; color: var(--bronze); }
.role-card h3 { font-size: 19px; font-weight: 600; }
.role-card p { font-size: 16px; line-height: 1.6; color: rgba(51,51,51,.78); }

@media (min-width: 640px) {
  .role-grid { grid-template-columns: repeat(3, 1fr); }
  .role-card { padding: 32px; }
}

@media (min-width: 1024px) {
  .company-role { padding: 96px 0; }
}

/* ---------- Featured Brand ---------- */
.featured-brand { padding: 56px 0; border-top: 1px solid rgba(51,51,51,.08); }
.brand-card {
  margin-top: 56px;
  display: grid;
  border: 1px solid rgba(51,51,51,.1);
  overflow: hidden;
}
.brand-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 28px;
}
.brand-card-body h3 { font-size: 26px; font-weight: 700; }
.brand-card-body p { max-width: 440px; font-size: 16px; line-height: 1.6; color: rgba(51,51,51,.78); }
.brand-card-body .btn { align-self: flex-start; }

@media (min-width: 1024px) {
  .featured-brand { padding: 96px 0; }
  .brand-card { grid-template-columns: 1fr 1fr; }
  .brand-card-body { padding: 44px; }
}

/* ---------- Operating Principles ---------- */
.operating-principles { padding: 56px 0; border-top: 1px solid rgba(51,51,51,.08); background: var(--sand); }
.principles-list {
  margin-top: 56px;
  border-top: 1px solid rgba(51,51,51,.1);
}
.principle-row {
  padding: 24px 0;
  border-bottom: 1px solid rgba(51,51,51,.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.principle-num { font-size: 14px; font-weight: 600; color: var(--bronze-text); }
.principle-row h3 { font-size: 19px; font-weight: 600; }
.principle-row p { max-width: 640px; font-size: 16px; line-height: 1.6; color: rgba(51,51,51,.78); }

@media (min-width: 640px) {
  .principle-row { flex-direction: row; align-items: center; gap: 40px; padding: 28px 0; }
  .principle-num { width: 48px; flex-shrink: 0; }
  .principle-row h3 { width: 224px; flex-shrink: 0; }
}

@media (min-width: 1024px) {
  .operating-principles { padding: 96px 0; }
}

/* ---------- Contact CTA ---------- */
.contact-cta { padding: 64px 0; background: var(--charcoal); }
.contact-cta-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.contact-cta-inner .eyebrow { color: var(--gold-on-dark); }
.contact-cta-inner h2 {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ivory);
}
.contact-cta-inner p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,251,242,.72);
}

@media (min-width: 1024px) {
  .contact-cta { padding: 104px 0; }
  .contact-cta-inner h2 { font-size: 38px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--ivory); }
.footer-grid {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  gap: 40px;
}
.footer-logo { height: 32px; width: auto; }
.footer-tagline { margin-top: 16px; font-size: 15px; line-height: 1.55; font-style: italic; color: rgba(255,251,242,.7); }
.footer-statement { margin-top: 16px; max-width: 320px; font-size: 15px; line-height: 1.6; color: rgba(255,251,242,.7); }

.footer-col h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,251,242,.85);
}
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  color: rgba(255,251,242,.7);
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--ivory); }
.footer-contact-list li { min-height: 32px; display: flex; align-items: center; font-size: 15px; line-height: 1.6; color: rgba(255,251,242,.7); }
.footer-brand-link { margin-top: 4px; }
.footer-brand-link a { color: var(--gold-on-dark); min-height: 44px; display: inline-flex; align-items: center; }
.footer-brand-link a:hover { color: var(--ivory); }

.footer-bottom { border-top: 1px solid rgba(255,251,242,.1); }
.footer-bottom-inner {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,251,242,.6);
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- Interior page header ---------- */
.page-head {
  padding: 96px 0 40px;
  border-bottom: 1px solid rgba(51,51,51,.08);
}
.page-head h1 {
  margin-top: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 720px;
}
.page-head .lede {
  margin-top: 20px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(51,51,51,.78);
}
.page-head--center { text-align: center; }
.page-head--center h1, .page-head--center .lede { margin-left: auto; margin-right: auto; }

@media (min-width: 640px) {
  .page-head { padding: 112px 0 56px; }
  .page-head h1 { font-size: 42px; }
}

@media (min-width: 1024px) {
  .page-head { padding: 152px 0 80px; }
  .page-head h1 { font-size: 52px; }
}

/* ---------- Content sections (About, legal pages) ---------- */
.content-section { padding: 56px 0; border-top: 1px solid rgba(51,51,51,.08); }
.content-section--sand { background: var(--sand); }

@media (min-width: 640px) {
  .content-section { padding: 72px 0; }
}
@media (min-width: 1024px) {
  .content-section { padding: 104px 0; }
}

.prose { max-width: 70ch; }
.prose p { font-size: 17px; line-height: 1.7; color: rgba(51,51,51,.78); margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 17px; line-height: 1.7; color: rgba(51,51,51,.78); margin-bottom: 10px; }
.prose h2 { font-size: 23px; font-weight: 700; margin: 40px 0 16px; color: var(--charcoal); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 600; margin: 26px 0 10px; color: var(--charcoal); }
.prose strong { font-weight: 600; }
.prose a { color: var(--bronze-text); border-bottom: 1px solid rgba(111,96,62,.4); }
.prose a:hover { border-color: var(--bronze-text); }

.legal-updated { font-size: 15px; color: rgba(51,51,51,.72); margin-top: 12px; }

/* ---------- Future brand / portfolio-approach block (Brands page) ---------- */
.portfolio-approach {
  margin-top: 24px;
  border-left: 3px solid var(--bronze);
  padding: 8px 0 8px 24px;
}
.portfolio-approach p { font-size: 17px; line-height: 1.7; color: rgba(51,51,51,.78); }

.brand-image--tall { min-height: 420px; }

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  gap: 56px;
  margin-top: 56px;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1.15fr .85fr; gap: 80px; }
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr); }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--charcoal);
}
.field .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(51,51,51,.72);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 16px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1.5px solid rgba(51,51,51,.2);
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color .3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--bronze); outline: none; }
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%2388754B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field-error {
  font-size: 13px;
  color: #8a341f;
  display: none;
}
.field-error.is-visible { display: block; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #b3432c; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-error-summary {
  display: none;
  border: 1px solid rgba(179,67,44,.4);
  background: rgba(179,67,44,.06);
  color: #8a341f;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
}
.form-error-summary.is-visible { display: block; }
.form-error-summary p { font-weight: 600; margin-bottom: 8px; color: #8a341f; }
.form-error-summary ul { padding-left: 18px; list-style: disc; }
.form-error-summary a { color: #8a341f; text-decoration: underline; }

.form-status {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.6;
  padding: 16px 18px;
  border: 1px solid rgba(51,51,51,.15);
  background: var(--sand);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error { border-color: rgba(179,67,44,.4); background: rgba(179,67,44,.06); color: #8a341f; }
.form-status h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }

.form-privacy-notice { font-size: 13px; line-height: 1.6; color: rgba(51,51,51,.72); }
.form-privacy-notice a { color: var(--bronze-text); border-bottom: 1px solid rgba(111,96,62,.4); }

.contact-info-card {
  height: fit-content;
  background: var(--sand);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--bronze-text);
  margin-bottom: 8px;
}
.contact-info-item p { font-size: 16px; line-height: 1.6; color: rgba(51,51,51,.78); }
.contact-info-item a { color: var(--bronze-text); border-bottom: 1px solid rgba(111,96,62,.4); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 96px;
}
.error-page .error-code {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--bronze-text);
  text-transform: uppercase;
}
.error-page h1 { margin-top: 16px; font-size: 32px; font-weight: 700; }
.error-page p { margin-top: 16px; max-width: 480px; color: rgba(51,51,51,.78); font-size: 17px; line-height: 1.6; }
.error-page .btn-group { margin-top: 32px; justify-content: center; }

@media (min-width: 640px) {
  .error-page h1 { font-size: 44px; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .06s; }
[data-reveal-delay="2"] { transition-delay: .12s; }
[data-reveal-delay="3"] { transition-delay: .18s; }
[data-reveal-delay="4"] { transition-delay: .24s; }

/* Hero visual gets a slightly grander, slower entrance than the standard reveal */
[data-reveal-slow] {
  opacity: 0;
  transform: translateY(16px) scale(.99);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  transition-delay: .08s;
}
[data-reveal-slow].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], [data-reveal-slow] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
