/* SafariGen by Pencil: base, header, footer and shared component styles.
 * Section-specific styles live in sections.css. */

/* Self-hosted fonts (same faces as the original Google Fonts link). */
@font-face{font-family:Inter;font-style:normal;font-weight:400 800;font-display:swap;src:url(../fonts/inter-variable.woff2) format("woff2")}
@font-face{font-family:"JetBrains Mono";font-style:normal;font-weight:500 600;font-display:swap;src:url(../fonts/jetbrains-mono-variable.woff2) format("woff2")}

/* ==========================================================================
   Design tokens. Change the look of the whole site here.
   Names follow the SafariGen brand colour system (Golden Hour, v1.0).
   ========================================================================== */
:root {
  /* Core brand */
  --sg-primary:           #E8772E;  /* Sunset ember: main buttons, key actions */
  --sg-primary-hover:     #D4661F;
  --sg-primary-pressed:   #B34F12;
  --sg-primary-soft:      #FCE9DA;  /* soft orange tint */
  --sg-primary-tint:      #FFF8F2;  /* palest orange wash */
  --sg-on-primary:        #0F2A2E;  /* text on primary buttons */
  --sg-secondary:         #0F2A2E;  /* Savannah night: dark sections, header */
  --sg-secondary-pressed: #08191C;  /* deepest night: footer */
  --sg-accent:            #F2B544;  /* Acacia gold: small highlights only */
  --sg-accent-soft:       #FDF4DD;

  /* Backgrounds */
  --sg-bg:                #F6F1E7;  /* Sand: page background */
  --sg-surface:           #FFFFFF;  /* cards, panels, forms */
  --sg-surface-warm:      #FDFBF7;  /* off-white panels inside mockups */
  --sg-white:             #FFFFFF;  /* white text on the pressed primary button */

  /* Text */
  --sg-text:              #0F2A2E;
  --sg-text-body:         #3F3A33;  /* long-form text on plain pages */
  --sg-text-muted:        #6B6459;  /* Baobab stone */
  --sg-text-inverse:      #F6F1E7;  /* text on dark backgrounds */
  --sg-link:              #B34F12;
  --sg-link-hover:        #8A3D0E;

  /* Borders and focus */
  --sg-border:            #E4DCCB;
  --sg-border-warm:       #D2C7B1;  /* list and FAQ dividers */
  --sg-border-soft:       #F0EADF;  /* table rows inside mockups */
  --sg-border-strong:     #0F2A2E;
  --sg-focus:             #E8772E;

  /* Outline / subtle / disabled buttons */
  --sg-outline-hover:     #E9E3D6;
  --sg-subtle-text:       #8A3D0E;
  --sg-subtle-pressed:    #F3C9A8;
  --sg-disabled-text:     #A39C8F;

  /* Status */
  --sg-success-bg: #E3F1E8;  --sg-success: #1E5A3B;
  --sg-warning-bg: #FDF1D6;  --sg-warning: #7A4E08;
  --sg-error-bg:   #FBE5E2;  --sg-error:   #8E2A1F;
  --sg-info-bg:    #E2EEF4;  --sg-info:    #1D4E68;

  /* Image placeholder stripes */
  --sg-placeholder:       #EDE6D6;
  --sg-placeholder-line:  #C9BC9F;
  --sg-placeholder-text:  #8A8064;

  /* Same colours as R, G, B for see-through versions: rgba(var(--sg-bg-rgb), 0.78) */
  --sg-bg-rgb:            246, 241, 231;
  --sg-secondary-rgb:     15, 42, 46;
  --sg-primary-rgb:       232, 119, 46;
  --sg-accent-rgb:        242, 181, 68;

  /* Typography */
  --sg-font-sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --sg-font-mono: "JetBrains Mono", ui-monospace, monospace;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sg-bg);
  color: var(--sg-text);
  font-family: var(--sg-font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
*, *::before, *::after { box-sizing: border-box; }
a { color: var(--sg-link); text-decoration: none; }
:where(a):hover { color: var(--sg-link-hover); }
h1, h2, h3, h4, p { margin: 0; }
button, input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--sg-focus); outline-offset: 2px; }

