/* Duff Builders — site styles */
/* ---------- Brand tokens ---------- */
  :root {
    --gold: #C99A3A;          /* PMS 1245 */
    --gold-dark: #A87F29;
    --gold-soft: #E5C583;
    --charcoal: #3E4543;      /* PMS 446 */
    --charcoal-deep: #2A2F2E;
    --sage: #A9BDAE;          /* PMS 5635 */
    --cool-grey: #D8D9DA;     /* Cool Grey 1C */
    --cream: #FAF7F1;
    --ivory: #F3EEE3;
    --white: #FFFFFF;
    --text: #2A2F2E;
    --text-muted: #5E6563;
    --border: #E5DFCF;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(42, 47, 46, 0.06), 0 1px 3px rgba(42, 47, 46, 0.04);
    --shadow-md: 0 4px 12px rgba(42, 47, 46, 0.08), 0 2px 4px rgba(42, 47, 46, 0.04);
    --shadow-lg: 0 12px 32px rgba(42, 47, 46, 0.12), 0 4px 8px rgba(42, 47, 46, 0.06);

    --container: 1240px;
    --radius: 4px;
    --radius-lg: 8px;
  }

  /* ---------- Reset & base ---------- */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: transparent; }

  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
    color: var(--charcoal-deep);
    font-variation-settings: "opsz" 48;
  }
  h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
  h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 600; }
  p  { margin: 0 0 1em; }

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

  .eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
  }
  .eyebrow.on-dark { color: var(--gold-soft); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius);
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--charcoal-deep);
    box-shadow: var(--shadow-sm);
  }
  .btn-primary:hover { background: var(--gold-dark); color: var(--white); box-shadow: var(--shadow-md); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    padding: 12px 24px;
  }
  .btn-outline:hover { background: var(--charcoal); color: var(--white); }
  .btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    padding: 12px 24px;
  }
  .btn-outline-light:hover { background: var(--white); color: var(--charcoal-deep); border-color: var(--white); }
  .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--gold-dark);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    font-size: 0.95rem;
  }
  .btn-link:hover { color: var(--charcoal-deep); }
  .btn .arrow { transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ---------- Top bar ---------- */
  .topbar {
    background: var(--charcoal-deep);
    color: var(--cool-grey);
    font-size: 0.82rem;
    padding: 8px 0;
    letter-spacing: 0.02em;
  }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .topbar a { color: var(--cool-grey); transition: color 0.2s; }
  .topbar a:hover { color: var(--gold); }
  .topbar-right { display: flex; gap: 24px; align-items: center; }
  .topbar-item { display: inline-flex; gap: 6px; align-items: center; }
  @media (max-width: 720px) {
    .topbar-left { display: none; }
    .topbar .container { justify-content: center; }
  }

  /* ---------- Header ---------- */
  .site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
  }
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 24px;
    transition: padding 0.2s ease;
  }
  /* Scrolled state: compact the whole header */
  .site-header.scrolled .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;  /* logo gets its full width — never squished by adjacent nav */
  }
  .logo-link img {
    height: 135px;
    width: auto;
    aspect-ratio: 3300 / 1253;  /* locks the logo's true proportions during animation */
    transition: height 0.25s ease;
  }
  .site-header.scrolled .logo-link img { height: 70px; }
  .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;             /* let items flow to a second row when space is tight */
    justify-content: flex-end;   /* keep wrapped rows aligned to the right (near the CTA) */
    column-gap: 28px;
    row-gap: 6px;
  }
  .main-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;  /* keep "Multi-Family / Commercial" on one line */
  }
  .main-nav a:hover { color: var(--gold-dark); }
  .main-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }
  .main-nav a:hover::after { transform: scaleX(1); }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  .menu-toggle { display: none; padding: 8px; color: var(--charcoal); }

  @media (max-width: 1080px) {
    .logo-link img { height: 100px; }
    .site-header.scrolled .logo-link img { height: 56px; }
    .main-nav, .nav-cta .btn { display: none; }
    .menu-toggle { display: inline-flex; }
    .main-nav.open {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: var(--white);
      padding: 20px 24px;
      gap: 12px;
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-md);
    }
    .main-nav.open a { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--border); }
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    background: var(--charcoal-deep);
    color: var(--white);
    overflow: hidden;
    min-height: 660px;
    padding: 380px 0 70px;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
  }
  .hero .container { width: 100%; }
  @media (max-width: 720px) {
    .hero { padding: 260px 0 50px; min-height: 540px; }
  }
  .hero::before {
    /* Hummelstown pool house — twilight hero shot */
    content: "";
    position: absolute; inset: 0;
    background-image: linear-gradient(180deg, rgba(20,24,23,0.45) 0%, rgba(20,24,23,0.78) 100%), url('web-images/swygert-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
  }
  .hero::after {
    /* Subtle pine-silhouette texture echoing the logo mark */
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400' opacity='0.06'><g fill='%23C99A3A'><path d='M50 350 L80 280 L65 280 L95 210 L80 210 L110 140 L125 140 L140 70 L155 140 L170 140 L200 210 L185 210 L215 280 L200 280 L230 350 Z'/><path d='M260 350 L290 280 L275 280 L305 210 L290 210 L320 140 L335 140 L350 70 L365 140 L380 140 Z'/></g></svg>");
    background-size: 400px 400px;
    z-index: -1;
    opacity: 0.5;
  }
  .hero-inner { max-width: 820px; }
  .hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-variation-settings: "opsz" 144;
  }
  .hero h1 .accent { color: var(--gold); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 50; }
  .hero-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: rgba(255,255,255,0.88);
    max-width: 620px;
    margin-bottom: 36px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

  /* ---------- Trust bar ---------- */
  .trust-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  .trust-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 880px;
    margin: 0 auto;
  }
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .trust-item strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--charcoal-deep);
    font-weight: 700;
  }
  @media (max-width: 720px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
    .trust-grid-3 { grid-template-columns: 1fr; }
  }

  /* ---------- Section base ---------- */
  section { padding: 96px 0; }
  @media (max-width: 720px) { section { padding: 64px 0; } }
  .section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
  .section-head p { font-size: 1.1rem; color: var(--text-muted); margin-top: 8px; }

  /* ---------- Services (3-up) ---------- */
  .services { background: var(--cream); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .service-image {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .service-image::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(42,47,46,0.35) 100%);
  }
  .service-card .body { padding: 32px; }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .service-card p { color: var(--text-muted); margin-bottom: 18px; }
  .service-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
  .service-card li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--charcoal);
  }
  .service-card li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.65em;
    width: 10px; height: 2px;
    background: var(--gold);
  }
  @media (max-width: 1080px) {
    .services-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  }

  /* ---------- Portfolio ---------- */
  .portfolio { background: var(--white); }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .project {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
  }
  .project.tall { aspect-ratio: 4 / 5; }
  .project::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(42,47,46,0) 40%, rgba(42,47,46,0.92) 100%);
    z-index: -1;
    transition: opacity 0.25s ease;
  }
  .project::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(201,154,58,0);
    transition: background 0.25s ease;
    z-index: -1;
  }
  .project:hover::after { background: rgba(201,154,58,0.12); }
  .project-meta {
    padding: 24px;
    color: var(--white);
    width: 100%;
  }
  .project-meta .tag {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal-deep);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
  }
  .project-meta h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  .project-meta .location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
  }
  .portfolio-foot { text-align: center; margin-top: 40px; }
  @media (max-width: 880px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .project.tall { aspect-ratio: 4 / 3; }
  }
  @media (max-width: 560px) {
    .portfolio-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Process ---------- */
  .process { background: var(--ivory); position: relative; }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
  }
  .process-grid::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  .step {
    position: relative;
    text-align: center;
    z-index: 1;
  }
  .step-num {
    width: 68px; height: 68px;
    margin: 0 auto 20px;
    background: var(--white);
    color: var(--gold-dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
  }
  .step h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
  .step p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
  @media (max-width: 880px) {
    .process-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
    .process-grid::before { display: none; }
  }
  @media (max-width: 520px) {
    .process-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Why Duff ---------- */
  .why {
    background: var(--charcoal-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .why::before {
    /* faint icon watermark */
    content: "";
    position: absolute;
    right: -120px; bottom: -120px;
    width: 560px; height: 560px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' opacity='0.08'><rect x='3' y='3' width='94' height='54' rx='3' fill='none' stroke='%23C99A3A' stroke-width='2'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }
  .why h2 { color: var(--white); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
  .why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,154,58,0.28);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(2px);
  }
  .why-card .icon {
    width: 40px; height: 40px;
    margin-bottom: 16px;
    color: var(--gold);
  }
  .why-card h3 { color: var(--white); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
  .why-card p { color: rgba(255,255,255,0.78); margin: 0; font-size: 0.98rem; }
  @media (max-width: 880px) {
    .why-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Testimonials ---------- */
  .testimonials { background: var(--cream); }
  .quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .quote {
    background: var(--white);
    border-left: 4px solid var(--gold);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
  }
  .quote blockquote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.45;
    color: var(--charcoal-deep);
    margin: 0 0 20px;
    font-weight: 500;
    font-style: italic;
  }
  .quote cite {
    font-style: normal;
    font-size: 0.88rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }
  .quote cite strong { color: var(--charcoal); font-weight: 600; }
  @media (max-width: 720px) {
    .quote-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Audio testimonials ---------- */
  .audio-section {
    background: var(--ivory);
    padding-top: 64px;
    padding-bottom: 96px;
  }
  .audio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }
  .audio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: 1px solid var(--border);
  }
  .audio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .audio-card .quote-mark {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 0.5;
    height: 0.5em;
  }
  .audio-card blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--charcoal-deep);
    font-weight: 500;
    flex-grow: 1;
  }
  .audio-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .audio-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--charcoal-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
  }
  .audio-play-btn:hover { background: var(--gold-dark); color: var(--white); transform: scale(1.04); }
  .audio-play-btn .icon-pause { display: none; }
  .audio-play-btn.playing .icon-play { display: none; }
  .audio-play-btn.playing .icon-pause { display: block; }
  .audio-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
    flex-grow: 1;
  }
  .audio-meta strong {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--charcoal-deep);
    font-size: 0.95rem;
  }
  .audio-meta .audio-status {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }
  .audio-progress {
    width: 100%;
    height: 3px;
    background: var(--cool-grey);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
  }
  .audio-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 0.1s linear;
  }
  .audio-foot { text-align: center; }
  @media (max-width: 880px) {
    .audio-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Quote grid (written testimonials) ---------- */
  .quote-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .quote .featured-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    background: var(--ivory);
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 14px;
  }
  @media (max-width: 720px) {
    .quote-grid-3 { grid-template-columns: 1fr; }
  }

  /* ---------- Final CTA ---------- */
  .cta-band {
    background: var(--gold);
    color: var(--charcoal-deep);
    padding: 80px 0;
    text-align: center;
  }
  .cta-band h2 { color: var(--charcoal-deep); }
  .cta-band p { font-size: 1.1rem; margin: 0 auto 28px; max-width: 620px; }
  .cta-band .btn-primary {
    background: var(--charcoal-deep);
    color: var(--white);
  }
  .cta-band .btn-primary:hover { background: #1F2423; }

  /* ---------- Footer ---------- */
  .site-footer {
    background: var(--charcoal-deep);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 24px;
    font-size: 0.92rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand img { height: 96px; width: auto; margin-bottom: 18px; }
  .footer-brand p { color: rgba(255,255,255,0.65); margin: 0; max-width: 300px; }
  .footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
  }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  }
  @media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Utilities ---------- */
  .visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* Concept note banner at very top of doc (can be deleted before launch) */
  .concept-note {
    background: #FFF4DC;
    border-bottom: 1px solid #E6D89F;
    color: #6B5512;
    font-size: 0.82rem;
    padding: 8px 16px;
    text-align: center;
  }
  .concept-note strong { font-weight: 600; }
