/* Knot Bakehouse — website mockup CSS */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Dancing+Script:wght@500;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Bebas+Neue&family=DM+Serif+Display&display=swap');

:root {
  --knot-blue: #9CB3D1;
  --knot-blue-deep: #7F9BBE;
  --knot-blue-soft: #C3D2E5;
  --cream: #FBF8F2;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #5E6B7C;
  --cocoa: #6B4A36;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--knot-blue);
  overflow-x: hidden;
}

/* ===== Layout shell ===== */

.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .shell { padding: 0 20px; }
}

/* ===== Header ===== */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: var(--knot-blue);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .logo img {
  height: 42px;
  display: block;
}

.site-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  opacity: 0.75;
}

.site-nav a.btn-order {
  background: var(--white);
  color: var(--text);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.site-nav a.btn-order:hover {
  background: var(--cream);
  opacity: 1;
}

@media (max-width: 768px) {
  .site-header { padding: 18px 20px; }
  .site-nav { gap: 18px; }
  .site-header .logo img { height: 30px; }
}

/* ===== Mobile burger menu ===== */

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
  position: relative;
  z-index: 220;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 7px auto;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

body.menu-open .burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px) {
  .burger { display: block; }
  body.menu-open { overflow: hidden; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--knot-blue);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 90px 30px 40px;
  }
  body.menu-open .site-nav { transform: translateX(0); }
  .site-nav a:not(.btn-order) {
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 6px 0;
  }
  .site-nav a.btn-order {
    margin-top: 14px;
    font-size: 16px;
    padding: 14px 36px;
  }
}

/* ===== Hero ===== */

.hero {
  padding: 60px 48px 100px;
  background: var(--knot-blue);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFD96B;
  box-shadow: 0 0 0 3px rgba(255, 217, 107, 0.28);
  animation: badge-pulse 1.6s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 217, 107, 0.28); }
  50% { box-shadow: 0 0 0 6px rgba(255, 217, 107, 0.14); }
}

.hero-text h1 {
  font-size: 78px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(20, 30, 60, 0.12);
}

.hero-text h1 .accent {
  display: block;
  font-style: italic;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  text-transform: none;
  font-size: 0.55em;
  color: #FFEBC2;
  letter-spacing: 0;
  margin-top: 6px;
}

.hero-text p {
  font-size: 17px;
  color: var(--white);
  opacity: 1;
  max-width: 460px;
  margin-bottom: 30px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 28px -10px rgba(20, 30, 60, 0.55), 0 2px 6px -2px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transition: transform 0.18s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(20, 30, 60, 0.65), 0 2px 6px -2px rgba(0,0,0,0.18);
}

.btn-primary:hover::after {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.15s, transform 0.15s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.hero-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(20,30,60,0.35);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-blob {
  position: absolute;
  width: 180px;
  height: 160px;
  opacity: 0.4;
}

.hero-blob.b1 { top: -40px; left: -40px; }
.hero-blob.b2 { bottom: -30px; right: 30%; transform: rotate(40deg); }

@media (max-width: 900px) {
  .hero { padding: 36px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 44px; }
  .hero-text p { font-size: 16px; }
}

@media (max-width: 768px) {
  /* Order Online lives in the sticky header on mobile — hide it from hero */
  .hero-ctas .btn-primary { display: none; }
  /* Promote Find a Location to the primary white pill style */
  .hero-ctas .btn-ghost {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--white);
  }
  .hero-ctas .btn-ghost:hover {
    background: var(--cream);
    transform: translateY(-1px);
  }
}

/* ===== Section panel ===== */

.section {
  padding: 100px 0;
  background: var(--knot-blue);
}

.section.cream {
  background: var(--cream);
}

.section.white {
  background: var(--white);
}

.panel {
  background: var(--white);
  border-radius: 40px;
  padding: 64px;
  margin: 0 48px;
  max-width: 1344px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--knot-blue-deep);
  margin-bottom: 16px;
}

.section-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.section-title .lower {
  text-transform: none;
  font-family: 'Dancing Script', cursive;
  font-style: italic;
  font-weight: 700;
  color: var(--knot-blue-deep);
  font-size: 0.55em;
  display: inline-block;
  margin-left: 12px;
  letter-spacing: 0;
}

.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .panel { padding: 36px 24px; border-radius: 28px; margin: 0 16px; }
  .section-title { font-size: 36px; }
  .section-lead { font-size: 16px; margin-bottom: 36px; }
}

/* ===== Philosophy strip ===== */