@keyframes sgFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes sgDrift { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }
@keyframes sgRise { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

.sg-drift { animation: sgDrift 18s ease-in-out infinite alternate; }
.sg-float-a { animation: sgFloat 6s ease-in-out infinite; }
.sg-float-b { animation: sgFloat 7s ease-in-out 1.2s infinite; }
.sg-float-c { animation: sgFloat 5.5s ease-in-out 0.6s infinite; }
.sg-rise { animation: sgRise .7s ease-out both; }

/* ---------- image placeholder look (kept for future empty slots) ---------- */
.sg-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(135deg, var(--sg-placeholder), var(--sg-placeholder) 12px, var(--sg-border) 12px, var(--sg-border) 24px);
  border: 1px dashed var(--sg-placeholder-line);
  color: var(--sg-placeholder-text);
  font-family: var(--sg-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 10px;
}
.sg-img-ph[data-shape="circle"] { border-radius: 50%; }
.sg-avatar-img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

/* ---------- site header ---------- */
.site-header {
  background: rgba(var(--sg-secondary-rgb), 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(var(--sg-bg-rgb), 0.08);
  font-family: var(--sg-font-sans);
}
.sg-header-bar { max-width: 1280px; margin: 0 auto; height: 72px; padding: 0 clamp(20px, 4vw, 40px); display: flex; align-items: center; gap: 24px; }
.sg-logo { display: flex; align-items: center; gap: 10px; color: var(--sg-text-inverse); flex-shrink: 0; text-decoration: none; }
.sg-logo-mark { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(var(--sg-primary) 0 56%, var(--sg-secondary) 56% 63%, var(--sg-primary) 63% 73%, var(--sg-secondary) 73% 80%, var(--sg-primary) 80%); }
.sg-logo-text { font-size: 21px; font-weight: 700; letter-spacing: -0.03em; }
.sg-logo-accent { color: var(--sg-accent); }

.desktop-nav { display: none; align-items: center; gap: 2px; margin-left: 12px; }
.nav-link { color: rgba(var(--sg-bg-rgb), 0.82); font-size: 14.5px; font-weight: 500; padding: 8px 12px; border-radius: 8px; text-decoration: none; }
.nav-link:hover { color: var(--sg-text-inverse); background: rgba(var(--sg-bg-rgb), 0.06); }
.nav-link[aria-current="page"] { color: var(--sg-text-inverse); box-shadow: inset 0 -2px 0 var(--sg-primary); }

.feat-wrap { position: relative; }
.feat-toggle { display: flex; align-items: center; gap: 6px; background: transparent; border: 0; cursor: pointer; color: rgba(var(--sg-bg-rgb), 0.82); font-family: inherit; font-size: 14.5px; font-weight: 500; padding: 8px 12px; border-radius: 8px; }
.feat-toggle:hover { color: var(--sg-text-inverse); background: rgba(var(--sg-bg-rgb), 0.06); }
.feat-toggle[aria-current="page"] { color: var(--sg-text-inverse); box-shadow: inset 0 -2px 0 var(--sg-primary); }
.feat-chevron { display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -2px; transition: transform .15s; }
.feat-wrap[data-open="true"] .feat-chevron { transform: rotate(-135deg); }

.feat-menu { position: absolute; top: calc(100% + 12px); left: -24px; width: 600px; max-width: 90vw; background: var(--sg-surface); border-radius: 16px; box-shadow: 0 24px 60px -12px rgba(var(--sg-secondary-rgb), 0.35); border: 1px solid var(--sg-border); padding: 12px; display: none; }
.feat-wrap[data-open="true"] .feat-menu { display: block; }
.feat-menu ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.feat-menu li a { display: flex; gap: 12px; padding: 12px; border-radius: 10px; color: var(--sg-text); text-decoration: none; }
.feat-menu li a:hover { background: var(--sg-bg); color: var(--sg-text); }
.feat-menu li a .sg-menu-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sg-primary); margin-top: 6px; flex-shrink: 0; }
.feat-menu li a .sg-menu-txt { display: flex; flex-direction: column; gap: 2px; }
.feat-menu li a .sg-menu-name { font-size: 14px; font-weight: 600; }
.feat-menu li a .sg-menu-desc { font-size: 12.5px; color: var(--sg-text-muted); line-height: 1.4; }
.feat-menu .sg-feat-foot { margin-top: 8px; padding: 14px 12px 6px; border-top: 1px solid var(--sg-border); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.feat-menu .sg-feat-foot__all { font-size: 13.5px; font-weight: 600; color: var(--sg-text); }
.feat-menu .sg-feat-foot__demo { font-size: 13.5px; font-weight: 600; color: var(--sg-link); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.header-demo { display: none; color: rgba(var(--sg-bg-rgb), 0.82); font-size: 14.5px; font-weight: 500; padding: 8px 12px; text-decoration: none; }
.header-demo:hover { color: var(--sg-text-inverse); }
.header-signin { display: none; color: var(--sg-text-inverse); font-size: 14.5px; font-weight: 600; padding: 9px 16px; border-radius: 8px; border: 1px solid rgba(var(--sg-bg-rgb), 0.28); text-decoration: none; }
.header-signin:hover { background: rgba(var(--sg-bg-rgb), 0.08); color: var(--sg-text-inverse); }
.header-cta { background: var(--sg-primary); color: var(--sg-text); font-size: 14.5px; font-weight: 600; padding: 10px 18px; border-radius: 8px; text-decoration: none; }
.header-cta:hover { background: var(--sg-primary-hover); color: var(--sg-text); }
.header-cta:active { background: var(--sg-primary-pressed); color: var(--sg-white); }

.hamburger { width: 44px; height: 44px; border-radius: 8px; border: 1px solid rgba(var(--sg-bg-rgb), 0.22); background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; margin-left: 4px; }
.hamburger .bar-line { width: 18px; height: 2px; background: var(--sg-bg); border-radius: 2px; transition: transform .2s, opacity .2s; }
.hamburger[aria-expanded="true"] .bar-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .bar-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { background: var(--sg-secondary); border-top: 1px solid rgba(var(--sg-bg-rgb), 0.08); padding: 12px 20px 28px; max-height: calc(100vh - 72px); overflow-y: auto; display: none; }
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav > a { color: var(--sg-text-inverse); font-size: 18px; font-weight: 600; padding: 14px 4px; border-bottom: 1px solid rgba(var(--sg-bg-rgb), 0.08); text-decoration: none; }
.m-feat-toggle { display: flex; justify-content: space-between; align-items: center; background: transparent; border: 0; border-bottom: 1px solid rgba(var(--sg-bg-rgb), 0.08); color: var(--sg-text-inverse); font-family: inherit; font-size: 18px; font-weight: 600; padding: 14px 4px; text-align: left; cursor: pointer; width: 100%; }
.m-feat-toggle .sg-chev { width: 8px; height: 8px; border-right: 2px solid var(--sg-accent); border-bottom: 2px solid var(--sg-accent); transform: rotate(45deg); transition: transform .15s; display: inline-block; }
.m-feat-toggle[aria-expanded="true"] .sg-chev { transform: rotate(-135deg); }
.m-feat-list { list-style: none; margin: 0; padding: 6px 0 10px 12px; display: none; gap: 2px; }
.m-feat-list[data-open="true"] { display: grid; }
.m-feat-list li a.sg-mm-all { display: block; color: var(--sg-accent); font-size: 15.5px; font-weight: 600; padding: 10px 4px; text-decoration: none; }
.m-feat-list li a { display: block; color: rgba(var(--sg-bg-rgb), 0.8); font-size: 15.5px; padding: 10px 4px; text-decoration: none; }
.mobile-menu .mm-cta { display: grid; gap: 10px; margin-top: 22px; }
.mobile-menu .mm-cta a.sg-mm-primary { text-align: center; background: var(--sg-primary); color: var(--sg-text); font-size: 16px; font-weight: 600; padding: 15px; border-radius: 8px; text-decoration: none; }
.mobile-menu .mm-cta .sg-mm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mobile-menu .mm-cta .sg-mm-row a { text-align: center; color: var(--sg-text-inverse); font-size: 15px; font-weight: 600; padding: 14px; border-radius: 8px; border: 1px solid rgba(var(--sg-bg-rgb), 0.28); text-decoration: none; }

@media (min-width: 720px) { .header-signin { display: inline-flex; } }
@media (min-width: 1080px) {
  .desktop-nav { display: flex; }
  .hamburger, .mobile-menu { display: none !important; }
}
@media (min-width: 1320px) { .header-demo { display: inline-flex; } }

/* ---------- responsive show/hide utilities ---------- */
.notmobile-only { display: block; }
@media (max-width: 719px) { .notmobile-only { display: none; } }

/* ---------- home: dashboard mockup responsive columns ---------- */
.app-grid { display: grid; grid-template-columns: 200px minmax(0,1fr); }
.app-sidebar { display: flex; }
@media (max-width: 719px) {
  .app-grid { grid-template-columns: minmax(0,1fr); }
  .app-sidebar { display: none; }
}
.showcase-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 0; align-items: start; }
.showcase-rail { display: none; }
.showcase-pills { display: flex; }
@media (min-width: 1080px) {
  .showcase-grid { grid-template-columns: 170px minmax(0,1fr); }
  .showcase-rail { display: flex; }
  .showcase-pills { display: none; }
}

/* mobile sticky CTA bar (home) */
.mobile-cta-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40; background: var(--sg-secondary); border-radius: 14px; padding: 8px; display: none; grid-template-columns: 1fr 1fr; gap: 8px; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5); }
.mobile-cta-bar.is-visible { display: grid; }
.mobile-cta-bar a.sg-bar-ghost { text-align: center; color: var(--sg-text-inverse); font-size: 15px; font-weight: 600; padding: 13px; border-radius: 8px; border: 1px solid rgba(var(--sg-bg-rgb), 0.28); text-decoration: none; }
.mobile-cta-bar a.sg-bar-solid { text-align: center; background: var(--sg-primary); color: var(--sg-text); font-size: 15px; font-weight: 600; padding: 13px; border-radius: 8px; text-decoration: none; }
.footer-pad { height: 0; background: var(--sg-secondary-pressed); }
@media (max-width: 719px) { .footer-pad.has-bar { height: 84px; } }

