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

:root {
  --paper: #FFFFFF;
  --paper-soft: #F8F8F7;
  --ink: #1F2123;
  --ink-soft: #4e4a49;
  --gray: #8C8987;
  --gray-light: #C8C5C0;
  --line: #E8E5E0;
  --copper: #af6f29;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--ink-soft);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: -0.005em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* === NAV — clean, white, hairline === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  padding: 15px 56px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .nav { grid-template-columns: 1fr auto; padding: 9px 24px; } }

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
}
.nav-brand-mark {
  width: 82px; height: 82px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 900px) { .nav-brand-mark { width: 46px; height: 46px; } }
.nav-brand:hover .nav-brand-mark { background: var(--ink); color: var(--paper); }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  margin-top: 3px;
}

.nav-links {
  display: flex; gap: 40px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) { .nav-links { display: none; } }

/* === MOBILE HAMBURGER === */
.nav-burger {
  display: none;
  background: transparent;
  border: none;
  width: 32px; height: 28px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-cta { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--paper);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  padding: 80px 40px 40px;
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 480px;
  margin: 40px auto 0;
}
.mobile-menu-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-link:hover {
  color: var(--copper);
  padding-left: 8px;
}
.mobile-menu-cta {
  margin-top: 24px;
  background: var(--ink);
  color: var(--paper);
  border-bottom: none;
  padding: 9px 24px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 2px;
}
.mobile-menu-cta:hover {
  background: var(--copper);
  color: var(--paper);
  padding-left: 24px;
}
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 32px;
  background: transparent;
  border: none;
  font-size: 36px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 200;
  line-height: 1;
  width: 40px; height: 40px;
}
.nav-link {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  justify-self: end;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 11px 22px;
  background: var(--ink); color: var(--paper);
  border-radius: 100px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--copper); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* === HERO — clean, photo-led === */
.hero {
  position: relative;
  padding: 140px 0 0;
  background: var(--paper);
}
.hero-text {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 56px 64px;
}
@media (max-width: 800px) { .hero-text { padding: 32px 24px 48px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gray);
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 1200px;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--copper); font-weight: 400; }

.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--gray);
  max-width: 720px;
  line-height: 1.45;
}

.hero-photo {
  width: 100%;
  height: 82vh; min-height: 600px;
  overflow: hidden;
  position: relative;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 28s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-meta-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1480px;
  margin: 0 auto;
}
@media (max-width: 800px) { .hero-meta-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px; } }
.hero-meta-item .label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.hero-meta-item .value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.hero-meta-item .value em { font-style: italic; color: var(--copper); }

/* === SECTION === */
.section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 140px 56px;
}
@media (max-width: 800px) { .section { padding: 96px 24px; } }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}
.section-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--copper);
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 1100px;
}
.section-title em { font-style: italic; color: var(--copper); font-weight: 400; }
.section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 60px;
}

/* === PORTFOLIO === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.portfolio-tile {
  position: relative;
  overflow: hidden;
  background: var(--paper-soft);
  cursor: pointer;
}
.portfolio-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
}
.portfolio-tile:hover img { transform: scale(1.04); filter: brightness(0.7); }
.portfolio-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,11,14,0.6) 100%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.portfolio-tile:hover::after { opacity: 1; }
.portfolio-caption {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  color: var(--paper);
  transform: translateY(12px); opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
  z-index: 2;
}
.portfolio-tile:hover .portfolio-caption { transform: translateY(0); opacity: 1; }
.portfolio-caption .ti {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 400;
  letter-spacing: -0.015em;
}
.portfolio-caption .meta {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* Portfolio grid: featured + standard layout */
.portfolio-tile:nth-child(1) { grid-column: span 8; aspect-ratio: 16/10; }
.portfolio-tile:nth-child(2) { grid-column: span 4; aspect-ratio: 4/5; }
.portfolio-tile:nth-child(3) { grid-column: span 4; aspect-ratio: 4/5; }
.portfolio-tile:nth-child(4) { grid-column: span 4; aspect-ratio: 4/5; }
.portfolio-tile:nth-child(5) { grid-column: span 4; aspect-ratio: 4/5; }
.portfolio-tile:nth-child(6) { grid-column: span 6; aspect-ratio: 5/4; }
.portfolio-tile:nth-child(7) { grid-column: span 6; aspect-ratio: 5/4; }
.portfolio-tile:nth-child(8) { grid-column: span 4; aspect-ratio: 4/5; }
.portfolio-tile:nth-child(9) { grid-column: span 4; aspect-ratio: 4/5; }
.portfolio-tile:nth-child(10) { grid-column: span 4; aspect-ratio: 4/5; }
@media (max-width: 900px) {
  .portfolio-tile { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 60px;
}
@media (max-width: 800px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services-grid { grid-template-columns: 1fr; } }

.service-cell {
  padding: 48px 36px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.4s;
  cursor: pointer;
  position: relative;
}
.service-cell:hover { background: var(--paper-soft); }
.service-cell .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px; font-style: italic;
  color: var(--copper);
  margin-bottom: 24px;
}
.service-cell h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 16px;
}
.service-cell h3 em { font-style: italic; color: var(--copper); }
.service-cell p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.service-cell .link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s;
}
.service-cell:hover .link { color: var(--copper); border-color: var(--copper); }
.service-cell .link::after { content: '→'; transition: transform 0.3s; }
.service-cell:hover .link::after { transform: translateX(4px); }

