/* =========================================================
   Scott Decorators — shared stylesheet
   Aesthetic: Trusted Tradesman
   Cream background · deep navy ink · muted ochre accent
   ========================================================= */

:root {
  --cream:        #F5F0E6;
  --cream-deep:   #ECE4D4;
  --paper:        #FBF8F2;
  --ink:          #1F2A37;
  --ink-soft:     #4A5568;
  --ink-mute:     #6B7280;
  --navy:         #1B2845;
  --navy-deep:    #131C30;
  --ochre:        #B8742E;
  --ochre-deep:   #97601F;
  --rule:         #D9CFBC;

  --serif:        'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:         'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --measure:      66ch;
  --container:    1180px;
  --radius:       4px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

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

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}

.brand-tag {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-top: 4px;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover { color: var(--ink); }
.site-nav a.active {
  color: var(--ink);
  border-bottom-color: var(--ochre);
}

.site-nav a.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--radius);
  border-bottom: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.site-nav a.nav-cta:hover {
  background: var(--navy-deep);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
}

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

.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,116,46,0.08), transparent 50%),
    var(--cream);
}

.hero-dense {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-dense::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(184,116,46,0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-dense::after {
  content: "1961";
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: var(--serif);
  font-size: clamp(140px, 20vw, 260px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: rgba(27,40,69,0.04);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
}

.hero-dense .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.hero-dense .eyebrow { margin-bottom: 18px; }

.hero-dense h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
  max-width: 18ch;
}

.hero-dense h1 em {
  font-style: italic;
  color: var(--ochre);
  font-weight: 400;
}

.hero-dense .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 28px;
}

.hero-dense .hero-cta {
  margin-bottom: 36px;
}

.hero-trust {
  list-style: none;
  margin: 0 0 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-trust li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.hero-trust span {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.4;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .hero-dense { padding: 40px 0 36px; }
  .hero-dense .hero-cta { margin-bottom: 28px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 20px; margin-bottom: 24px; }
  .hero-dense::after { font-size: 160px; bottom: -10px; right: -20px; }
  .hero-services { gap: 6px; padding-top: 16px; }
  .service-tag { font-size: 12px; padding: 6px 12px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
  margin: 0 0 24px;
}

.eyebrow-light { color: rgba(245,240,230,0.7); }

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--ochre);
  font-weight: 400;
}

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 36px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 180ms ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero-image {
  position: relative;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--ochre);
  z-index: 0;
  border-radius: var(--radius);
}
.hero-image img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(31,42,55,0.35);
}

/* =========================================================
   Intro section (owner card + copy)
   ========================================================= */

.intro {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.intro-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.card-owner {
  background: var(--cream);
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.owner-photo {
  width: 110px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 22px;
}

.card-owner h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink);
}

.card-owner p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.contact-list span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

.contact-list a {
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
}
.contact-list a:hover { color: var(--ochre); }

.intro-copy h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--ink);
  max-width: 22ch;
}

.intro-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: var(--measure);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 4px;
  transition: gap 200ms ease;
}
.link-arrow:hover { gap: 16px; color: var(--ochre); }
.link-arrow-light { color: var(--cream); border-bottom-color: var(--ochre); }
.link-arrow-light:hover { color: var(--ochre); }

/* =========================================================
   Testimonial feature (dark)
   ========================================================= */

.testimonial-feature {
  padding: 96px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonial-feature::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 240px;
  line-height: 1;
  color: rgba(184,116,46,0.12);
  pointer-events: none;
}

.testimonial-feature blockquote {
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: center;
  position: relative;
}

.testimonial-feature blockquote p {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 32px;
  color: var(--cream);
}

.testimonial-feature cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-feature cite strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-feature cite span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.6);
}

.testimonial-feature .container { text-align: center; }

/* =========================================================
   Services grid
   ========================================================= */

.services {
  padding: 96px 0;
}

.services h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 56px;
  color: var(--ink);
  max-width: 22ch;
}

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

.service {
  padding: 32px 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(31,42,55,0.2);
}

.service h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}

.service p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   Page hero (smaller, used on inner pages)
   ========================================================= */

.page-hero {
  padding: 72px 0 48px;
  background: var(--cream);
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

.page-hero h1 em {
  font-style: italic;
  color: var(--ochre);
}

.page-hero .lede {
  margin-bottom: 0;
  max-width: 60ch;
}

/* =========================================================
   Article layout (for inner pages: text + sidebar)
   ========================================================= */

.article-section {
  padding: 64px 0 96px;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.article-grid.reverse {
  grid-template-columns: 320px 1fr;
}

.prose h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.prose h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 32px 0 10px;
  color: var(--ink);
}

.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: var(--measure);
}

.prose strong { color: var(--ink); }
.prose em { color: var(--ink); }

