
    :root {
      --ink: #101112;
      --ink-soft: #1a1b1d;
      --paper: #f7f4ef;
      --paper-2: #efeae2;
      --line: rgba(16,17,18,.14);
      --white: #ffffff;
      --gold: #e8b45f;
      --gold-2: #f5d79f;
      --muted: #aaa59d;
      --radius: 24px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "DM Sans", sans-serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; width: 100%; }
    button, input, select, textarea { font: inherit; }

    .shell {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 20;
      transition: .25s ease;
      color: white;
    }

    .nav.scrolled {
      background: rgba(16,17,18,.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .nav-inner {
      height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: 22px;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.45);
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }

    .brand-mark:before,
    .brand-mark:after {
      content: "";
      position: absolute;
      height: 1px;
      width: 32px;
      background: var(--gold);
      transform: rotate(-22deg);
    }

    .brand-mark:after { transform: rotate(22deg); }

    .brand b { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 14px;
      font-weight: 600;
    }

    .nav-links a:not(.nav-cta) { opacity: .82; }
    .nav-links a:hover { opacity: 1; }

    .nav-cta {
      padding: 13px 19px;
      background: var(--gold);
      color: var(--ink);
      border-radius: 999px;
      font-weight: 700;
    }

    .menu-btn {
      display: none;
      background: none;
      border: 0;
      color: white;
      font-size: 26px;
      cursor: pointer;
    }

    .hero {
      min-height: 940px;
      height: 100svh;
      color: white;
      display: flex;
      align-items: flex-end;
      position: relative;
      overflow: hidden;
      background: #0d0e10;
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 46%;
      filter: saturate(.75) contrast(1.05);
      transform: scale(1.015);
    }

    .hero-media:after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10,10,12,.28) 0%, rgba(10,10,12,.08) 30%, rgba(10,10,12,.88) 100%),
        linear-gradient(90deg, rgba(10,10,12,.55), transparent 65%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 190px 0 68px;
      width: 100%;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: .18em;
      font-weight: 700;
      color: var(--gold-2);
      margin-bottom: 24px;
    }

    .eyebrow:before {
      content: "";
      width: 42px;
      height: 1px;
      background: var(--gold);
    }

    h1, h2, h3 {
      margin: 0;
      font-family: "Playfair Display", serif;
      line-height: .98;
      letter-spacing: -.035em;
    }

    h1 {
      font-size: clamp(68px, 8.6vw, 138px);
      max-width: 1080px;
      font-weight: 600;
    }

    h1 em {
      color: var(--gold);
      font-weight: 600;
    }

    .hero-bottom {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 40px;
      margin-top: 46px;
    }

    .hero-copy {
      max-width: 620px;
      color: rgba(255,255,255,.78);
      font-size: clamp(17px, 1.7vw, 21px);
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 16px 23px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: .2s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--ink);
    }

    .btn-primary:hover {
      background: var(--gold-2);
      transform: translateY(-1px);
    }

    .btn-ghost {
      color: white;
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.05);
      backdrop-filter: blur(8px);
    }

    .btn-dark {
      background: var(--ink);
      color: white;
    }

    .trust-strip {
      background: var(--ink);
      color: white;
      border-top: 1px solid rgba(255,255,255,.09);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .trust-item {
      padding: 26px 24px;
      border-right: 1px solid rgba(255,255,255,.09);
    }

    .trust-item:first-child { padding-left: 0; }
    .trust-item:last-child { border-right: 0; }

    .trust-item strong {
      display: block;
      font-size: 15px;
      color: white;
      margin-bottom: 4px;
    }

    .trust-item span {
      font-size: 13px;
      color: var(--muted);
    }

    section { padding: 120px 0; }

    .section-head {
      display: grid;
      grid-template-columns: .7fr 1.3fr;
      gap: 70px;
      align-items: start;
      margin-bottom: 58px;
    }

    .kicker {
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 12px;
      font-weight: 700;
      color: #8a6835;
    }

    h2 {
      font-size: clamp(46px, 5.8vw, 82px);
      font-weight: 600;
    }

    .section-intro {
      max-width: 700px;
      font-size: 18px;
      color: #5f5c57;
      margin-top: 24px;
    }

    .event-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
    }

    .event-card {
      position: relative;
      min-height: 610px;
      border-radius: var(--radius);
      overflow: hidden;
      color: white;
      isolation: isolate;
    }

    .event-card.small { min-height: 296px; }

    .event-stack {
      display: grid;
      gap: 18px;
    }

    .event-card img {
      position: absolute;
      inset: 0;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
      z-index: -2;
    }

    .event-card:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.82) 100%);
      z-index: -1;
    }

    .event-card:hover img { transform: scale(1.035); }

    .event-copy {
      position: absolute;
      inset: auto 0 0 0;
      padding: 32px;
    }

    .event-copy .num {
      color: var(--gold);
      font-size: 12px;
      letter-spacing: .14em;
      font-weight: 700;
    }

    .event-copy h3 {
      font-size: 40px;
      margin: 8px 0 10px;
    }

    .event-copy p {
      margin: 0;
      max-width: 480px;
      color: rgba(255,255,255,.74);
    }

    .services {
      background: var(--ink);
      color: white;
    }

    .services .kicker { color: var(--gold); }
    .services .section-intro { color: #aaa69f; }

    .service-list {
      border-top: 1px solid rgba(255,255,255,.12);
    }

    .service-row {
      display: grid;
      grid-template-columns: 72px 1fr .8fr 40px;
      gap: 24px;
      align-items: center;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,.12);
      transition: .2s ease;
    }

    .service-row:hover { padding-left: 10px; }

    .service-num {
      color: var(--gold);
      font-size: 13px;
      font-weight: 700;
    }

    .service-row h3 {
      font-family: "DM Sans", sans-serif;
      letter-spacing: -.03em;
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 500;
    }

    .service-row p {
      margin: 0;
      color: #9f9b94;
      font-size: 14px;
      max-width: 440px;
    }

    .service-arrow {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold);
    }

    .promise-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .promise-media {
      min-height: 680px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }

    .promise-media img {
      position: absolute;
      inset: 0;
      height: 100%;
      object-fit: cover;
    }

    .promise-media .badge {
      position: absolute;
      right: 24px;
      bottom: 24px;
      width: 170px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: var(--gold);
      color: var(--ink);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 10px;
      font-size: 22px;
      font-weight: 700;
      line-height: 1.2;
      transform: rotate(8deg);
    }

    .promise-list {
      display: grid;
      gap: 0;
      margin-top: 38px;
    }

    .promise-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 18px;
      padding: 19px 0;
      border-bottom: 1px solid var(--line);
    }

    .check {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #ead5ad;
      display: grid;
      place-items: center;
      font-weight: 700;
    }

    .promise-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 16px;
    }

    .promise-item span {
      color: #6f6b65;
      font-size: 14px;
    }

    .process {
      background: var(--paper-2);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .step {
      padding: 34px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.5);
      border-radius: 18px;
      min-height: 265px;
      display: flex;
      flex-direction: column;
    }

    .step-no {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--ink);
      color: white;
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: auto;
    }

    .step h3 {
      font-size: 28px;
      margin: 26px 0 10px;
    }

    .step p {
      margin: 0;
      color: #66625d;
      font-size: 14px;
    }

    .credibility {
      padding-top: 90px;
      padding-bottom: 90px;
    }

    .credibility-box {
      background: var(--gold);
      border-radius: var(--radius);
      padding: 56px;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 50px;
      align-items: center;
    }

    .credibility-box h2 {
      font-size: clamp(44px, 5vw, 68px);
    }

    .credibility-stats {
      display: grid;
      grid-template-columns: 1fr;
      border-left: 1px solid rgba(16,17,18,.25);
    }

    .stat {
      padding: 16px 28px;
    }

    .stat strong {
      font-family: "Playfair Display", serif;
      font-size: 38px;
      display: block;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat span {
      display: block;
      font-size: 15px;
      line-height: 1.6;
      font-weight: 600;
    }

    .quote-section {
      background: var(--ink-soft);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .quote-section:before {
      content: "YOURDJ";
      position: absolute;
      right: -45px;
      top: 55px;
      font-family: "Playfair Display", serif;
      font-size: 180px;
      color: rgba(255,255,255,.025);
      letter-spacing: -.06em;
      pointer-events: none;
    }

    .quote-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 80px;
      align-items: start;
    }

    .quote-copy p {
      color: #aaa69f;
      max-width: 440px;
      font-size: 17px;
    }

    .contact-details {
      display: grid;
      gap: 12px;
      margin-top: 34px;
      font-size: 14px;
      color: #d3cec5;
    }

    .contact-details strong { color: white; }

    .quote-panel {
      background: white;
      color: var(--ink);
      border-radius: var(--radius);
      padding: 34px;
      display: grid;
      gap: 18px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      margin: 0 0 8px;
      letter-spacing: .03em;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid #d9d5ce;
      background: #faf8f4;
      border-radius: 12px;
      padding: 14px 15px;
      outline: none;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #9c7440;
      box-shadow: 0 0 0 3px rgba(232,180,95,.16);
    }

    textarea { resize: vertical; min-height: 120px; }

    .form-note {
      font-size: 11px;
      color: #78736c;
      margin: -4px 0 0;
    }

    footer {
      background: #0b0c0d;
      color: #b4b0a8;
      padding: 38px 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      font-size: 13px;
    }

    .footer-links {
      display: flex;
      gap: 20px;
    }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .menu-btn { display: block; }
      .nav.open { background: var(--ink-soft); border-bottom: 0; }
      .nav.open .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ink-soft);
        border: 0;
        border-radius: 0;
        padding: 22px 24px 28px;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100dvh - 86px);
        overflow-y: auto;
      }

      .hero { min-height: 820px; }
      .hero-bottom,
      .section-head,
      .promise-grid,
      .quote-grid,
      .credibility-box {
        grid-template-columns: 1fr;
      }

      .hero-bottom { align-items: start; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
      .event-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .service-row { grid-template-columns: 50px 1fr 40px; }
      .service-row p { display: none; }
      .credibility-stats { border-left: 0; border-top: 1px solid rgba(16,17,18,.25); padding-top: 18px; }
    }

    @media (max-width: 620px) {
      .shell { width: min(calc(100% - 28px), var(--max)); }
      section { padding: 82px 0; }
      .hero { min-height: 760px; }
      .hero-content { padding-bottom: 38px; }
      h1 { font-size: 58px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .trust-grid { grid-template-columns: 1fr; }
      .trust-item,
      .trust-item:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
      .section-head { gap: 22px; margin-bottom: 36px; }
      .event-card { min-height: 430px; }
      .event-card.small { min-height: 260px; }
      .event-copy { padding: 24px; }
      .event-copy h3 { font-size: 32px; }
      .service-row { grid-template-columns: 42px 1fr 36px; gap: 12px; }
      .promise-media { min-height: 480px; }
      .credibility-box { padding: 32px 24px; }
      .credibility-stats { grid-template-columns: 1fr; }
      .stat { padding: 16px 0; }
      .form-row { grid-template-columns: 1fr; }
      .quote-panel { padding: 24px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }
  
/* Shared Web Forms pages */
body { color: var(--ink); font-size: 16px; }
h1,h2,h3,h6 { color: inherit; }
p { line-height: 1.7; }
a:hover { color: #8a6835; }
.nav a:hover, footer a:hover { color: var(--gold-2); }
#aspnetForm { margin: 0; padding: 0; background: none; border: 0; }
.nav { background: rgba(16,17,18,.88); }
.nav-links { gap: 23px; }
.nav-links a[aria-current="page"] { opacity: 1; color: var(--gold); }
.brand { color: white; white-space: nowrap; }
.hero { min-height: 760px; max-height: 1100px; padding: 0; }
.hero h1 { font-size: clamp(62px, 7.7vw, 118px); }
.hero-copy { margin-bottom: 0; }
.hero-bottom { margin-top: 32px; }
.hero-content { padding-bottom: 64px; }
section { scroll-margin-top: 90px; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; background: var(--gold); padding: 12px 20px; color: var(--ink); }
.skip-link:focus { top: 12px; }
a:focus-visible,button:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; }
.btn:hover { color: inherit; }
.btn-dark:hover { color: white; background: #333; }
.live-section { background: var(--paper-2); }
.live-grid { display: grid; grid-template-columns: 1fr; gap: 70px; align-items: center; }
.live-photo { border-radius: 24px; height: 580px; object-fit: cover; object-position: center 35%; }
.live-section h2 { margin-top: 18px; }
.live-section .btn { margin-top: 18px; }
.live-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 32px 0; }
.live-gallery figure { margin: 0; }
.live-gallery img { height: 330px; object-fit: cover; border-radius: 18px; }
.live-gallery figcaption { font-size: 13px; color: #66625d; padding-top: 10px; }
.quote-section .quote-grid { align-items: center; }
.enquiry-card { padding: 40px; border-radius: 24px; color: var(--ink); background: var(--paper); }
.enquiry-card h3 { font-size: 36px; margin-bottom: 20px; }
.enquiry-card p { color: #5f5c57; }
.enquiry-card .btn { margin-top: 12px; }
[class^="fullPage"] { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 540px; padding: 170px max(24px,calc((100% - 1240px)/2)) 64px; color: white; background-size: cover; background-position: center; isolation: isolate; }
[class^="fullPage"]::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg,rgba(16,17,18,.25),rgba(16,17,18,.8)); }
[class^="fullPage"] h1 { font-size: clamp(52px,7vw,94px); max-width: 1000px; }
[class^="fullPage"] h2 { font-family: "DM Sans",sans-serif; font-size: clamp(17px,2vw,22px); line-height: 1.6; letter-spacing: 0; max-width: 800px; margin-top: 24px; color: #e5e0d8; }
.fullPage1 { background-image: url('../img/dog1.jpg'); }
.fullPage2 { background-image: url('../img/dog2.jpg'); }
.fullPage4 { background-image: url('../img/web/live-saxophone-evening.jpeg'); background-position: center 42%; }
.fullPage5 { background-image: url('../img/dog5.jpg'); }
.fullPage6 { background-image: url('../img/dog6.jpg'); }
.onePage { width: min(calc(100% - 48px),1240px); margin: 0 auto; padding: 80px 0; }
.maxWidth1000 { max-width: 1000px; margin: 0 auto; }
.onePage h2 { font-size: clamp(32px,4vw,52px); line-height: 1.12; margin: 48px 0 22px; }
.onePage h2:first-child { margin-top: 0; }
.onePage h3 { font-size: clamp(30px,4vw,48px); line-height: 1.15; margin: 0 0 24px; }
.onePage p { color: #5f5c57; font-size: 17px; margin-bottom: 28px; }
.onePage .grid-x { gap: 0; }
.onePage .small-6 { padding: 8px; }
.onePage .small-6 img { height: 310px; object-fit: cover; border-radius: 18px; }
.onePage ul { margin: 0; padding: 0; list-style: none; }
.onePage li { padding: 12px 0; border-bottom: 1px solid var(--line); color: #5f5c57; font-size: 15px; }
.onePage .medium-4 { padding: 0 20px; }
.callout.secondary { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 32px; margin-bottom: 22px; }
.callout h6 { color: #8a6835; font-weight: 700; font-size: 16px; margin-bottom: 18px; }
.callout p { margin-bottom: 0; }
.fancyButton { display: inline-block; border: 0; border-radius: 999px; padding: 16px 26px; background: var(--gold); color: var(--ink); font-size: 15px; font-weight: 700; cursor: pointer; }
.fancyButton:hover { background: var(--gold-2); color: var(--ink); }
label { color: var(--ink); font-size: 13px; margin-bottom: 20px; letter-spacing: 0; }
label input { margin-top: 8px; height: auto; box-shadow: none; }
.required { color: #a73828; }
input.error { border-color: #a73828; box-shadow: 0 0 0 2px rgba(167,56,40,.15); }
.message { display: none; position: fixed; z-index: 40; top: 98px; left: 24px; right: 24px; margin: auto; max-width: 650px; padding: 20px; border-radius: 12px; background: #fff; color: #a73828; border: 1px solid #a73828; }
.message.visible { display: block; }
.quote-page-intro { width: min(calc(100% - 48px),1200px); margin: 64px auto 0; }
.quote-page-intro p { color: #5f5c57; max-width: 720px; }
#aspnetForm .quote-form { margin-top: 32px; margin-bottom: 80px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.quote-form .medium-6 { padding: 8px; }
.quote-form .fullWidth { width: auto; }
.contact-card { padding: 40px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.contact-card a { text-decoration: underline; text-underline-offset: 4px; }
.footer-inner { flex-wrap: wrap; }
.footer-links { flex-wrap: wrap; }
.footer-credit { width: 100%; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
@media(max-width:900px) {
 .hero { min-height: 800px; height: auto; }
 .hero-content { padding-top: 170px; }
 .hero h1 { font-size: clamp(58px,10vw,90px); }
 .hero-bottom { display: block; }
 .hero-actions { margin-top: 28px; }
 .live-grid { grid-template-columns: 1fr; gap: 32px; }
 .live-photo { height: 520px; }
 .live-gallery { grid-template-columns: repeat(2,1fr); }
 [class^="fullPage"] { min-height: 480px; }
}
@media(max-width:600px) {
 section { padding: 70px 0; }
 .hero { min-height: 760px; }
 .hero-content { padding: 150px 0 46px; }
 .hero h1 { font-size: clamp(48px,12vw,68px); }
 .eyebrow { font-size: 10px; letter-spacing: .12em; }
 .hero-copy { font-size: 17px; }
 .hero-actions .btn { padding: 14px 18px; }
 .trust-item { padding: 22px 12px; }
 .trust-item:first-child { padding-left: 12px; }
 .event-card { min-height: 460px; }
 .event-copy { padding: 24px; }
 .event-copy h3 { font-size: 32px; }
 .live-photo { height: 430px; }
 .live-gallery { gap: 12px; }
 .live-gallery img { height: 245px; }
 .promise-media { min-height: 450px; }
 .onePage { padding: 48px 0; }
 .onePage .small-6 img { height: 180px; }
 .onePage .medium-4 { padding: 0; }
 .callout.secondary,.contact-card,.enquiry-card { padding: 24px; }
 .quote-form .medium-6 { padding: 0; }
 [class^="fullPage"] { min-height: 430px; padding-top: 150px; padding-bottom: 42px; }
 .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media(prefers-reduced-motion:reduce) {
 html { scroll-behavior: auto; }
 *,*::before,*::after { transition: none !important; animation: none !important; }
}
/* Finish integration with Foundation defaults. */
.hero-content { width: min(calc(100% - 40px), var(--max)); }
.nav-links .nav-cta[aria-current="page"] { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.quote-form input[type="text"] { height: auto; padding: 14px 15px; border: 1px solid #d9d5ce; background: #faf8f4; border-radius: 12px; box-shadow: none; margin-bottom: 0; }
.quote-form input[type="text"]:focus { border-color: #9c7440; box-shadow: 0 0 0 3px rgba(232,180,95,.16); }
.quote-form input[type="text"].error { border-color: #a73828; box-shadow: 0 0 0 2px rgba(167,56,40,.15); }
.quote-copy > p { margin-top: 24px; }
.enquiry-card .form-note { margin-top: 18px; font-size: 13px; }

/* Alphabetical venue directory; native anchors also work without JavaScript. */
.venue-directory { padding: 80px 0; }
.venue-intro { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.venue-intro h2 { font-size: clamp(40px,5vw,68px); margin-top: 16px; }
.venue-intro p { max-width: 600px; margin-top: 20px; color: #5f5c57; }
.venue-total { flex-shrink: 0; text-align: right; color: #8a6835; font-family: "Playfair Display",serif; font-size: 64px; line-height: 1; }
.venue-total > span { display: block; font: 12px/1.5 "DM Sans",sans-serif; text-transform: uppercase; letter-spacing: .1em; margin-top: 12px; }
.venue-alphabet { position: sticky; top: 86px; z-index: 10; display: grid; grid-template-columns: repeat(27,minmax(0,1fr)); gap: 2px; padding: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 8px 24px rgba(16,17,18,.04); }
.venue-alphabet a,.venue-alphabet > span { display: flex; align-items: center; justify-content: center; min-height: 42px; border-radius: 8px; font-size: 13px; font-weight: 700; }
.venue-alphabet a:hover,.venue-alphabet a:focus-visible { background: var(--gold); color: var(--ink); }
.venue-letter-empty { color: #aaa59d; }
.venue-group { display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 40px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 190px; }
.venue-letter h3 { font-size: 58px; color: #8a6835; }
.venue-letter > span { display: block; margin-top: 12px; color: #6f6b65; font-size: 12px; }
.venue-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; align-content: start; }
.venue-list li { display: flex; align-items: center; padding: 18px 20px; border: 1px solid var(--line); background: rgba(255,255,255,.65); border-radius: 12px; color: #45423d; font-size: 15px; line-height: 1.5; overflow-wrap: anywhere; }
.venue-enquiry { margin-top: 56px; padding: 36px; border-radius: 20px; background: var(--paper-2); display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.venue-enquiry h2 { font-size: 36px; line-height: 1.15; }
.venue-enquiry p { color: #5f5c57; max-width: 600px; margin: 16px 0 0; }
.venue-enquiry .btn { flex-shrink: 0; }
@media(max-width:1000px) {
 .venue-alphabet { grid-template-columns: repeat(14,minmax(0,1fr)); }
 .venue-group { scroll-margin-top: 235px; grid-template-columns: 80px 1fr; gap: 20px; }
 .venue-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media(max-width:600px) {
 .venue-directory { padding: 48px 0; }
 .venue-intro { align-items: flex-start; gap: 18px; }
 .venue-intro h2 { font-size: 40px; }
 .venue-total { font-size: 44px; padding-top: 28px; }
 .venue-total > span { max-width: 80px; font-size: 10px; }
 .venue-alphabet { grid-template-columns: repeat(7,minmax(0,1fr)); padding: 8px; gap: 2px; }
 .venue-alphabet a,.venue-alphabet > span { min-height: 38px; }
 .venue-group { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; scroll-margin-top: 290px; }
 .venue-letter { display: flex; gap: 16px; align-items: center; }
 .venue-letter h3 { font-size: 44px; }
 .venue-letter > span { margin-top: 0; }
 .venue-list { grid-template-columns: 1fr; gap: 8px; }
 .venue-list li { padding: 16px 18px; }
 .venue-enquiry { padding: 24px; flex-direction: column; align-items: flex-start; }
 .venue-enquiry h2 { font-size: 30px; }
}

.brand-logo { display: block; width: 64px; height: 58px; object-fit: contain; flex-shrink: 0; }
footer .brand-logo { width: 56px; height: 52px; }
@media(max-width:600px) { .brand-logo { width: 52px; height: 50px; } }
.venue-directory { scroll-margin-top: 110px; }
.venue-group:target .venue-letter h3 { color: var(--ink); }

/* Reviews: a featured story and an alternating editorial grid. */
.reviews-section { padding: 80px 0; }
.reviews-intro { display: flex; justify-content: space-between; gap: 32px; align-items: center; margin-bottom: 48px; }
.reviews-intro h2 { font-size: clamp(44px,5vw,72px); }
.reviews-intro h2 em { color: #8a6835; }
.review-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; padding: 48px; border: 1px solid var(--line); background: white; border-radius: 24px; }
.review-pullquote { align-self: center; }
.review-pullquote p { margin: 22px 0 0; font-family: "Playfair Display",serif; font-size: clamp(30px,3.2vw,44px); line-height: 1.22; letter-spacing: -.025em; }
.review-feature-story { border-left: 1px solid var(--line); padding-left: 40px; }
.reviews-section .review-text { margin: 0; padding: 0; border: 0; color: #45423d; }
.reviews-section .review-text p { margin: 0; font-size: 16px; line-height: 1.8; color: inherit; }
.review-author { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.review-initials { display: grid; place-items: center; flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--paper-2); color: #705225; font-size: 12px; font-weight: 700; }
.review-author h3 { font-family: "DM Sans",sans-serif; font-size: 14px; font-weight: 700; line-height: 1.6; letter-spacing: 0; margin: 0; color: #705225; }
.reviews-mosaic { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); gap: 28px; align-items: start; margin-top: 40px; }
.review-card { padding: 36px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.review-wide { grid-column: span 7; }
.review-narrow { grid-column: span 5; }
.review-offset { margin-top: 48px; }
.review-story { grid-column: span 8; margin-top: 24px; }
.review-mark { display: block; color: #cfa04e; font-family: "Playfair Display",serif; font-size: 80px; height: 50px; line-height: 1; margin-bottom: 20px; }
.review-photo { grid-column: span 4; position: relative; align-self: stretch; min-height: 440px; border-radius: 24px; margin: 0; overflow: hidden; }
.review-photo img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; object-position: 56% center; }
.review-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(16,17,18,.78)); }
.review-photo figcaption { position: absolute; bottom: 28px; left: 28px; right: 28px; z-index: 1; color: white; font-family: "Playfair Display",serif; font-size: 32px; line-height: 1.15; }
.reviews-next { margin-top: 72px; display: grid; grid-template-columns: 1fr 1fr; border-radius: 24px; overflow: hidden; background: var(--paper-2); }
.reviews-next > img { height: 100%; min-height: 380px; object-fit: cover; }
.reviews-next > div { padding: 48px; align-self: center; }
.reviews-next h2 { font-size: clamp(32px,3.5vw,48px); line-height: 1.1; margin-top: 18px; }
.reviews-next p { font-size: 16px; color: #5f5c57; margin: 22px 0 24px; }
@media(max-width:1000px) {
 .review-feature { gap: 32px; padding: 32px; }
 .review-feature-story { padding-left: 28px; }
 .review-card { padding: 28px; }
 .reviews-mosaic { gap: 20px; }
 .reviews-next > div { padding: 32px; }
}
@media(max-width:700px) {
 .reviews-section { padding: 56px 0; }
 .reviews-intro { display: block; margin-bottom: 32px; }
 .reviews-intro h2 { margin-top: 20px; font-size: 48px; }
 .review-feature { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
 .review-pullquote p { font-size: 32px; }
 .review-feature-story { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; }
 .reviews-mosaic { grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }
 .review-wide,.review-narrow,.review-story,.review-photo { grid-column: auto; }
 .review-offset,.review-story { margin-top: 0; }
 .review-photo { min-height: 380px; }
 .reviews-next { grid-template-columns: 1fr; margin-top: 40px; }
 .reviews-next > img { height: 260px; min-height: 0; }
 .reviews-next > div { padding: 28px; }
}