/* ---------- FAQ accordion (native <details>) ---------- */
.faq-list { border-top: 1px solid var(--sg-border-warm); }
.faq-item { border-bottom: 1px solid var(--sg-border-warm); }
.faq-item summary { list-style: none; margin: 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; font-size: 17px; font-weight: 600; color: var(--sg-text); letter-spacing: -0.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--sg-border-warm); background: transparent; }
.faq-icon::before { content: ""; position: absolute; left: 8px; top: 13px; width: 10px; height: 1.5px; background: var(--sg-secondary); }
.faq-icon::after { content: ""; position: absolute; left: 12.25px; top: 8.75px; width: 1.5px; height: 10px; background: var(--sg-secondary); transition: transform .2s; }
.faq-item[open] .faq-icon { background: var(--sg-primary-soft); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-panel { padding: 0 48px 24px 0; font-size: 16px; line-height: 1.65; color: var(--sg-text-muted); animation: sgRise .2s ease-out; }

/* ---------- contact page: enquiry tabs ---------- */
.tab-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--sg-bg); border-radius: 10px; padding: 4px; }
.tab-btn { border: 0; border-radius: 8px; padding: 11px; font-size: 14.5px; font-weight: 600; cursor: pointer; background: transparent; color: var(--sg-text); }
.tab-btn[aria-selected="true"] { background: var(--sg-surface); box-shadow: 0 1px 3px rgba(var(--sg-secondary-rgb), 0.15); }
[data-mode="demo"] .only-msg { display: none; }
[data-mode="msg"] .only-demo { display: none; }
.form-success { display: none; padding: 48px 8px; text-align: center; flex-direction: column; align-items: center; gap: 14px; }
.form-success.is-visible { display: flex; }
.sg-visible-block { display: none; }
.sg-visible-block.is-visible { display: block; }
.success-check { width: 52px; height: 52px; border-radius: 50%; background: var(--sg-success-bg); color: var(--sg-success); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; }

