:root {
  --ink: #0e1820;
  --ink-soft: #3a4a55;
  --ink-mute: #67737d;
  --paper: #fafaf7;
  --paper-warm: #f5f1e8;
  --cream: #fdfcf7;
  --line: rgba(14, 24, 32, 0.10);
  --line-soft: rgba(14, 24, 32, 0.05);
  --brand: #143b56;          /* deep marine — hotel-luxe credibility */
  --brand-deep: #0a2638;
  --brand-soft: #e6edf2;
  --gold: #b8923a;            /* UKAS / hotel brass accent */
  --gold-deep: #8c6e26;
  --terracotta: #c75d3e;
  --pass: #3d7a4f;
  --warn: #b8923a;
  --fail: #c75d3e;
  --shadow-1: 0 1px 2px rgba(14,24,32,0.04), 0 6px 18px rgba(14,24,32,0.06);
  --shadow-2: 0 2px 6px rgba(14,24,32,0.06), 0 24px 48px rgba(14,24,32,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }

a { color: var(--brand); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }

img, svg { display: block; max-width: 100%; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   TOP UTILITY BAR (phone, email, social, client portal)
   ============================================================ */
.utility-bar {
  background: var(--brand-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
}
.utility-left { display: flex; gap: 28px; align-items: center; }
.utility-left a {
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.utility-left a:hover { color: #fff; }
.utility-left svg { width: 14px; height: 14px; opacity: 0.85; }
.utility-right { display: flex; gap: 16px; align-items: center; }
.utility-right .ukas-strip {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.utility-right .ukas-strip::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============================================================
   PRIMARY HEADER
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(14,24,32,0.02);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.logo {
  display: flex; align-items: center; gap: 14px;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  position: relative;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}
.logo-mark span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.logo-text .a {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo-text .a em { font-style: italic; color: var(--brand); }
.logo-text .b {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
  font-weight: 500;
}

nav.primary > ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
nav.primary > ul > li { position: relative; }
nav.primary > ul > li > a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
}
nav.primary > ul > li > a:hover { background: var(--paper-warm); color: var(--brand); }
nav.primary > ul > li.has-children > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
  transition: transform 0.2s;
}
nav.primary > ul > li.has-children:hover > a::after {
  transform: rotate(225deg) translateY(2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  min-width: 280px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  list-style: none;
}
nav.primary > ul > li.has-children:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
}
.dropdown li a:hover { background: var(--paper-warm); color: var(--brand); }
.dropdown li.heading {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 12px 14px 6px;
  font-weight: 600;
}

.btn-quote {
  background: var(--terracotta);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: 1px solid var(--terracotta);
}
.btn-quote:hover { background: #b04e30; border-color: #b04e30; color: #fff !important; transform: translateY(-1px); }

.mobile-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--brand-deep) 0%, var(--brand) 60%, #1d4d6e 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184,146,58,0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(20,59,86,0.5), transparent 55%);
  pointer-events: none;
}
/* Subtle architectural grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 110px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px; background: var(--gold);
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  border: 1px solid var(--terracotta);
}
.btn-primary:hover { background: #b04e30; border-color: #b04e30; color: #fff; transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); color: #fff; }

/* Hero trust strip */
.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; flex-direction: column; gap: 4px; }
.hero-trust-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-num em { font-style: italic; }
.hero-trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}

/* Hero credential card / right column */
.hero-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow-2);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.4;
}
.hero-card-head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.ukas-stamp {
  width: 64px; height: 64px;
  border: 2.5px solid var(--gold-deep);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--cream);
  flex-shrink: 0;
  position: relative;
}
.ukas-stamp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.ukas-stamp .a {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--brand-deep);
  line-height: 1;
}
.ukas-stamp .b {
  font-size: 7px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  margin-top: 3px;
  font-weight: 600;
}
.hero-card-head h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-card-head p {
  font-size: 13px;
  color: var(--ink-mute);
}
.hero-card-list { list-style: none; }
.hero-card-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
  font-size: 14px;
}
.hero-card-list li:last-child { border-bottom: 0; }
.hero-card-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' fill='none' stroke='%23143b56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.hero-card-list li strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }
.hero-card-list li span { color: var(--ink-mute); font-size: 13px; line-height: 1.4; }

/* ============================================================
   QUICK-LINK INTRO CARDS (sliptest.info style row)
   ============================================================ */
