/* Gary Creane Carpentry — shared styles (extracted from Heritage demo) */
:root {
    --cream: #EFEBE0;
    --cream-deep: #E5DFCF;
    --ink: #1F1F1A;
    --ink-soft: #3a3a32;
    --forest: #2F4F3F;
    --forest-deep: #1F3A2E;
    --sage: #7A8C70;
    --sage-soft: #95a18b;
    --oak: #B58A5C;
    --oak-deep: #946b3f;
    --rule: rgba(122, 140, 112, 0.32);
    --rule-soft: rgba(122, 140, 112, 0.18);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
  }

  /* Subtle paper texture via SVG noise */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.06  0 0 0 0.95 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
  }

  /* Typography */
  .serif { font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif; }
  .smallcaps {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--sage);
  }
  .italic { font-style: italic; }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; height: auto; }

  /* Layout */
  .wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 15px;
    letter-spacing: 0.04em;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  }
  .btn-primary {
    background: var(--forest-deep);
    color: var(--cream);
  }
  .btn-primary:hover { background: #0e2a20; }
  .btn-ghost {
    background: transparent;
    color: var(--forest-deep);
    border: 1px solid var(--forest-deep);
  }
  .btn-ghost:hover { background: var(--forest-deep); color: var(--cream); }

  .btn .arrow {
    display: inline-block;
    transition: transform 200ms ease;
  }
  .btn:hover .arrow { transform: translateX(3px); }

  /* HEADER */
  header.site {
    padding: 22px 0 18px;
    border-bottom: 1px solid var(--rule);
    position: relative;
    z-index: 5;
  }
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }
  .brand {
    font-family: 'Source Serif 4', Georgia, serif;
    display: inline-flex;
    align-items: center;
    gap: 16px;
  }
  .brand .mark {
    flex: 0 0 auto;
    width: auto;
    height: 40px;
    display: block;
  }
  .brand .divider {
    flex: 0 0 auto;
    width: 1px;
    height: 36px;
    background: var(--sage);
    opacity: 0.55;
  }
  .brand-text { display: inline-block; }
  .brand .name {
    display: block;
    font-size: 21px;
    letter-spacing: 0.14em;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
  }
  .brand .sub {
    display: block;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--sage);
    margin-top: 4px;
  }
  .navlinks {
    display: flex;
    justify-content: center;
    gap: 38px;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .navlinks a:hover { color: var(--forest-deep); }
  .nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: var(--ink-soft);
    font-family: 'Source Serif 4', Georgia, serif;
    letter-spacing: 0.02em;
  }
  .nav-right .phone {
    font-weight: 500;
    color: var(--forest-deep);
  }
  .menu-toggle { display: none; }

  /* HERO */
  .hero {
    padding: 80px 0 88px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-copy { padding-right: 12px; }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }
  .hero-eyebrow .rule {
    flex: 0 0 48px;
    height: 1px;
    background: var(--oak);
  }
  .hero h1 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    font-size: clamp(44px, 5.4vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.012em;
    color: var(--forest-deep);
    margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
  }
  .hero .lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 36px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-meta {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
  }
  .hero-meta strong {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 500;
    color: var(--forest-deep);
  }

  /* Hero image with stamp */
  .hero-img-wrap {
    position: relative;
  }
  .hero-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(31,31,26,0.05);
  }
  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.02);
  }
  .stamp {
    position: absolute;
    bottom: -38px;
    left: -38px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--oak);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-8deg);
    box-shadow: 0 6px 22px rgba(31,31,26,0.06);
  }
  .stamp::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed var(--oak);
    border-radius: 50%;
    opacity: 0.7;
  }
  .stamp-inner {
    font-family: 'Source Serif 4', Georgia, serif;
    color: var(--oak-deep);
    line-height: 1.1;
  }
  .stamp-inner .top {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }
  .stamp-inner .year {
    display: block;
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
  }
  .stamp-inner .bot {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
  }

  /* INTRO QUOTE */
  .intro {
    padding: 96px 0 88px;
    background: var(--cream);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    text-align: center;
    position: relative;
  }
  .ornament {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    color: var(--sage);
  }
  .ornament .line {
    width: 40px;
    height: 1px;
    background: var(--sage);
  }
  .ornament .dot {
    width: 4px;
    height: 4px;
    background: var(--oak);
    transform: rotate(45deg);
  }
  .quote {
    font-family: 'Source Serif 4', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.42;
    color: var(--ink);
    max-width: 760px;
    margin: 0 auto 32px;
    letter-spacing: -0.005em;
  }
  .quote-attr {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
  }

  /* SERVICES */
  .services {
    padding: 110px 0 100px;
  }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule);
  }
  .section-head h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    font-size: clamp(36px, 3.6vw, 52px);
    line-height: 1.1;
    color: var(--forest-deep);
    letter-spacing: -0.01em;
  }
  .section-head h2 em { font-style: italic; }
  .section-head .head-side p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 520px;
  }
  .section-head .head-side .smallcaps {
    display: block;
    margin-bottom: 14px;
  }

  .svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .svc-col {
    padding: 8px 36px;
    border-right: 1px solid var(--rule);
  }
  .svc-col:first-child { padding-left: 0; }
  .svc-col:last-child {
    padding-right: 0;
    border-right: none;
  }
  .svc-col h3 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: var(--forest-deep);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .svc-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .svc-item:last-child { border-bottom: none; }
  .svc-item .ttl {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .svc-item .desc {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  /* GALLERY */
  .gallery {
    padding: 100px 0 110px;
    background: var(--cream-deep);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 32px;
  }
  .gal-card {
    background: transparent;
  }
  .gal-card .img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--cream);
  }
  .gal-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.02);
    transition: transform 600ms ease;
  }
  .gal-card:hover .img img { transform: scale(1.03); }
  .gal-card .meta {
    padding: 0 2px;
  }
  .gal-card h3 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 500;
    font-size: 21px;
    color: var(--forest-deep);
    margin-bottom: 5px;
    letter-spacing: -0.005em;
  }
  .gal-card .sub {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  /* ABOUT TEASER */
  .about {
    padding: 120px 0 110px;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .about-img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--cream-deep);
  }
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
  }
  .about-copy .smallcaps {
    display: block;
    margin-bottom: 24px;
  }
  .about-copy h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.1;
    color: var(--forest-deep);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .about-copy h2 em { font-style: italic; }
  .about-copy p {
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 22px;
    max-width: 540px;
  }
  .about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--forest-deep);
    font-family: 'Source Serif 4', Georgia, serif;
    font-style: italic;
    font-size: 17px;
    border-bottom: 1px solid var(--oak);
    padding-bottom: 4px;
  }
  .about-link:hover { color: var(--oak-deep); }

  /* SERVICE AREA / TRUST */
  .trust {
    padding: 90px 0;
    background: var(--forest-deep);
    color: var(--cream);
    text-align: center;
    position: relative;
  }
  .trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
    pointer-events: none;
  }
  .trust .ornament .line { background: var(--oak); opacity: 0.7; }
  .trust .ornament .dot { background: var(--oak); }
  .trust .smallcaps { color: var(--oak); }
  .trust h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.18;
    margin: 20px auto 28px;
    max-width: 820px;
    letter-spacing: -0.005em;
  }
  .trust h2 em { font-style: italic; color: #e9d4b6; }
  .trust .pills {
    display: flex;
    justify-content: center;
    gap: 18px 32px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(239, 235, 224, 0.7);
    letter-spacing: 0.05em;
  }
  .trust .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .trust .pill::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--oak);
    border-radius: 50%;
    display: inline-block;
  }

  /* ENQUIRY FORM */
  .enquiry {
    padding: 120px 0 120px;
    position: relative;
  }
  .enquiry-head {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: end;
    padding-bottom: 40px;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
    margin-bottom: 56px;
  }
  .enquiry-head .smallcaps {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.15em;
    margin-bottom: 22px;
  }
  .enquiry-head .smallcaps::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--oak);
    display: inline-block;
  }
  .enquiry-head h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    font-size: clamp(40px, 4.4vw, 56px);
    line-height: 1.05;
    color: var(--forest-deep);
    letter-spacing: -0.012em;
  }
  .enquiry-head h2 em { font-style: italic; }
  .enquiry-head .head-side p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 560px;
    line-height: 1.65;
  }

  .enquiry-form-wrap {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 56px 0 60px;
  }

  .enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 36px;
  }
  .field { display: flex; flex-direction: column; }
  .field-full { grid-column: 1 / -1; }
  .field label {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sage);
    margin-bottom: 10px;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid rgba(47, 79, 63, 0.3);
    border-radius: 0;
    padding: 13px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    color: var(--ink);
    line-height: 1.5;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .field textarea {
    resize: vertical;
    min-height: 132px;
    font-family: 'Inter', sans-serif;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    color: rgba(31, 31, 26, 0.38);
    font-style: italic;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--forest);
    box-shadow: inset 0 -2px 0 0 var(--oak);
  }
  .field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5l5 5 5-5' fill='none' stroke='%232F4F3F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 11px 7px;
    padding-right: 38px;
  }

  .form-submit-row {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 4px;
  }
  .btn-submit {
    background: var(--forest);
    color: var(--cream);
    border: 1px solid var(--forest);
    padding: 16px 36px;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 0;
    transition: background 200ms ease, border-color 200ms ease;
  }
  .btn-submit:hover {
    background: var(--forest-deep);
    border-color: var(--forest-deep);
  }
  .form-note {
    font-family: 'Source Serif 4', Georgia, serif;
    font-style: italic;
    font-size: 14.5px;
    color: var(--ink-soft);
    max-width: 540px;
    line-height: 1.55;
  }

  /* Thank you state */
  .enquiry-thanks {
    display: none;
    text-align: center;
    padding: 32px 0 24px;
  }
  .enquiry-thanks.is-on { display: block; }
  .enquiry.is-submitted .enquiry-form { display: none; }
  .enquiry-thanks h3 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    font-size: clamp(34px, 3.4vw, 48px);
    line-height: 1.1;
    color: var(--forest-deep);
    letter-spacing: -0.01em;
    margin-bottom: 22px;
  }
  .enquiry-thanks h3 em { font-style: italic; }
  .enquiry-thanks p {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }
  .enquiry-thanks .back {
    display: inline-block;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--sage);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 4px;
  }
  .enquiry-thanks .back:hover { color: var(--forest-deep); border-color: var(--forest-deep); }

  /* CONTACT CTA */
  .contact {
    padding: 130px 0 130px;
    text-align: center;
  }
  .contact .smallcaps {
    display: block;
    margin-bottom: 24px;
  }
  .contact h2 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: 1.08;
    color: var(--forest-deep);
    margin-bottom: 24px;
    letter-spacing: -0.012em;
  }
  .contact h2 em { font-style: italic; }
  .contact .lede {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto 44px;
  }
  .contact-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .contact-phone {
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--forest-deep);
    letter-spacing: 0.01em;
  }
  .contact-phone .label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .contact-phone a:hover { color: var(--oak-deep); }

  /* FOOTER */
  footer.site {
    background: var(--cream-deep);
    border-top: 1px solid var(--rule);
    padding: 60px 0 36px;
    color: var(--ink-soft);
  }
  .foot-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 44px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .foot-mark img {
    height: 68px;
    width: auto;
    display: block;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .foot-brand {
    font-family: 'Source Serif 4', Georgia, serif;
  }
  .foot-brand .name {
    font-size: 19px;
    letter-spacing: 0.14em;
    color: var(--ink);
    display: block;
    margin-bottom: 6px;
  }
  .foot-brand .sub {
    font-style: italic;
    color: var(--sage);
    font-size: 14px;
    margin-bottom: 24px;
    display: block;
  }
  .foot-brand p {
    font-size: 14px;
    line-height: 1.55;
    max-width: 320px;
  }
  .foot-col h4 {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--sage);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .foot-col ul { list-style: none; }
  .foot-col li {
    font-size: 14.5px;
    line-height: 1.85;
  }
  .foot-col a:hover { color: var(--forest-deep); }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    font-size: 13px;
    color: var(--sage);
    flex-wrap: wrap;
    gap: 16px;
  }
  .foot-bottom .lineage {
    font-style: italic;
    font-family: 'Source Serif 4', Georgia, serif;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .wrap { padding: 0 32px; }
    .hero-grid { gap: 44px; }
    .section-head { gap: 40px; }
    .svc-col { padding: 8px 22px; }
  }

  @media (max-width: 820px) {
    .nav {
      grid-template-columns: 1fr auto;
    }
    .navlinks {
      display: none;
    }
    .nav-right .phone-label { display: none; }
    .hero { padding: 56px 0 64px; }
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .hero-copy { padding-right: 0; order: 2; }
    .hero-img-wrap { order: 1; }
    .hero-img { aspect-ratio: 4 / 3; }
    .stamp {
      width: 108px;
      height: 108px;
      bottom: -24px;
      left: 16px;
    }
    .stamp-inner .year { font-size: 22px; }
    .intro { padding: 64px 0; }
    .services { padding: 70px 0 70px; }
    .section-head {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 40px;
    }
    .svc-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .svc-col {
      padding: 0 0 28px;
      border-right: none;
      border-bottom: 1px solid var(--rule);
    }
    .svc-col:last-child { border-bottom: none; padding-bottom: 0; }
    .gallery { padding: 70px 0; }
    .gal-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .about { padding: 70px 0; }
    .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .about-img { aspect-ratio: 4 / 3; max-height: 480px; }
    .trust { padding: 64px 0; }
    .enquiry { padding: 70px 0; }
    .enquiry-head {
      grid-template-columns: 1fr;
      gap: 24px;
      padding-top: 28px;
      margin-bottom: 36px;
    }
    .enquiry-form-wrap { padding: 40px 0 44px; }
    .enquiry-form {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .contact { padding: 80px 0; }
    .foot-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 500px) {
    .wrap { padding: 0 22px; }
    .brand { gap: 12px; }
    .brand .mark { height: 32px; }
    .brand .divider { height: 30px; }
    .brand .name { font-size: 17px; letter-spacing: 0.1em; }
    .brand .sub { font-size: 12px; }
    .foot-mark img { height: 56px; }
    .nav-right { font-size: 13px; }
    .hero h1 { font-size: 40px; }
    .hero .lede { font-size: 16.5px; }
    .quote { font-size: 22px; }
    .gal-card h3 { font-size: 19px; }
    .foot-grid { grid-template-columns: 1fr; }
    .hero-ctas .btn,
    .contact-ctas .btn { width: 100%; justify-content: center; }
  }

/* ============================================================
   NEW COMPONENTS — multi-page build (2026-06-14)
   ============================================================ */

/* Active nav link */
.navlinks a.active {
  color: var(--forest-deep);
  position: relative;
}
.navlinks a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--oak);
}