/* === FIRM === */
.firm-section {
  background: var(--paper-soft);
}
.firm-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 140px 56px;
}
@media (max-width: 900px) { .firm-inner { grid-template-columns: 1fr; gap: 48px; padding: 96px 24px; } }
.firm-text .section-title { margin-bottom: 32px; }
.firm-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 540px;
}
.firm-text .quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  padding: 24px 0 24px 24px;
  border-left: 1px solid var(--copper);
  margin: 32px 0;
  max-width: 540px;
}
.firm-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.firm-meta-grid .lab {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 4px;
}
.firm-meta-grid .val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px; color: var(--ink);
  letter-spacing: -0.01em;
}
.firm-meta-grid .val em { font-style: italic; color: var(--copper); }

.firm-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.firm-image img { width: 100%; height: 100%; object-fit: cover; }

/* === DESIGN PLANS / PROCESS === */
.plans-section {
  padding: 140px 56px;
  max-width: 1480px;
  margin: 0 auto;
}
@media (max-width: 800px) { .plans-section { padding: 96px 24px; } }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  position: relative;
}
.plans-grid::before {
  content: ''; position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 1px; background: var(--copper);
  opacity: 0.3;
}
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .plans-grid::before { display: none; }
}
@media (max-width: 600px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-step {
  position: relative;
  z-index: 1;
}
.plan-num {
  width: 72px; height: 72px;
  background: var(--paper);
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 400; font-style: italic;
  color: var(--copper);
  margin-bottom: 32px;
  transition: all 0.4s;
}
.plan-step:hover .plan-num {
  background: var(--copper); color: var(--paper);
  transform: scale(1.05);
}
.plan-step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
}
.plan-step h3 em { font-style: italic; color: var(--copper); }
.plan-step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* === INQUIRE === */
.inquire-section {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 56px;
}
@media (max-width: 800px) { .inquire-section { padding: 96px 24px; } }
.inquire-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .inquire-inner { grid-template-columns: 1fr; gap: 48px; } }