.intro-cards {
  margin-top: -56px;
  position: relative;
  z-index: 5;
  padding-bottom: 80px;
}
.intro-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.intro-card {
  padding: 36px 32px;
  position: relative;
  border-right: 1px solid var(--line);
  transition: background 0.25s;
}
.intro-card:last-child { border-right: 0; }
.intro-card:hover { background: var(--paper-warm); }
.intro-card-icon {
  width: 48px; height: 48px;
  background: var(--brand);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}
.intro-card-icon svg { width: 24px; height: 24px; }
.intro-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.intro-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.intro-card-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.intro-card-link svg { transition: transform 0.25s; }
.intro-card:hover .intro-card-link svg { transform: translateX(4px); }

/* ============================================================
   GENERAL SECTION
   ============================================================ */
section { position: relative; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.section-head.center .section-eyebrow::before { display: inline-block; }
.section-head h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-head h2 em { font-style: italic; color: var(--brand); }
.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   "WHO WE ARE" — long-format opening (sliptest pattern)
   ============================================================ */
.who-section { background: #fff; border-bottom: 1px solid var(--line); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.who-kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.who-grid h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.who-grid h2 em { font-style: italic; color: var(--brand); }
.who-grid p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}
.who-grid p strong { color: var(--ink); font-weight: 600; }

/* Stat panel */
.stat-panel {
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.stat-panel::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(184,146,58,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.stat-row:first-of-type { padding-top: 16px; }
.stat-row:last-of-type { border-bottom: 0; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 130px;
}
.stat-num em { font-style: italic; color: var(--gold); }
.stat-num .unit { font-size: 22px; vertical-align: super; color: var(--gold); margin-left: 4px; }
.stat-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.stat-text strong { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; }

/* ============================================================
   FOUR VALUE-PROP QUAD (sliptest pattern)
   ============================================================ */
.quad-section { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.quad-item {
  position: relative;
  padding-left: 72px;
}
.quad-item-num {
  position: absolute;
  left: 0; top: 4px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1;
  width: 56px;
  border-right: 1px solid var(--gold);
  padding-right: 12px;
}
.quad-item h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.quad-item h3 em { font-style: italic; color: var(--brand); }
.quad-item p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================================
   SERVICES TILES (sliptest pattern with imagery)
   ============================================================ */
.services-section { background: #fff; border-bottom: 1px solid var(--line); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  cursor: pointer;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}
.service-img {
  aspect-ratio: 4/3;
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.service-img svg {
  width: 100%;
  height: 100%;
  display: block;
}
.service-body { padding: 24px 22px; flex-grow: 1; display: flex; flex-direction: column; }
.service-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.service-tile h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-tile h3 em { font-style: italic; color: var(--brand); }
.service-tile p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}
.service-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.service-meta span { display: inline-flex; align-items: center; gap: 5px; }
.service-meta span::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   PROCESS — 4-step horizontal (no need for big aside)
   ============================================================ */
.process-section { background: var(--brand-deep); color: #fff; }
.process-section .section-head h2 { color: #fff; }
.process-section .section-head h2 em { color: var(--gold); }
.process-section .section-eyebrow { color: var(--gold); }
.process-section .section-head p { color: rgba(255,255,255,0.7); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  opacity: 0.4;
}
.process-step {
  padding: 0 24px;
  position: relative;
}
.process-step:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); }
.process-step-num {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 12px auto 24px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.55;
}

/* ============================================================
   PTV TABLE (visual aid)
   ============================================================ */
.ptv-section { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.ptv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ptv-grid .text h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ptv-grid .text h2 em { font-style: italic; color: var(--brand); }
.ptv-grid .text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}
.ptv-table {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line);
}
.ptv-table-head {
  background: var(--brand);
  color: #fff;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.ptv-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 16px;
  padding: 22px 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.ptv-row:first-child { border-top: 0; }
.ptv-band {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
}
.ptv-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.ptv-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ptv-pill.fail { background: rgba(199,93,62,0.12); color: var(--fail); }
.ptv-pill.warn { background: rgba(184,146,58,0.15); color: var(--gold-deep); }
.ptv-pill.pass { background: rgba(61,122,79,0.15); color: var(--pass); }

/* ============================================================
   ACCREDITATION BADGES STRIP
   ============================================================ */
.badges-section {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.badges-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
  font-weight: 600;
}
.badges-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 56px;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  opacity: 0.8;
  transition: opacity 0.25s;
}
.badge:hover { opacity: 1; }
.badge-mark {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--brand);
  line-height: 1;
}
.badge-mark em { font-style: italic; color: var(--gold-deep); }
.badge-name {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section { background: var(--paper); padding: 100px 0; border-bottom: 1px solid var(--line); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
}
.testimonial-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 80px;
  line-height: 0.7;
  color: var(--gold);
  position: absolute;
  top: 24px; left: 24px;
  opacity: 0.4;
}
.testimonial-stars {
  display: flex; gap: 4px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.testimonial-stars span { color: var(--gold); font-size: 16px; }
.testimonial-text {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.testimonial-attribution {
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-role {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ============================================================
   Q&A (SEO) SECTION
   ============================================================ */
.qa-section { background: var(--paper-warm); padding: 100px 0; border-bottom: 1px solid var(--line); }
.qa-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.qa-toc {
  position: sticky; top: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px;
}
.qa-toc h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.qa-toc ul { list-style: none; }
.qa-toc li {
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.4;
}
.qa-toc a {
  color: var(--ink-soft);
  font-weight: 500;
}
.qa-toc a:hover { color: var(--brand); }

.qa-list { display: flex; flex-direction: column; gap: 0; }
.qa-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.qa-block:first-child { padding-top: 0; }
.qa-block h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.qa-block h3 em { font-style: italic; color: var(--brand); }
.qa-block p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.qa-block p:last-child { margin-bottom: 0; }
.qa-block ul {
  list-style: none;
  margin: 16px 0;
}
.qa-block ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.qa-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 14px; height: 1.5px;
  background: var(--gold);
}
.qa-block ul li strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage-section { background: #fff; padding: 100px 0; border-bottom: 1px solid var(--line); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.coverage-grid .text h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.coverage-grid .text h2 em { font-style: italic; color: var(--brand); }
.coverage-grid .text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}
.coverage-list {
  columns: 3;
  column-gap: 24px;
  list-style: none;
  font-size: 14px;
  margin-top: 28px;
}
.coverage-list li {
  padding: 7px 0;
  break-inside: avoid;
  color: var(--ink-soft);
  display: flex; gap: 8px; align-items: center;
}
.coverage-list li::before {
  content: ''; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}

.uk-map {
  background: var(--paper-warm);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enquiry-section {
  background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.enquiry-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,146,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.enquiry-aside h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #fff;
}
.enquiry-aside h2 em { font-style: italic; color: var(--gold); }
.enquiry-aside .section-eyebrow { color: var(--gold); }
.enquiry-aside .section-eyebrow::before { background: var(--gold); }
.enquiry-aside p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 32px;
}
.enquiry-contact {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 28px;
  margin-top: 28px;
}
.enquiry-contact h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
}
.enquiry-contact a, .enquiry-contact p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
}
.enquiry-contact a:hover { color: var(--gold); }
.enquiry-contact p { font-size: 15px; color: rgba(255,255,255,0.7); font-family: 'Inter Tight', sans-serif; line-height: 1.5; }

form.enquiry {
  background: var(--cream);
  color: var(--ink);
  padding: 48px 44px;
  border-radius: 8px;
  box-shadow: var(--shadow-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field label .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  border-radius: 4px;
  transition: all 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(20,59,86,0.08);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230e1820' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 6px; }
.checkbox-grid label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; letter-spacing: 0; text-transform: none;
  color: var(--ink); font-weight: 400;
  cursor: pointer; padding: 6px 0;
}
.checkbox-grid input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand); }
.btn-submit {
  width: 100%;
  background: var(--terracotta);
  color: #fff;
  border: 0;
  padding: 16px 32px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 8px;
  transition: all 0.25s;
}
.btn-submit:hover { background: #b04e30; transform: translateY(-1px); }
.form-disclaimer {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   FOOTER (sliptest pattern: 4 columns, links, social, legal)
   ============================================================ */
footer {
  background: #08161f;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-brand .logo .logo-text .a { color: #fff; }
.footer-brand .logo .logo-text .a em { color: var(--gold); }
.footer-brand .logo .logo-text .b { color: rgba(255,255,255,0.5); }
.footer-brand p {
  font-size: 14px;
  margin: 24px 0;
  line-height: 1.65;
  max-width: 380px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.8); }
.footer-social a:hover svg { color: var(--brand-deep); }

footer h5 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}
footer a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom em { color: var(--gold); font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 72px 0 90px; }
  .who-grid { grid-template-columns: 1fr; gap: 56px; }
  .quad-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; }
  .process-grid::before { display: none; }
  .ptv-grid { grid-template-columns: 1fr; gap: 48px; }
  .qa-layout { grid-template-columns: 1fr; gap: 48px; }
  .qa-toc { position: static; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-list { columns: 2; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .utility-bar { display: none; }
  .utility-left { gap: 20px; }
  nav.primary > ul { display: none; }
  nav.primary.open > ul {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    gap: 0;
    align-items: stretch;
    box-shadow: var(--shadow-2);
  }
  nav.primary.open > ul > li > a { padding: 14px 16px; }
  nav.primary.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 24px; }
  .mobile-toggle { display: block; }
  .header-inner > .btn-quote { display: none; }

  .hero-inner { padding: 56px 0 72px; }
  .intro-cards { margin-top: -32px; padding-bottom: 56px; }
  .intro-cards-grid { grid-template-columns: 1fr; }
  .intro-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .intro-card:last-child { border-bottom: 0; }

  .section-pad { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .stat-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px 0; }
  .stat-num { min-width: 0; font-size: 48px; }
  .stat-panel { padding: 32px 28px; }

  .quad-item { padding-left: 0; padding-top: 56px; }
  .quad-item-num { left: 0; top: 0; border-right: 0; border-bottom: 1px solid var(--gold); padding: 0 0 8px; width: auto; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-step { border-right: 0 !important; padding: 0; }

  .ptv-table-head, .ptv-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
  .ptv-band { font-size: 22px; }

  .badges-strip { gap: 32px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .coverage-list { columns: 1; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  form.enquiry { padding: 32px 24px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Reveal animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
/* ============================================================
   LOCATION PAGE — additional styles
   ============================================================ */

.hero-breadcrumb {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-breadcrumb:hover { color: var(--gold); }
.hero-breadcrumb strong { color: #fff; font-weight: 500; }

.hero-loc { padding-top: 0; }

/* Properties section */
.properties-section { background: #fff; border-bottom: 1px solid var(--line); }
.properties-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.properties-list li {
  padding: 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  transition: background 0.25s;
}
.properties-list li:hover { background: var(--paper-warm); }
.property-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold-deep);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
.properties-list p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  padding-top: 4px;
}

/* Risk pattern section */
.risk-section { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.risk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
}
.risk-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); border-color: var(--gold); }
.risk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px;
  width: 32px; height: 3px;
  background: var(--gold);
}
.risk-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  padding-top: 16px;
}
.risk-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* Case study section */
.case-section {
  background: var(--brand);
  color: #fff;
  border-top: 1px solid var(--line);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.case-aside .section-eyebrow { color: var(--gold); }
.case-aside .section-eyebrow::before { background: var(--gold); }
.case-aside h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.case-aside h2 em { font-style: italic; color: var(--gold); }
.case-aside p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.65;
}
.case-body {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
}
.case-body::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 100px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.4;
}
.case-body h3 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  padding-top: 20px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}
.case-body p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.case-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  position: relative;
  z-index: 2;
  transition: all 0.2s;
}
.case-cta:hover { color: #fff; border-color: #fff; }

/* Adjacent counties */
.adj-section { background: #fff; padding: 56px 0 80px; }
.adj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.adj-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s;
  position: relative;
}
.adj-card:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
}
.adj-card:hover .adj-label { color: var(--gold); }
.adj-card:hover .adj-arrow { color: var(--gold); transform: translateX(4px); }
.adj-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  transition: color 0.25s;
}
.adj-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: inherit;
  letter-spacing: -0.01em;
}
.adj-arrow {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 18px;
  color: var(--brand);
  transition: all 0.25s;
}

/* Mobile polish */
@media (max-width: 1100px) {
  .properties-list { grid-template-columns: 1fr; }
  .risk-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .properties-list li { padding: 24px 20px; }
  .case-body { padding: 32px 24px; }
}

/* ============================================================
   ZOHO FORMS IFRAME
   ============================================================ */
.enquiry-iframe-wrap {
  background: var(--cream);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.enquiry-iframe-wrap iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 720px) {
  .enquiry-iframe-wrap { padding: 8px; }
  .enquiry-iframe-wrap iframe { min-height: 820px; }
}