/* Interior page header band */
.page-head-band {
  padding: 64px 0 8px;
  position: relative;
  z-index: 1;
}
.page-head-band .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.page-head-band .eyebrow .rule {
  flex: 0 0 48px;
  height: 1px;
  background: var(--oak);
}
.page-head-band h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--forest-deep);
  margin-bottom: 24px;
  max-width: 14ch;
}
.page-head-band h1 em { font-style: italic; color: var(--ink); }
.page-head-band .lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 600px;
}

/* Services preview (home) — compact three-up of column titles */
.svc-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
}
.svc-preview .col {
  padding: 4px 32px;
  border-right: 1px solid var(--rule);
}
.svc-preview .col:first-child { padding-left: 0; }
.svc-preview .col:last-child { padding-right: 0; border-right: none; }
.svc-preview h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--forest-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-soft);
}
.svc-preview ul { list-style: none; }
.svc-preview li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.svc-more { margin-top: 44px; }

/* Section CTA link (reused) */
.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-deep);
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  border-bottom: 1px solid var(--oak);
  padding-bottom: 4px;
  transition: color 200ms ease;
}
.section-cta:hover { color: var(--oak-deep); }
.section-cta span { transition: transform 200ms ease; }
.section-cta:hover span { transform: translateX(3px); }