.inquire-text .section-eyebrow {
  color: var(--copper);
}
.inquire-text .section-title {
  color: var(--paper);
}
.inquire-text .section-title em { color: var(--copper); }
.inquire-text .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  gap: 24px;
}
.contact-row .lab {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.contact-row .val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: var(--paper);
  text-align: right;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.contact-row a.val:hover { color: var(--copper); }

.inquiry-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px;
  border-radius: 4px;
}
.inquiry-form h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 24px;
}
.inquiry-form .field { margin-bottom: 16px; }
.inquiry-form .field label {
  display: block;
  font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.inquiry-form input, .inquiry-form textarea, .inquiry-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 10px 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--paper);
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.inquiry-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B8853D'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 30px; cursor: pointer; }
.inquiry-form select option { background: var(--ink); color: var(--paper); }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus {
  outline: none; border-bottom-color: var(--copper);
}
.inquiry-form textarea { resize: vertical; min-height: 60px; }
.inquiry-form button {
  width: 100%;
  background: var(--copper);
  color: var(--paper);
  border: none;
  padding: 16px 24px;
  font-family: inherit;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 14px;
  transition: background 0.3s, transform 0.2s;
}
.inquiry-form button:hover { background: #c58a47; transform: translateY(-1px); }

/* === CHATBOT === */
.chatbot {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
}
.chat-bubble-tip {
  position: absolute;
  bottom: 80px; right: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 36px 18px 22px;
  border-radius: 16px 16px 4px 16px;
  font-size: 16px;
  line-height: 1.5;
  max-width: 320px;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.005em;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 18px 40px rgba(10,11,14,0.22);
}
.chat-bubble-tip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-bubble-tip::before {
  content: '';
  position: absolute;
  bottom: -8px; right: 24px;
  width: 16px; height: 16px;
  background: var(--ink);
  transform: rotate(45deg);
  border-radius: 0 0 4px 0;
}
.chat-bubble-tip .close {
  position: absolute;
  top: 10px; right: 12px;
  width: 20px; height: 20px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  padding: 0; line-height: 1;
}
.chat-bubble-tip .close:hover { color: var(--paper); }
.chatbot-trigger {
  width: 64px; height: 64px;
  background: var(--ink);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(10, 11, 14, 0.28);
  transition: all 0.3s;
  color: var(--paper);
  position: relative;
  padding: 0;
  animation: chatRing 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.chatbot-trigger svg { width: 30px; height: 30px; display: block; }
@keyframes chatRing {
  0%, 100% { box-shadow: 0 10px 30px rgba(10,11,14,0.25), 0 0 0 0 rgba(175,111,41,0.5); }
  50% { box-shadow: 0 10px 30px rgba(10,11,14,0.25), 0 0 0 16px rgba(175,111,41,0); }
}
.chatbot-trigger:hover {
  transform: scale(1.05);
  background: var(--copper);
  animation: none;
}
.chatbot-trigger.open { transform: scale(0.9); opacity: 0.6; animation: none; }
.chatbot-trigger.has-message::after {
  content: '';
  position: absolute;
  top: 4px; right: 4px;
  width: 12px; height: 12px;
  background: var(--copper);
  border: 2px solid var(--paper);
  border-radius: 50%;
}
.chatbot-panel {
  position: absolute;
  bottom: 84px; right: 0;
  width: 380px;
  max-width: calc(100vw - 56px);
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(10, 11, 14, 0.25);
  border: 1px solid var(--line);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.chatbot-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chatbot-header {
  padding: 20px 22px;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; gap: 12px;
}
.chatbot-header .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 12px var(--copper);
  animation: chatPulse 2.2s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.chatbot-header-text {
  flex: 1;
}
.chatbot-header-text .name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}
.chatbot-header-text .name em { font-style: italic; color: var(--copper); }
.chatbot-header-text .status {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.chatbot-body {
  padding: 22px;
  min-height: 220px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.chatbot-msg {
  background: var(--paper-soft);
  padding: 14px 16px;
  border-radius: 4px 14px 14px 14px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 90%;
}
.chatbot-quickreplies {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px;
}
.chatbot-quickreply {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s;
}
.chatbot-quickreply:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(175,111,41,0.04);
}
.chatbot-input-row {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  display: flex; gap: 8px;
  align-items: center;
}
.chatbot-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0;
}
.chatbot-input-row input:focus { outline: none; }
.chatbot-input-row button {
  background: var(--ink);
  color: var(--paper);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.chatbot-input-row button:hover { background: var(--copper); }

@media (max-width: 480px) {
  .chatbot { bottom: 16px; right: 16px; }
  .chatbot-trigger { width: 56px; height: 56px; font-size: 24px; }
  .chatbot-panel { width: calc(100vw - 32px); right: -16px; bottom: 76px; }
}

/* === FOOTER === */
footer {
  background: var(--paper);
  color: var(--gray);
  padding: 80px 56px 32px;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { footer { padding: 56px 24px 24px; } }
.footer-inner {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1000px) { .footer-inner { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.footer-brand em { color: var(--copper); font-style: italic; }
.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 17px;
  color: var(--ink-soft);
  max-width: 320px; line-height: 1.5;
}
.footer-col h4 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 18px;
}
.footer-col a, .footer-col .v {
  display: block; font-size: 14px;
  color: var(--gray); margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--copper); }
.footer-bottom {
  max-width: 1480px; margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── /contact page: hide nav-cta since user is already there ─────────────── */
body.page-contact .nav-cta { display: none !important; }

/* ─── Sticky mobile inquire CTA — luxury always-one-tap-away pattern ───────── */
.knaak-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(20, 18, 16, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(196, 145, 80, 0.25);
  padding: 14px 20px;
  z-index: 90;
}
.knaak-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 0;
  background: var(--copper, #B8853D);
  color: #fff;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.knaak-mobile-cta a:hover { background: #a37533; }
@media (max-width: 900px) {
  body:not(.page-contact) .knaak-mobile-cta { display: block; }
  body:not(.page-contact) { padding-bottom: 80px; }
}

/* ─── Best of Houzz badge strip + trust signal pills (home + can be reused) ── */
.awards-strip { background: #faf8f5; }
.badge-strip { display: flex; flex-wrap: wrap; gap: 12px; margin: 36px 0 28px; max-width: 1100px; }
.houzz-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 18px; background: #fff; border: 1px solid var(--line, #e8e3da);
  border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft, #6b6056);
}
.houzz-badge em { font-style: normal; font-weight: 700; color: var(--copper, #B8853D); margin-left: 4px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-pill {
  display: inline-block; padding: 8px 16px;
  background: rgba(184, 133, 61, 0.08); color: var(--copper, #B8853D);
  border: 1px solid rgba(184, 133, 61, 0.25); border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ─── Cookie consent banner (GDPR + CCPA) ─────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 640px; margin: 0 auto;
  padding: 20px 28px;
  background: rgba(20, 18, 16, 0.96);
  backdrop-filter: blur(12px);
  color: var(--paper, #fff);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 100;
  display: none;
  font-family: 'Inter', sans-serif;
}
.cookie-banner.show { display: block; }
.cookie-banner-inner { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.cookie-banner p {
  flex: 1; min-width: 220px;
  font-size: 13px; line-height: 1.55; margin: 0;
  color: rgba(255,255,255,0.85);
}
.cookie-banner p a { color: var(--copper, #B8853D); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner button {
  font-family: inherit; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 2px; border: none; cursor: pointer;
  transition: all 0.2s;
}
.cookie-banner button.accept { background: var(--copper, #B8853D); color: var(--paper, #fff); }
.cookie-banner button.accept:hover { background: #c58a47; }
.cookie-banner button.decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.cookie-banner button.decline:hover { color: var(--paper, #fff); border-color: rgba(255,255,255,0.6); }
@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 84px; padding: 16px 18px; }
  .cookie-banner-inner { gap: 14px; }
}

/* ─── Portfolio nav dropdown ──────────────────────────────────────────────── */
.nav-link-with-menu { position: relative; padding-bottom: 18px; margin-bottom: -18px; }
.nav-link-with-menu .nav-submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 4px;
  padding: 12px 0; min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Invisible bridge: extends the submenu hover zone upward to butt against the nav link */
.nav-link-with-menu .nav-submenu::before {
  content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px;
}
.nav-link-with-menu .nav-submenu a {
  display: block; padding: 10px 22px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft); transition: all 0.15s;
}
.nav-link-with-menu .nav-submenu a:hover { color: var(--copper); padding-left: 26px; }
.nav-link-with-menu:hover .nav-submenu,
.nav-link-with-menu:focus-within .nav-submenu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
@media (max-width: 900px) { .nav-link-with-menu .nav-submenu { display: none; } }

/* ─── Home hero slideshow ─────────────────────────────────────────────────── */
.hero-photo.slideshow { position: relative; }
.hero-photo.slideshow img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 2s cubic-bezier(0.65, 0, 0.35, 1);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
.hero-photo.slideshow img.active { opacity: 1; }

/* === BRAND MARK + WORDMARK (Rob's official logos) === */
.nav-brand-mark img { width: 82px; height: 82px; display: block; object-fit: contain; }
@media (max-width: 900px) { .nav-brand-mark img { width: 46px; height: 46px; } }
.nav-brand-text img { height: 62px; width: auto; max-width: none; flex-shrink: 0; object-fit: contain; display: block; }
@media (max-width: 900px) { .nav-brand-text img { height: 42px; } }
.footer-brand img { max-width: 240px; height: auto; display: block; margin-bottom: 12px; }

/* === FOOTER HERITAGE SEAL === */
.footer-brand-stack { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.footer-brand-stack .footer-seal { width: 56px; height: auto; opacity: 0.92; }
.footer-brand-stack .footer-wordmark { max-width: 240px; height: auto; filter: invert(1); }

/* === Homepage Featured Project === */
.featured-project { position: relative; display: block; border-radius: 6px; overflow: hidden; aspect-ratio: 16/9; margin-top: 8px; }
@media (max-width: 700px) { .featured-project { aspect-ratio: 4/3; } }
.featured-project img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.featured-project:hover img { transform: scale(1.04); }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,16,0.78) 0%, rgba(20,18,16,0.15) 48%, rgba(20,18,16,0) 100%); }
.featured-text { position: absolute; left: 0; bottom: 0; padding: 48px 56px; color: var(--paper); }
@media (max-width: 700px) { .featured-text { padding: 28px 24px; } }
.featured-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; margin-bottom: 12px; font-weight: 500; }
.featured-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(34px, 5vw, 64px); font-weight: 300; line-height: 1.05; margin-bottom: 16px; }
.featured-cta { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; border-bottom: 1px solid var(--copper); color: var(--paper); padding-bottom: 4px; }
.featured-viewall { text-align: center; margin-top: 40px; }

/* "View this project" — outlined button (1px copper precision border) */
.cat-view-all {
  display: inline-block;
  padding: 17px 50px;
  border: 1.5px solid var(--copper);
  color: var(--copper);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 2px 14px rgba(175,111,41,0.10);
  transition: background 0.35s cubic-bezier(0.22,1,0.36,1), color 0.35s, transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.cat-view-all:hover { background: var(--copper); color: var(--paper); border-color: var(--copper); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(175,111,41,0.28); }

/* Tighten the gap between the featured project and Services (was 280px of stacked padding) */
#portfolio { padding-bottom: 80px; }
#services { padding-top: 84px; }
@media (max-width: 800px) { #portfolio { padding-bottom: 56px; } #services { padding-top: 60px; } }

/* === Pergola showcase === */
.pergola-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.pergola-features div { border-top: 2px solid var(--copper); padding-top: 16px; }
.pergola-features strong { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.pergola-features span { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.pergola-specs { list-style: none; margin-top: 28px; display: grid; gap: 16px; max-width: 900px; }
.pergola-specs li { padding-left: 24px; position: relative; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.pergola-specs li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--copper); border-radius: 50%; }
.pergola-specs strong { color: var(--ink); font-weight: 600; }
.pergola-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
@media (max-width: 700px) { .pergola-gallery { grid-template-columns: 1fr; } }
.pergola-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; aspect-ratio: 3/2; }

/* === Section bands (visual rhythm for service pages) === */
.band { padding: 100px 56px; }
@media (max-width: 800px) { .band { padding: 64px 24px; } }
.band-inner { max-width: 1480px; margin: 0 auto; }
.band-tint { background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-ink { background: var(--ink); }
.band-eyebrow { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gray); margin-bottom: 20px; font-weight: 500; }
.band h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(30px, 3.8vw, 52px); font-weight: 300; line-height: 1.12; color: var(--ink); letter-spacing: -0.018em; margin-bottom: 28px; max-width: 900px; }
.band h2 em { font-style: italic; color: var(--copper); }
.band p { font-size: 16px; line-height: 1.7; margin-bottom: 18px; max-width: 680px; color: var(--ink-soft); }
.band-ink h2 { color: var(--paper); }
.band-ink p { color: rgba(255,255,255,0.75); }
.band-ink .band-eyebrow { color: rgba(255,255,255,0.55); }
.image-band { width: 100%; height: 52vh; min-height: 380px; overflow: hidden; }
.image-band img { width: 100%; height: 100%; object-fit: cover; }
/* pergola specs -> two columns, dark-band aware */
.pergola-specs { grid-template-columns: 1fr 1fr; gap: 18px 48px; max-width: 1100px; }
@media (max-width: 700px) { .pergola-specs { grid-template-columns: 1fr; } }
.band-ink .pergola-specs li { color: rgba(255,255,255,0.82); }
.band-ink .pergola-specs strong { color: var(--paper); }
.band-ink .pergola-specs li::before { background: var(--copper); }
.pergola-features--stack { grid-template-columns: 1fr; gap: 20px; align-content: start; }

/* band sub-headings (service scope lists) */
.band h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-weight: 400; color: var(--ink); margin: 22px 0 12px; }
.band h3 em { font-style: italic; color: var(--copper); }
.band .split img { border-radius: 4px; }

/* === Journal === */
.journal-wrap { max-width: 1080px; margin: 0 auto; padding: 150px 56px 40px; }
@media (max-width: 800px) { .journal-wrap { padding: 120px 24px 30px; } }
.journal-wrap .eyebrow { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gray); margin-bottom: 22px; font-weight: 500; }
.journal-wrap h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(44px, 6vw, 84px); font-weight: 300; line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 20px; }
.journal-wrap .lead { font-size: 18px; color: var(--ink-soft); max-width: 720px; line-height: 1.6; }
.journal-list { max-width: 1080px; margin: 0 auto; padding: 20px 56px 100px; }
@media (max-width: 800px) { .journal-list { padding: 10px 24px 60px; } }
.journal-card { display: block; border-top: 1px solid var(--line); padding: 38px 0; transition: padding-left 0.25s; }
.journal-card:last-child { border-bottom: 1px solid var(--line); }
.journal-card:hover { padding-left: 10px; }
.journal-card .k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.journal-card h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(26px, 3vw, 38px); font-weight: 300; color: var(--ink); line-height: 1.12; margin-bottom: 12px; letter-spacing: -0.015em; }
.journal-card p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; max-width: 760px; margin-bottom: 14px; }
.journal-card .read { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); font-weight: 500; }
.post-date { font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 0.04em; color: var(--gray); margin-bottom: 8px; }

/* === GLOBAL cta-band (journal + any page without its own) === */
.cta-band { background: var(--ink); color: var(--paper); padding: 100px 56px; text-align: center; }
@media (max-width: 800px) { .cta-band { padding: 64px 24px; } }
.cta-band h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.1; color: var(--paper); margin-bottom: 28px; letter-spacing: -0.015em; }
.cta-band h2 em { font-style: italic; color: var(--copper); }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 36px; }
.cta-band a { display: inline-block; padding: 16px 44px; background: var(--copper); color: var(--paper); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px; transition: all 0.3s; }
.cta-band a:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
/* article body sub-heads + lists (journal) */
.project-body h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(26px, 3vw, 36px); font-weight: 300; color: var(--ink); margin: 42px 0 16px; letter-spacing: -0.015em; }
.project-body h2 em { font-style: italic; color: var(--copper); }
.project-body ul { margin: 0 0 22px 22px; }
.project-body li { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 10px; }