.philosophy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Two-column layout for Art of Knot section */
.panel.with-image {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}

.panel.with-image .text-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.with-image .image-col {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  max-height: 560px;
  background: var(--knot-blue-soft);
  align-self: center;
}

.panel.with-image .image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel.with-image .philosophy {
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: auto;
}

@media (max-width: 900px) {
  .panel.with-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .panel.with-image .image-col {
    min-height: 280px;
    order: -1;
  }
}

.philosophy-card {
  text-align: left;
}

.philosophy-card .num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--knot-blue);
  margin-bottom: 12px;
  line-height: 1;
}

.philosophy-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.philosophy-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .philosophy { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ===== Product/Menu cards ===== */

.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.menu-tab {
  background: transparent;
  border: 1.5px solid var(--knot-blue);
  color: var(--knot-blue-deep);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.menu-tab.active {
  background: var(--knot-blue);
  color: var(--white);
  border-color: var(--knot-blue);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  aspect-ratio: 4/3;
  background: var(--knot-blue-soft);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 20px 24px 24px;
}

.product-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-body .desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  min-height: 42px;
}

.product-body .price {
  font-weight: 700;
  font-size: 16px;
  color: var(--knot-blue-deep);
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ===== Locations ===== */

.locations-hero {
  background: var(--knot-blue);
  padding: 60px 0 40px;
  text-align: center;
  color: var(--white);
}

.locations-hero h1 {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}

.locations-hero p {
  font-size: 18px;
  margin-top: 16px;
  opacity: 0.9;
}

.locations-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}

.locations-stats .stat {
  text-align: center;
}

.locations-stats .num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.locations-stats .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
  margin-top: 6px;
}

.region-block {
  margin-bottom: 56px;
}

.region-block h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.location-card .img {
  aspect-ratio: 5/3;
  background: var(--knot-blue-soft);
  overflow: hidden;
}

.location-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-card .body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-card .area {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--knot-blue-deep);
  margin-bottom: 12px;
  font-weight: 600;
}

.location-card .hours {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.location-card .links {
  display: flex;
  gap: 12px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
}

.location-card .links a {
  color: var(--knot-blue-deep);
  text-decoration: none;
}

.tag-soon {
  display: inline-block;
  background: var(--knot-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .locations-hero h1 { font-size: 48px; }
  .locations-stats { gap: 24px; }
  .locations-stats .num { font-size: 32px; }
}

@media (max-width: 540px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ===== Events / Collabs ===== */

.events-hero {
  padding: 80px 0 60px;
  background: var(--knot-blue);
  color: var(--white);
}

.events-hero h1 {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
}

.events-hero .accent {
  font-family: 'Dancing Script', cursive;
  font-style: italic;
  font-weight: 700;
  font-size: 0.45em;
  text-transform: none;
  display: block;
  letter-spacing: 0;
  color: var(--cream);
}

.events-hero p {
  text-align: center;
  font-size: 18px;
  max-width: 640px;
  margin: 16px auto 0;
  opacity: 0.92;
}

.collab-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.collab-feature.reverse {
  direction: rtl;
}

.collab-feature.reverse > * {
  direction: ltr;
}

.collab-feature .image {
  aspect-ratio: 4/3;
  border-radius: 28px;
  overflow: hidden;
  background: var(--knot-blue-soft);
}

.collab-feature .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collab-feature .tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8B7242;
  margin-bottom: 18px;
}

.collab-feature .tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #8B7242;
}

.collab-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 22px;
  text-transform: none;
  color: #0E141C;
}

.collab-feature h3 .x {
  font-style: italic;
  font-weight: 400;
  color: #C8A05A;
}

.collab-feature p {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
}

.collab-feature p strong {
  font-weight: 600;
  color: #0E141C;
}

.collab-feature .image {
  border-radius: 4px;
}

.collab-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 40px;
  align-items: center;
}