/* TESTIMONIALS */
.testimonials {
  padding: 110px 0 100px;
  background: var(--cream-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 8px;
}
.quote-card {
  background: var(--cream);
  border-top: 2px solid var(--oak);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0 1px rgba(31,31,26,0.04);
}
.quote-card .mark {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 48px;
  line-height: 0.6;
  color: var(--oak);
  opacity: 0.55;
  margin-bottom: 12px;
}
.quote-card .body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  margin-bottom: 26px;
  flex: 1 1 auto;
}
.quote-card .attr {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
}
.quote-card.feature .body { font-size: 16.5px; }
.tst-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* Contact page detail block */
.contact-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 8px 0 48px;
}
.contact-detail .lead-call .label {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-detail .lead-call a.big {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--forest-deep);
  display: inline-block;
  margin-bottom: 28px;
}
.contact-detail .lead-call a.big:hover { color: var(--oak-deep); }
.contact-detail .rows { font-size: 16px; line-height: 1.5; }
.contact-detail .rows .row { padding: 14px 0; border-bottom: 1px solid var(--rule-soft); }
.contact-detail .rows .row:last-child { border-bottom: none; }
.contact-detail .rows h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-detail .rows a:hover { color: var(--forest-deep); }

@media (max-width: 820px) {
  .svc-preview { grid-template-columns: 1fr; gap: 28px; }
  .svc-preview .col { padding: 0 0 24px; border-right: none; border-bottom: 1px solid var(--rule); }
  .svc-preview .col:last-child { border-bottom: none; padding-bottom: 0; }
  .tst-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials { padding: 70px 0; }
  .contact-detail { grid-template-columns: 1fr; gap: 36px; }
  .page-head-band { padding: 44px 0 4px; }
}