/* === SERVICE FEATURE PHOTO === */
.service-feature { max-width: 1480px; margin: 56px auto 0; padding: 0 56px; }
.service-feature img { width: 100%; height: auto; display: block; }
@media (max-width: 800px) { .service-feature { padding: 0 24px; margin-top: 32px; } }

/* ═══ PRESTIGE LAYER — reusable across service + location pages ═══ */

/* Full-bleed cinematic hero photo (location + service pages) */
.page-hero-photo { width: 100%; height: 62vh; min-height: 420px; max-height: 700px; overflow: hidden; position: relative; }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 30s ease-in-out infinite alternate; }
@media (max-width: 800px) { .page-hero-photo { height: 46vh; min-height: 300px; } }

/* When a hero photo + credibility bar precede the text hero, tighten its top pad (out-specifies each page's inline .page-hero padding) */
.cred-bar + .page-hero { padding-top: 84px; }
@media (max-width: 800px) { .cred-bar + .page-hero { padding-top: 52px; } }

/* Credibility bar — HGTV / Best of Houzz / RLA / Est. 2005 */
.cred-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-soft); }
.cred-bar-inner { max-width: 1480px; margin: 0 auto; padding: 22px 56px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 30px; }
.cred-item { font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.cred-item em { font-style: normal; color: var(--copper); }
.cred-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--copper); opacity: 0.55; flex: 0 0 auto; }
@media (max-width: 800px) { .cred-bar-inner { padding: 18px 24px; gap: 10px 16px; } .cred-item { font-size: 9.5px; letter-spacing: 0.1em; } .cred-sep { display: none; } }

