:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --text: #2f2a26;
  --muted: #6e665f;
  --border: #dfd7cf;
  --dark: #221d1a;
  --dark-soft: #2b2521;
  --light-text: #e7e0d8;
  --max-width: 1180px;
  --radius-xl: 28px;
  --shadow-sm: 0 10px 30px rgba(28, 22, 18, 0.06);
  --shadow-lg: 0 20px 50px rgba(28, 22, 18, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 215, 207, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand-title {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
}
.brand-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.desktop-nav {
  display: none;
  gap: 32px;
  font-size: 0.95rem;
}
.desktop-nav a:hover,
.mobile-menu a:hover { color: #000; }

.menu-toggle {
  border: 1px solid #cfc5bc;
  background: transparent;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  cursor: pointer;
}

.mobile-menu {
  border-top: 1px solid rgba(223, 215, 207, 0.8);
  background: rgba(247, 244, 238, 0.98);
}
.mobile-menu.hidden { display: none; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 10px 0 14px;
}
.mobile-menu-inner a {
  padding: 14px 8px;
  border-radius: 14px;
}

.section {
  padding: 48px 0;
}
.section-muted {
  background: rgba(255,255,255,0.55);
}
.section-bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 36px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.75rem;
  color: var(--muted);
}

.eyebrow-logo {
  height: 40px;
  width: auto;
  display: block;
}

.eyebrow.light { color: #b9aea2; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.hero-text,
.body-text {
  color: var(--muted);
  max-width: 700px;
  font-size: 1rem;
}
.max-text { max-width: 760px; }
.light-text { color: var(--light-text); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}
.button-primary {
  background: var(--dark);
  color: #f8f4ef;
}
.button-secondary {
  border: 1px solid #cfc5bc;
}

.audience-grid,
.services-grid,
.works-grid {
  display: grid;
  gap: 14px;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.audience-card,
.service-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.hero-images {
  display: grid;
  gap: 14px;
}
.image-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.image-card img {
  height: 180px;
  object-fit: cover;
}
.image-large img {
  height: 260px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.draft-badge {
  align-self: flex-start;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.work-card img {
  height: 280px;
  object-fit: cover;
}
.work-content { padding: 22px; }
.work-content h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.work-artist {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #847b72;
  margin: 0 0 8px;
}
.work-meta {
  margin: 4px 0;
  color: var(--muted);
}

.embed-placeholder {
  margin-top: 36px;
  border: 1px dashed #cdbfaf;
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.placeholder-box {
  margin-top: 18px;
  background: #ede6dc;
  border-radius: 18px;
  padding: 36px 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: #aa9e92;
}

.contact-section {
  background: var(--dark);
  color: #f8f4ef;
  border-top: 1px solid #3c332d;
}
.contact-card {
  background: var(--dark-soft);
  border: 1px solid #4a3f38;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.contact-card > div + div { margin-top: 24px; }
.contact-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #b9aea2;
}
.contact-link,
.contact-value {
  font-size: 1.1rem;
  word-break: break-word;
}

@media (min-width: 768px) {
  .container { width: min(calc(100% - 48px), var(--max-width)); }
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
  .section { padding: 68px 0; }
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
  .hero-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .image-large {
    grid-column: 1 / -1;
  }
  .image-card img { height: 220px; }
  .image-large img { height: 360px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .work-card img { height: 320px; }
}

@media (min-width: 1024px) {
  .section { padding: 92px 0; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .about-grid { grid-template-columns: 1.1fr 1fr; }
  .works-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .image-large img { height: 420px; }
  .image-card img { height: 224px; }
}
.view-more-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.airtable-frame {
  width: 100%;
  min-height: 800px;
  border: 1px solid #d8d2c8;
  border-radius: 18px;
  background: #fff;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: #d8c7a3;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.inline-link:hover {
  opacity: 0.75;
}