/* ---- WORK MARQUEE (home portfolio film-strip) ---- */
.gal-marquee {
  position: relative;
  margin-top: 52px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.gal-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: gal-scroll 110s linear infinite;
}
.gal-marquee:hover .gal-track,
.gal-marquee:focus-within .gal-track { animation-play-state: paused; }
.gal-frame {
  flex: 0 0 auto;
  height: clamp(220px, 30vw, 350px);
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--rule-soft);
}
.gal-frame img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gal-frame:hover img { transform: scale(1.045); }
@keyframes gal-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gal-marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .gal-track { animation: none; }
  .gal-frame { scroll-snap-align: start; }
}

/* ---- SERVICES category bands (snazzier services page) ---- */
.svc-band { padding: clamp(48px, 6vw, 84px) 0; border-bottom: 1px solid var(--rule); }
.svc-band.alt { background: var(--cream-deep); }
.svc-band-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.svc-band.reverse .svc-band-media { order: 2; }
.svc-band-media {
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--cream);
}
.svc-band-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-band-media:hover img { transform: scale(1.04); }
.svc-band-body { display: flex; flex-direction: column; }
.svc-band-body h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--oak);
}
.svc-band-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 44px;
}
.svc-band-items .svc-item { padding: 18px 0; border-bottom: 1px solid var(--rule-soft); }
@media (max-width: 880px) {
  .svc-band-grid { grid-template-columns: 1fr; gap: 26px; }
  .svc-band.reverse .svc-band-media { order: 0; }
  .svc-band-media img { min-height: 0; height: 280px; }
  .svc-band-items { grid-template-columns: 1fr; gap: 0; }
}