.collab-logos .logo {
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--knot-blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 24px 12px;
  background: var(--cream);
  border-radius: 16px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

/* Branded treatments — each logo styled to feel like the real one */
.collab-logos .logo.b-rolls {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #1a1a1a;
}
.collab-logos .logo.b-newbalance {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: #cf0a2c;
  text-transform: uppercase;
  font-weight: 400;
}
.collab-logos .logo.b-vaseline {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 700;
  color: #0033a0;
  text-transform: none;
  letter-spacing: 0;
}
.collab-logos .logo.b-louisvuitton {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: #4f3014;
  text-transform: uppercase;
}
.collab-logos .logo.b-goat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.06em;
  color: #111;
  font-weight: 400;
}
.collab-logos .logo.b-kosas {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: 0;
  color: #a36b58;
  text-transform: lowercase;
  font-weight: 400;
}
.collab-logos .logo.b-grandiose {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #2b3d5c;
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.collab-logos .logo.b-flat12 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #111;
}
.collab-logos .logo.b-talia {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  color: #3a2a1f;
}
.collab-logos .logo.b-delude {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.2em;
  color: #111;
}
.collab-logos .logo.b-koub {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.collab-logos .logo.b-diplomacy {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #1c2b4a;
  text-transform: uppercase;
}

.event-form {
  background: var(--knot-blue-soft);
  border-radius: 32px;
  padding: 48px;
}

.event-form h3 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.event-form p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.event-form input,
.event-form textarea,
.event-form select {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
}

.event-form textarea {
  min-height: 110px;
  resize: vertical;
}

.event-form .submit {
  background: var(--knot-blue-deep);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .events-hero h1 { font-size: 48px; }
  .collab-feature { grid-template-columns: 1fr; gap: 24px; }
  .collab-feature h3 { font-size: 28px; }
  .collab-logos { grid-template-columns: repeat(3, 1fr); }
  .event-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */

.site-footer {
  background: var(--text);
  color: var(--white);
  padding: 72px 48px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1344px;
  margin: 0 auto;
}

.footer-grid .col-brand p {
  margin-top: 18px;
  opacity: 0.7;
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-grid h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  color: var(--knot-blue-soft);
}

.footer-grid a {
  display: block;
  color: var(--white);
  opacity: 0.78;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.15s;
}

.footer-grid a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  margin-top: 56px;
  text-align: center;
  font-size: 12px;
  opacity: 0.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid .logo-foot img {
  height: 42px;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .site-footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===== Premium collabs section (editorial) ===== */

.collabs-premium {
  background: #0E141C;
  color: #F4F0E8;
  padding: 120px 48px 100px;
  position: relative;
  overflow: hidden;
}

.collabs-premium .wrap {
  max-width: 1344px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.collabs-premium .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8B58A;
  margin-bottom: 18px;
}

.collabs-premium .eyebrow-line::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #C8B58A;
}

.collabs-premium h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #F4F0E8;
  margin-bottom: 18px;
  max-width: 980px;
}

.collabs-premium h2 .italic {
  font-style: italic;
  color: #C8B58A;
}

.collabs-premium .lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.7);
  max-width: 580px;
  margin-bottom: 60px;
  font-weight: 300;
}

.collabs-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.collab-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1A2230;
}

.collab-card.tall { aspect-ratio: 3 / 4; }

.collab-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.05);
  transition: transform 0.7s ease, filter 0.4s ease;
}

.collab-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.88) saturate(1.1);
}

.collab-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 20, 28, 0.95) 100%);
  pointer-events: none;
}

.collab-card .meta {
  position: absolute;
  inset: auto 36px 32px 36px;
  z-index: 2;
  color: #F4F0E8;
}

.collab-card .meta .year {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C8B58A;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.collab-card .meta h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.collab-card .meta h3 .x {
  font-style: italic;
  color: #C8B58A;
  font-weight: 400;
}

.collab-card .meta p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244, 240, 232, 0.78);
  font-weight: 300;
  max-width: 360px;
}

.collab-card.tall .meta h3 { font-size: 28px; }

.collabs-roster {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(244, 240, 232, 0.12);
}

.collabs-roster .label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.55);
  margin-bottom: 22px;
  font-weight: 600;
}

.collabs-roster .names {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(244, 240, 232, 0.92);
  line-height: 1.4;
}

.collabs-roster .names .name {
  white-space: nowrap;
}

.collabs-roster .names .sep {
  color: #C8B58A;
  font-style: italic;
}

@media (max-width: 900px) {
  .collabs-premium { padding: 64px 20px; }
  .collabs-premium h2 { font-size: 38px; }
  .collabs-featured { grid-template-columns: 1fr; }
  .collab-card .meta { inset: auto 20px 20px 20px; }
  .collab-card .meta h3 { font-size: 24px; }

  .collabs-roster { margin-top: 40px; padding-top: 28px; }
  .collabs-roster .label { text-align: center; margin-bottom: 18px; }
  .collabs-roster .names {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px !important;
    font-size: 16px !important;
    text-align: center;
    justify-items: center;
  }
  .collabs-roster .names .sep { display: none; }
  .collabs-roster .names .name { white-space: normal; line-height: 1.25; }
}

