/*
Theme Name: Gold Standard PM
Theme URI: https://goldstandardpm.org
Author: QodeHive
Author URI: https://qodehive.com
Description: Bespoke theme for Gold Standard Property Management. Dark navy and gold editorial direction, Cormorant Garamond display over DM Sans body, self-hosted fonts.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: goldstandard-pm
*/


  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #8B6914;
    --black: #0C1220;
    --charcoal: #131D2E;
    --slate: #1E2D42;
    --warm-white: #E8ECF2;
    --cream: #EDE8DF;
    --text-muted: #7D879B;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--warm-white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--warm-white); }
  .nav-tabs {
    display: flex; gap: 0.3rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50px;
    padding: 0.3rem;
  }
  .nav-tab {
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--warm-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  .nav-tab:hover { color: var(--gold); }
  .nav-tab.active {
    background: var(--gold);
    color: var(--black);
  }
  .nav-cta {
    padding: 0.6rem 1.6rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }

  /* ── SECTIONS ── */
  .section { display: block; }
  .section.active { display: block; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 4rem 4rem;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%),
      var(--black);
  }
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      repeating-linear-gradient(90deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 80px),
      repeating-linear-gradient(0deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 80px);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 680px;
    animation: fadeUp 0.9s ease forwards;
  }
  .hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 2rem;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--warm-white);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(248,244,238,0.7);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    padding: 0.9rem 2.2rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--warm-white);
    border: 1px solid rgba(248,244,238,0.3);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-right {
    position: absolute; right: 4rem; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 1rem;
    z-index: 2;
    animation: fadeLeft 1s ease 0.3s forwards;
    opacity: 0;
  }
  .service-card-mini {
    width: 280px;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .service-card-mini::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
  }
  .service-card-mini:hover::before { transform: scaleY(1); }
  .service-card-mini:hover { 
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.5);
    transform: translateX(-4px);
  }
  .card-mini-icon {
    font-size: 1.6rem; margin-bottom: 0.6rem;
  }
  .card-mini-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.3rem;
  }
  .card-mini-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .card-arrow {
    position: absolute; right: 1.2rem; top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .service-card-mini:hover .card-arrow { opacity: 1; }

  /* ── STATS BAR ── */
  .stats-bar {
    background: rgba(201,168,76,0.08);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 2rem 4rem;
    display: flex; justify-content: space-around; align-items: center;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
  }

  /* ── CONTENT SECTIONS ── */
  .content-section {
    padding: 6rem 4rem;
  }
  .section-header {
    margin-bottom: 4rem;
  }
  .section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--warm-white);
    margin-bottom: 1rem;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-sub {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(248,244,238,0.65);
    max-width: 600px;
    font-weight: 300;
  }
  .gold-line {
    width: 60px; height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
  }

  /* ── SERVICED ACCOM SECTION ── */
  .sa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .sa-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .sa-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .sa-card:hover::after { transform: scaleX(1); }
  .sa-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.04); }
  .sa-card.featured {
    grid-column: span 2;
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .sa-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .sa-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.7rem;
  }
  .sa-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(248,244,238,0.6);
    font-weight: 300;
  }
  .sa-featured-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--warm-white);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .sa-featured-content h2 em { color: var(--gold); font-style: italic; }
  .sa-checklist {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.6rem;
    margin: 1.2rem 0;
  }
  .sa-checklist li {
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.85rem;
    color: rgba(248,244,238,0.75);
  }
  .sa-checklist li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
  }
  .sa-featured-visual {
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
  }
  .sa-featured-visual .big-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: block;
  }
  .sa-featured-visual p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(201,168,76,0.8);
  }

  /* Guest types */
  .guest-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 3rem 0;
  }
  .guest-type {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .guest-type:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.3);
  }
  .guest-type .icon { font-size: 2rem; margin-bottom: 0.7rem; }
  .guest-type h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.4rem;
  }
  .guest-type p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* Enquiry form */
  .enquiry-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 3rem;
    max-width: 700px;
  }
  .enquiry-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.5rem;
  }
  .enquiry-form p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    color: var(--warm-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s ease;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: var(--charcoal); }
  .form-group textarea { resize: vertical; min-height: 100px; }

  /* ── SOCIAL HOUSING ── */
  .sh-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
  }
  .sh-features {
    display: flex; flex-direction: column; gap: 1.5rem;
  }
  .sh-feature {
    display: flex; gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .sh-feature:hover {
    background: rgba(201,168,76,0.05);
    border-color: rgba(201,168,76,0.3);
  }
  .sh-feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  .sh-feature h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.4rem;
  }
  .sh-feature p { font-size: 0.82rem; line-height: 1.6; color: var(--text-muted); font-weight: 300; }

  .sh-right {}
  .sh-highlight-box {
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
  }
  .sh-highlight-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .sh-highlight-box p { font-size: 0.88rem; line-height: 1.8; color: rgba(248,244,238,0.7); font-weight: 300; }
  
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
  }
  .compare-table th {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
  }
  .compare-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(248,244,238,0.7);
    line-height: 1.5;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table .good { color: #7EC8A4; }
  .compare-table .bad { color: #E07070; }

  /* ── COMPLIANCE ── */
  .compliance-hero {
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 3rem 4rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }
  .compliance-hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 700;
    color: var(--warm-white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }
  .compliance-hero h2 em { color: var(--gold); font-style: italic; }
  .compliance-hero p { font-size: 0.9rem; line-height: 1.7; color: rgba(248,244,238,0.65); font-weight: 300; }
  .compliance-badge {
    text-align: center;
    background: rgba(201,168,76,0.1);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 2rem;
    min-width: 160px;
  }
  .compliance-badge .badge-icon { font-size: 3rem; margin-bottom: 0.5rem; display: block; }
  .compliance-badge p {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  .compliance-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .phase-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .phase-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
  }
  .phase-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 700;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .phase-date {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .phase-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.8rem;
  }
  .phase-items {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .phase-items li {
    font-size: 0.8rem;
    color: rgba(248,244,238,0.6);
    line-height: 1.5;
    padding-left: 1rem;
    position: relative;
  }
  .phase-items li::before {
    content: '—';
    position: absolute; left: 0;
    color: var(--gold);
    font-size: 0.7rem;
  }

  .compliance-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .comp-service {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  .comp-service:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-4px);
  }
  .comp-service .icon { font-size: 2.2rem; margin-bottom: 1rem; }
  .comp-service h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.6rem;
  }
  .comp-service p { font-size: 0.78rem; line-height: 1.6; color: var(--text-muted); }

  .penalty-banner {
    background: rgba(224,112,112,0.08);
    border: 1px solid rgba(224,112,112,0.3);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    display: flex; align-items: center; gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .penalty-banner .warn-icon { font-size: 2rem; flex-shrink: 0; }
  .penalty-banner h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600;
    color: #E07070;
    margin-bottom: 0.3rem;
  }
  .penalty-banner p { font-size: 0.82rem; color: rgba(248,244,238,0.65); line-height: 1.5; }

  /* ── FOOTER ── */
  footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand a img { height: 44px; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.82rem; line-height: 1.7; color: var(--text-muted); }
  .footer-col h5 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }
  .footer-col a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--warm-white); }
  .footer-bottom {
    padding: 1.5rem 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translate(30px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
  }

  /* Divider */
  .gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    margin: 0;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero-right { display: none; }
    nav { padding: 1rem 2rem; }
    .nav-tabs { display: none; }
    .hero { padding: 7rem 2rem 4rem; }
    .content-section { padding: 4rem 2rem; }
    .sa-grid { grid-template-columns: 1fr; }
    .sa-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .guest-types { grid-template-columns: repeat(2, 1fr); }
    .sh-split { grid-template-columns: 1fr; }
    .compliance-phases { grid-template-columns: 1fr; }
    .compliance-services { grid-template-columns: 1fr; }
    .compliance-hero { grid-template-columns: 1fr; text-align: center; }
    footer { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar { padding: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  /* Mobile nav pills */
  .mobile-nav {
    display: none;
    position: fixed;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background: rgba(26,26,26,0.95);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    padding: 0.5rem;
    gap: 0.2rem;
    backdrop-filter: blur(12px);
  }
  @media (max-width: 1024px) {
    .mobile-nav { display: flex; }
  }
  .mobile-tab {
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--warm-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
  }
  .mobile-tab.active { background: var(--gold); color: var(--black); }

/* Anchors reused as buttons */
a.btn-primary, a.btn-ghost, a.nav-cta, a.nav-tab, a.mobile-tab {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; cursor: pointer;
}
[data-href] { cursor: pointer; }

/* WordPress admin bar offset */
body.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar nav { top: 46px; } }

/* Fluent Forms: inherit the site's form styling */
.enquiry-form .fluentform .ff-el-group { margin-bottom: 1.2rem; }
.enquiry-form .fluentform .ff-el-input--label label {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem; display: block; font-weight: 400;
}
.enquiry-form .fluentform input[type=text],
.enquiry-form .fluentform input[type=email],
.enquiry-form .fluentform input[type=tel],
.enquiry-form .fluentform input[type=date],
.enquiry-form .fluentform input[type=number],
.enquiry-form .fluentform select,
.enquiry-form .fluentform textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 6px;
  padding: 0.8rem 1rem; color: var(--warm-white);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
}
.enquiry-form .fluentform textarea { min-height: 120px; resize: vertical; }
.enquiry-form .fluentform input:focus,
.enquiry-form .fluentform select:focus,
.enquiry-form .fluentform textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.06);
}
.enquiry-form .fluentform ::placeholder { color: rgba(232,236,242,0.35); }
.enquiry-form .fluentform select option { background: var(--charcoal); color: var(--warm-white); }
.enquiry-form .fluentform .ff-btn-submit {
  width: 100%; background: var(--gold); color: var(--black);
  border: none; border-radius: 6px; padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: background 0.25s ease;
}
.enquiry-form .fluentform .ff-btn-submit:hover { background: var(--gold-light); }
.enquiry-form .fluentform .ff-el-is-error input,
.enquiry-form .fluentform .ff-el-is-error select,
.enquiry-form .fluentform .ff-el-is-error textarea { border-color: #D9534F; }
.enquiry-form .fluentform .error, .enquiry-form .fluentform .text-danger {
  color: #E8908D; font-size: 0.78rem; margin-top: 0.3rem;
}
.enquiry-form .ff-message-success {
  border: 1px solid var(--gold); background: rgba(201,168,76,0.08);
  color: var(--warm-white); padding: 1.2rem; border-radius: 6px; font-size: 0.9rem;
}
.enquiry-form .fluentform .ff-el-group.ff-el-form-hide { display: none; }

/* Accessibility helpers */
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus {
  position: fixed !important; top: 0.5rem; left: 0.5rem; z-index: 200;
  width: auto; height: auto; clip: auto; clip-path: none;
  background: var(--gold); color: var(--black); padding: 0.7rem 1.2rem; border-radius: 4px;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Generic page / post body copy */
.gspm-prose { max-width: 68ch; font-size: 0.95rem; line-height: 1.8; color: rgba(232,236,242,0.8); }
.gspm-prose h2, .gspm-prose h3, .gspm-prose h4 {
  font-family: 'Cormorant Garamond', Georgia, serif; color: var(--warm-white);
  margin: 2.2rem 0 0.8rem; line-height: 1.15;
}
.gspm-prose p, .gspm-prose ul, .gspm-prose ol { margin-bottom: 1.1rem; }
.gspm-prose ul, .gspm-prose ol { padding-left: 1.4rem; }
.gspm-prose li { margin-bottom: 0.4rem; }
.gspm-prose a { color: var(--gold); }
.gspm-form-missing {
  border: 1px solid rgba(201,168,76,0.3); background: rgba(201,168,76,0.06);
  padding: 1.2rem; border-radius: 6px; font-size: 0.88rem; line-height: 1.7;
}
.gspm-form-missing a { color: var(--gold); }
.pagination, .nav-links { margin-top: 2.5rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pagination a, .pagination .current, .nav-links a, .nav-links .current {
  border: 1px solid rgba(201,168,76,0.25); padding: 0.5rem 0.9rem; border-radius: 4px;
  color: var(--warm-white); text-decoration: none; font-size: 0.85rem;
}
.pagination .current, .nav-links .current { background: var(--gold); color: var(--black); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