/* Editorial pull-quote band */
.pull-quote { max-width: 1120px; margin: 0 auto; padding: 108px 56px; text-align: center; }
.pull-quote blockquote { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-style: italic; font-size: clamp(27px, 3.5vw, 44px); line-height: 1.26; color: var(--ink); letter-spacing: -0.015em; }
.pull-quote blockquote em { font-style: italic; color: var(--copper); }
.pull-quote .attr { margin-top: 26px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
@media (max-width: 800px) { .pull-quote { padding: 68px 24px; } }

/* Press / Featured-in strip (mirrors the About page) */
.press-strip { padding: 66px 56px; max-width: 1480px; margin: 0 auto; border-top: 1px solid var(--line); }
@media (max-width: 800px) { .press-strip { padding: 44px 24px; } }
.press-strip .label { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--copper); text-align: center; margin-bottom: 30px; }
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px 54px; }
.press-logos .logo-slot { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 600; font-size: 28px; color: var(--ink); opacity: 1; padding: 10px 20px; letter-spacing: -0.005em; }
.press-note { text-align: center; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 600; font-size: 17px; color: var(--ink-soft); margin-top: 24px; opacity: 1; }
/* Magazine logo images in the press strip (matches About page; replaces text placeholders sitewide) */
.press-logos .logo-slot { display: inline-flex; align-items: center; }
.press-logos .logo-slot img { height: 34px; width: auto; max-width: 200px; filter: grayscale(1); opacity: 0.6; transition: opacity 0.3s, filter 0.3s; }
.press-logos .logo-slot:hover img { filter: grayscale(0); opacity: 1; }