@media (max-width: 480px) {
  .collabs-roster .names {
    grid-template-columns: 1fr;
    gap: 12px 0 !important;
  }
}

/* ===== Pricing band (Events page) ===== */

.pricing-band {
  background: #F4F0E8;
  padding: 110px 48px;
  position: relative;
}

.pricing-band .wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-band .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8B7242;
  margin-bottom: 40px;
}

.pricing-band .eyebrow-line::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #8B7242;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.pricing-figure {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 92px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #0E141C;
  margin-bottom: 24px;
}

.pricing-figure .italic {
  font-style: italic;
  color: #8B7242;
  font-weight: 700;
}

.pricing-note {
  font-size: 16px;
  line-height: 1.7;
  color: #5C6470;
  max-width: 480px;
  font-weight: 300;
}

.pricing-includes {
  border-left: 1px solid rgba(14, 20, 28, 0.16);
  padding-left: 36px;
  padding-top: 16px;
}

.pricing-includes .inc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8B7242;
  margin-bottom: 18px;
}

.pricing-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-includes li {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: #0E141C;
  padding: 9px 0;
  border-bottom: 1px solid rgba(14, 20, 28, 0.08);
}

.pricing-includes li:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .pricing-band { padding: 60px 20px; }
  .pricing-row { grid-template-columns: 1fr; gap: 40px; }
  .pricing-figure { font-size: 56px; }
  .pricing-includes { border-left: none; border-top: 1px solid rgba(14, 20, 28, 0.16); padding-left: 0; padding-top: 32px; }
}

/* ===== Team grid (About page) ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.team-tile {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--knot-blue-soft);
  transition: transform 0.3s ease;
}

.team-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
  transition: transform 0.6s ease;
}

.team-tile:hover {
  transform: translateY(-3px);
}

.team-tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ===== Spaces gallery ===== */

.spaces-section {
  padding: 100px 48px;
  background: var(--knot-blue);
  color: var(--white);
}

.spaces-section .wrap {
  max-width: 1344px;
  margin: 0 auto;
}

.spaces-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.spaces-section h1.section-title {
  color: var(--white);
  margin-bottom: 18px;
}

.spaces-section .section-title .lower {
  color: var(--cream);
}

.spaces-section .section-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
}

.spaces-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 40px;
}

.spaces-grid .tile {
  border-radius: 20px;
  overflow: hidden;
  background: var(--knot-blue-soft);
  position: relative;
}

.spaces-grid .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.spaces-grid .tile:hover img {
  transform: scale(1.04);
}

.spaces-grid .tile.t1 { grid-row: 1 / span 2; }
.spaces-grid .tile.t2 { grid-column: 2; grid-row: 1; }
.spaces-grid .tile.t3 { grid-column: 3; grid-row: 1; }
.spaces-grid .tile.t4 { grid-column: 2 / span 2; grid-row: 2; }

@media (max-width: 900px) {
  .spaces-section { padding: 64px 20px; }
  .spaces-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
    gap: 10px;
  }
  .spaces-grid .tile.t1 { grid-column: 1 / span 2; grid-row: 1; }
  .spaces-grid .tile.t2 { grid-column: 1; grid-row: 2; }
  .spaces-grid .tile.t3 { grid-column: 2; grid-row: 2; }
  .spaces-grid .tile.t4 { grid-column: 1 / span 2; grid-row: 3; }
}

/* ===== Marquee / brand strip ===== */

.marquee-strip {
  background: var(--text);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-track > .marquee-group {
  display: flex;
  align-items: center;
  padding-right: 0;
}

.marquee-track > .marquee-group > span {
  display: inline-block;
  padding: 0 28px;
}

.marquee-track .dot {
  color: var(--knot-blue);
  font-size: 22px;
  padding: 0 8px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Quote / pull block ===== */

.pull-quote {
  text-align: center;
  padding: 80px 24px;
  background: var(--knot-blue);
  color: var(--white);
}

.pull-quote .q {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 960px;
  margin: 0 auto;
}

.pull-quote .q .accent {
  font-family: 'Dancing Script', cursive;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  color: var(--cream);
  letter-spacing: 0;
  font-size: 0.7em;
  display: inline-block;
  margin: 0 6px;
}

@media (max-width: 768px) {
  .pull-quote { padding: 48px 16px; }
  .pull-quote .q { font-size: 28px; }
}