/* ---------- Lightbox (scoped to [data-lightbox] containers) ---------- */
[data-lightbox] img { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 22, 22, 0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 2000;
  padding: 40px 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-img {
  max-width: min(94vw, 1400px);
  max-height: 88vh;
  width: auto; height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: zoom-out;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  width: 44px; height: 44px;
  background: rgba(20, 22, 22, 0.6);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-close:hover { background: var(--gold); color: var(--charcoal-deep); border-color: var(--gold); }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(20, 22, 22, 0.6);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-nav:hover { background: var(--gold); color: var(--charcoal-deep); border-color: var(--gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 600px) {
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 22px; }
}


/* ─── Social icons (footer + contact sidebar) ─────────────────────── */
.footer-socials {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gold-soft, #E5C583);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.footer-socials a:hover {
  background: var(--gold, #C99A3A);
  color: #fff;
  transform: translateY(-2px);
}
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal-deep, #2A2F2E);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.contact-socials a:hover { color: var(--gold-dark, #A87F29); }
.contact-socials a svg {
  width: 20px;
  height: 20px;
  color: var(--gold, #C99A3A);
}

/* Honeypot field on the contact form — visually hidden from people, still
   present in the DOM so spam bots fill it in and get discarded server-side.
   Deliberately NOT display:none, which many bots know to skip. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