/* ═══ Interaction polish — lightbox, scroll progress ═══ */
.lb-zoom { cursor: zoom-in; }

.kx-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--copper); z-index: 300; transition: width 0.12s linear; pointer-events: none; }

.kx-lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(20,21,22,0.95); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease; }
.kx-lightbox.open { opacity: 1; visibility: visible; }
.kx-lightbox img.kx-big { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 2px; box-shadow: 0 30px 90px rgba(0,0,0,0.55); transform: scale(0.985); transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); cursor: default; }
.kx-lightbox.open img.kx-big { transform: scale(1); }
.kx-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); padding: 0 24px; }
.kx-close, .kx-nav { position: absolute; background: none; border: 0; color: rgba(255,255,255,0.65); cursor: pointer; font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1; transition: color 0.25s; z-index: 2; }
.kx-close { top: 20px; right: 30px; font-size: 42px; }
.kx-nav { top: 50%; transform: translateY(-50%); font-size: 56px; padding: 18px; }
.kx-prev { left: 12px; } .kx-next { right: 12px; }
.kx-close:hover, .kx-nav:hover { color: #fff; }
@media (max-width: 800px) { .kx-nav { font-size: 40px; padding: 8px; } .kx-close { font-size: 36px; right: 20px; } }

/* ---- Professional Affiliations band (About) — ASLA + CLARB credential logos ---- */
.pro-affiliations .affiliation-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
  margin-top: 40px;
}
.pro-affiliations .affiliation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pro-affiliations .affiliation img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter .4s ease, opacity .4s ease;
}
.pro-affiliations .affiliation:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.pro-affiliations .affiliation-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}
@media (max-width: 600px) {
  .pro-affiliations .affiliation-logos { gap: 36px; justify-content: center; }
  .pro-affiliations .affiliation img { height: 44px; }
}

/* ---- HGTV People's Choice Award (About / Recognition) ---- */
.hgtv-award {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-soft);
  max-width: 640px;
}
.hgtv-award img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}
.hgtv-award-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 8px;
}
.hgtv-award-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .hgtv-award { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .hgtv-award img { height: 52px; }
}