/* ---------- generic form field styles ---------- */
.sg-field { display: grid; gap: 6px; font-size: 13.5px; font-weight: 600; }
.sg-field input, .sg-field select, .sg-field textarea { height: 46px; border: 1px solid var(--sg-border); border-radius: 8px; padding: 0 14px; font-size: 15px; color: var(--sg-text); background: var(--sg-surface); }
.sg-field textarea { height: auto; padding: 12px 14px; resize: vertical; }
.sg-field input:focus-visible, .sg-field select:focus-visible, .sg-field textarea:focus-visible { border-color: var(--sg-border-strong); }
.sg-field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 16px; }
.btn-primary { height: 50px; border: 0; border-radius: 8px; background: var(--sg-primary); color: var(--sg-text); font-size: 16px; font-weight: 600; cursor: pointer; }
.btn-primary:hover { background: var(--sg-primary-hover); }
.btn-primary:active { background: var(--sg-primary-pressed); color: var(--sg-white); }

/* ---------- photos ---------- */
.img-fill { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
:has(> .img-fill) { position: relative; }

/* ---------- WordPress integration ---------- */
.sg-skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--sg-primary); color: var(--sg-text); padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.sg-skip-link:focus { left: 8px; color: var(--sg-text); }
.sg-site-header { position: sticky; top: 0; z-index: 50; }
.admin-bar .sg-site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .sg-site-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .sg-site-header { top: 0; } }
.sg-nav-region { display: none; align-items: center; }
@media (min-width: 1080px) { .sg-nav-region { display: flex; } }
.mobile-menu .pencil-managed-region > nav { display: flex; flex-direction: column; }
.pencil-button__text { display: inline; }