.tip {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 4px solid var(--ochre);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.tip h4 {
  font-family: var(--serif);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin: 0 0 12px;
  font-weight: 600;
}
.tip p { margin: 0; color: var(--ink); }

/* =========================================================
   Testimonials list
   ========================================================= */

.testimonial-list {
  display: grid;
  gap: 48px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}

.testimonial-card .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.testimonial-card .meta strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}

.testimonial-card .meta span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ochre);
}

.testimonial-card .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 24px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.testimonial-card .signoff {
  font-style: italic;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 500;
}

/* =========================================================
   Sample work gallery
   ========================================================= */

.gallery-section {
  padding: 64px 0 96px;
}

.gallery-section h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ink);
}

.gallery-section h2:not(:first-of-type) {
  margin-top: 80px;
}

.gallery-section .section-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  font-weight: 600;
  margin: 0 0 32px;
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 8px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  transition: color 160ms ease;
}

.faq-item summary:hover { color: var(--ochre); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 400;
  color: var(--ochre);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .answer {
  padding: 0 0 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* =========================================================
   CTA strip (used on inner pages)
   ========================================================= */

.cta-strip {
  padding: 56px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  max-width: 30ch;
  line-height: 1.2;
}

.cta-strip .btn-primary {
  flex-shrink: 0;
}

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

.site-footer {
  background: var(--navy-deep);
  color: rgba(245,240,230,0.7);
  padding: 56px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 4px;
}

.footer-place {
  font-size: 14px;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-contact a {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.footer-contact a:hover { color: var(--ochre); }

.footer-copy {
  text-align: right;
  font-size: 13px;
  margin: 0;
  color: rgba(245,240,230,0.5);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
  .hero-grid,
  .intro-grid,
  .article-grid,
  .article-grid.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-grid.reverse .card-owner { order: 2; }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-contact { text-align: center; align-items: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .container { padding: 0 20px; }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
  }

  .site-nav.open {
    max-height: 400px;
  }

  .site-nav a {
    padding: 16px 28px;
    border-bottom: 1px solid var(--rule);
  }

  .site-nav a.active {
    border-bottom-color: var(--rule);
    background: var(--cream);
  }

  .site-nav a.nav-cta {
    background: var(--navy);
    color: var(--cream);
    border-radius: 0;
    border-bottom: 1px solid var(--rule);
    padding: 16px 28px;
    font-size: 15px;
  }

  .hero { padding: 56px 0 48px; }
  .intro, .testimonial-feature, .services { padding: 64px 0; }

  .hero-image::before { inset: 10px -10px -10px 10px; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .testimonial-card { padding: 28px 24px; }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* =========================================================
   Trust strip
   ========================================================= */

.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
}

.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-strip li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--ochre);
  padding-left: 16px;
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.trust-strip span {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .trust-strip ul { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* =========================================================
   Section lede (intro paragraph for sections)
   ========================================================= */

.section-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 56px;
}

/* =========================================================
   Work teaser (homepage strip linking to gallery)
   ========================================================= */

.work-teaser {
  padding: 64px 0 72px;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.teaser-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.teaser-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.teaser-grid a:hover img {
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .work-teaser { padding: 64px 0; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Inline quote (homepage testimonial block)
   ========================================================= */

.inline-quote {
  margin: 0 0 32px;
  padding-left: 24px;
  border-left: 3px solid var(--ochre);
}

.inline-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 400;
}

.inline-quote cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inline-quote cite strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.inline-quote cite span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ochre);
}

/* =========================================================
   FAQ section (homepage)
   ========================================================= */

.faq-section {
  padding: 96px 0;
}

.faq-section h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 48px;
  color: var(--ink);
  max-width: 22ch;
}

.faq-section .faq-list {
  max-width: 820px;
}

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

/* =========================================================
   Dual CTA buttons + ghost-light variant
   ========================================================= */

.cta-strip-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-ghost-light:hover {
  background: var(--paper);
  border-color: var(--ink);
}

/* =========================================================
   Copy-to-clipboard button
   Two stacked labels — default visible, success hidden.
   On .copied, they swap. Uses the same .btn dimensions.
   ========================================================= */

.btn-copy {
  position: relative;
  font-family: var(--sans);
  cursor: pointer;
  overflow: hidden;
}

.btn-copy .copy-default,
.btn-copy .copy-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms ease;
}

.btn-copy .copy-success {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  opacity: 0;
  color: var(--ochre);
  font-weight: 600;
}

.btn-copy.copied .copy-default {
  transform: translateY(-100%);
  opacity: 0;
}

.btn-copy.copied .copy-success {
  transform: translateY(0);
  opacity: 1;
}

.btn-copy.copied {
  border-color: var(--ochre);
}