/* ---------- site footer ---------- */
.sg-footer { background: var(--sg-secondary-pressed); color: var(--sg-text-inverse); font-family: var(--sg-font-sans); }
.sg-footer__inner { max-width: 1280px; margin: 0 auto; padding: 72px clamp(20px, 4vw, 40px) 32px; }
.sg-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 40px 32px; }
.sg-footer__top { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 24px; padding-bottom: 40px; border-bottom: 1px solid rgba(var(--sg-bg-rgb), 0.1); }
.sg-footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: 340px; }
.sg-logo--footer .sg-logo-mark { background: linear-gradient(var(--sg-primary) 0 56%, var(--sg-secondary-pressed) 56% 63%, var(--sg-primary) 63% 73%, var(--sg-secondary-pressed) 73% 80%, var(--sg-primary) 80%); }
.sg-logo--footer:hover { color: var(--sg-text-inverse); }
.sg-footer__tagline { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(var(--sg-bg-rgb), 0.68); }
.sg-footer__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.sg-footer__btn { color: var(--sg-text-inverse); font-size: 14.5px; font-weight: 600; padding: 11px 18px; border-radius: 8px; border: 1px solid rgba(var(--sg-bg-rgb), 0.28); text-decoration: none; }
.sg-footer__btn:hover { color: var(--sg-text-inverse); background: rgba(var(--sg-bg-rgb), 0.08); }
.sg-footer__btn--solid { background: var(--sg-primary); color: var(--sg-text); border: 0; }
.sg-footer__btn--solid:hover { background: var(--sg-primary-hover); color: var(--sg-text); }
.sg-footer__heading { margin: 0; font-size: 12px; font-family: var(--sg-font-mono); letter-spacing: 0.14em; color: var(--sg-accent); font-weight: 600; }
.sg-footer__list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; font-size: 14.5px; }
.sg-footer__list--contact { color: rgba(var(--sg-bg-rgb), 0.78); }
.sg-footer__link { color: rgba(var(--sg-bg-rgb), 0.78); text-decoration: none; }
.sg-footer__link:hover { color: var(--sg-text-inverse); }
.sg-footer__social { display: flex; gap: 14px; flex-wrap: wrap; }
.sg-footer__copyright { margin: 56px 0 0; padding-top: 24px; border-top: 1px solid rgba(var(--sg-bg-rgb), 0.1); font-size: 13.5px; color: rgba(var(--sg-bg-rgb), 0.6); }

/* ---------- plain WordPress pages (legal pages, 404, fallback) ---------- */
.sg-page { max-width: 760px; margin: 0 auto; padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 40px); }
.sg-page__title { font-size: clamp(34px, 4.4vw, 52px); line-height: 1.05; font-weight: 700; letter-spacing: -0.04em; text-wrap: balance; }
.sg-page__content { margin-top: 32px; font-size: 17px; line-height: 1.7; color: var(--sg-text-body); }
.sg-page__content > * + * { margin-top: 1em; }
.sg-page__content h2 { font-size: 26px; line-height: 1.2; letter-spacing: -0.02em; color: var(--sg-text); margin-top: 1.6em; }
.sg-page__content h3 { font-size: 20px; color: var(--sg-text); margin-top: 1.4em; }
.sg-page__content ul, .sg-page__content ol { padding-left: 1.3em; }
.sg-page__content a { text-decoration: underline; }
.sg-page__list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 24px; }
.sg-page__list a { font-size: 20px; font-weight: 700; color: var(--sg-text); }

/* ---------- form notices ---------- */
.sg-form-error { margin-top: 16px; padding: 12px 14px; border-radius: 8px; background: var(--sg-primary-soft); color: var(--sg-link-hover); font-size: 14px; }
.sg-hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
form[data-sg-enquiry][hidden], #getstarted-form[hidden] { display: none; }
