:root {
  --ink: #171a1d;
  --muted: #5f676f;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d8ddd8;
  --green: #24483a;
  --green-2: #0f3027;
  --copper: #b46b45;
  --blue: #d8e7ef;
  --steel: #26343f;
  --shadow: 0 24px 70px rgba(23, 26, 29, .16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 72, 58, .14);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 225px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #26322d;
}
.site-nav li,
.footer-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav ul,
.footer-nav ul {
  display: contents;
  margin: 0;
  padding: 0;
}
.site-nav a {
  padding: 10px 2px;
}
.nav-cta {
  background: var(--green);
  color: white;
  padding: 11px 16px !important;
  border-radius: 6px;
}
.gobs-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}
.gobs-header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 15px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}
.gobs-header-phone {
  color: var(--green-2);
  border: 1px solid rgba(36, 72, 58, .24);
  background: rgba(255, 255, 255, .78);
}
.gobs-header-booking {
  color: white;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(36, 72, 58, .16);
}
.site-nav .nav-cta {
  padding: 0;
}
.site-nav .nav-cta > a {
  display: block;
  background: var(--green);
  color: white;
  padding: 11px 16px !important;
  border-radius: 6px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px 13px;
  border-radius: 6px;
  font: inherit;
}

.hero {
  position: relative;
  min-height: min(720px, 78vh);
  display: grid;
  align-items: end;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 16, .94), rgba(8, 18, 16, .62) 48%, rgba(8, 18, 16, .20)),
    linear-gradient(0deg, rgba(8, 18, 16, .66), rgba(8, 18, 16, .14) 58%);
}
.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 82px;
}
.eyebrow, .section-kicker, .footer-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.hero .eyebrow { color: #f1b28d; }
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; margin: 0; }
h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 86px);
}
h2 {
  font-size: clamp(30px, 4vw, 56px);
}
h3 {
  font-size: 22px;
}
.hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}
.hero-actions, .footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 6px;
  background: var(--copper);
  color: white;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}
.hero-actions .button {
  min-height: 56px;
  padding: 16px 24px;
  font-size: 16px;
}
.button-secondary {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .64);
  backdrop-filter: blur(12px);
}
.button-light {
  background: white;
  color: var(--green-2);
}
.button-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: white;
}
.button-small {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 14px;
}

main > section, .article-layout {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
}
.trust-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  min-height: 118px;
  padding: 18px;
  background: #f6f7f3;
  border: 1px solid #dce2dc;
  border-top: 4px solid var(--copper);
  border-radius: 8px;
}
.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .12em;
}
.trust-item strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.15;
}
.trust-band img {
  width: 132px;
  justify-self: end;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}
.split-section p {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
  border-bottom: 2px solid var(--copper);
}
.feature-photo {
  margin: 0;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}
.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.map-photo img { object-fit: contain; background: var(--blue); }
.photo-quartet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.photo-quartet img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 26, 29, .14);
}

.content-band {
  background: var(--white);
}
.content-band.soft {
  background: #eef3f0;
}
.content-band.dark {
  background: var(--green-2);
  color: white;
}
.content-band.dark .section-heading p,
.content-band.dark .route-card em {
  color: rgba(255, 255, 255, .72);
}
.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
}
.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  max-width: 780px;
}
.link-grid, .info-grid, .review-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.route-card, .info-card, .review-card, .price-row {
  min-height: 178px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.route-card img {
  width: calc(100% + 48px);
  max-width: none;
  margin: -24px -24px 20px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  background: var(--line);
}
.route-card:has(img) {
  overflow: hidden;
}
.route-card > .route-card-link {
  display: block;
  color: inherit;
}
.route-card > .route-card-link:hover span {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.content-band.dark .route-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .17);
}
.content-band.dark .route-card > .route-card-link:hover span {
  color: white;
}
.route-card span {
  display: block;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.12;
}
.route-card em {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
}
.info-card span {
  color: var(--copper);
  font-weight: 900;
}
.info-card h3 { margin-top: 18px; }
.info-card p, .review-card p, .price-row p {
  color: var(--muted);
  margin-bottom: 0;
}
.testimonials-section .section-heading {
  display: grid;
  gap: 10px;
}
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-weight: 850;
}
.gobs-stars {
  color: #b85c2d;
  font-size: 15px;
  letter-spacing: .08em;
}
.google-review-card {
  display: grid;
  align-content: start;
  gap: 18px;
}
.google-review-card p {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}
.google-review-card footer {
  display: grid;
  gap: 3px;
  margin-top: 2px;
}
.google-review-card strong {
  color: var(--green);
}
.google-review-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.review-cta {
  width: min(1180px, 100%);
  margin: 22px auto 0;
}

.cta-panel {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(48px, 7vw, 90px) auto;
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--steel);
  color: white;
  border-radius: 8px;
}
.cta-panel p:not(.section-kicker) {
  color: rgba(255, 255, 255, .78);
  max-width: 700px;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: clamp(30px, 6vw, 88px);
  justify-content: center;
  align-items: start;
}
.article-aside {
  position: sticky;
  top: 96px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.article-aside ol {
  padding-left: 18px;
  color: var(--muted);
}
.article-aside a:not(.button) {
  color: var(--green);
  font-weight: 750;
}
.aside-note {
  display: grid;
  gap: 6px;
  margin: 22px 0;
  padding: 15px;
  background: #eef3f0;
  border-radius: 8px;
  color: var(--muted);
}
.aside-note strong {
  color: var(--ink);
}
.article-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 58px);
}
.article-body .lead {
  color: var(--green);
  font-size: 22px;
  font-weight: 650;
}
.article-body section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.article-body section:first-of-type { border-top: 0; }
.article-body p {
  color: var(--muted);
  font-size: 18px;
}
.article-callout {
  margin: 28px 0 10px;
  padding: 22px;
  background: #eef3f0;
  border: 1px solid #cedad4;
  border-radius: 8px;
}
.article-callout ul {
  margin: 0;
  padding-left: 22px;
  color: var(--green-2);
  font-size: 18px;
  font-weight: 650;
}
.article-body ul {
  color: var(--muted);
  font-size: 18px;
}
.article-body section h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}
.article-faqs details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.article-faqs summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 850;
  color: var(--green-2);
}
.article-faqs details p {
  margin-bottom: 0;
}
.advice-group {
  background: var(--white);
}
.advice-group:nth-child(even) {
  background: #eef3f0;
}
.article-card-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.article-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(23, 26, 29, .12);
}
.article-card span {
  font-size: 23px;
  font-weight: 850;
  line-height: 1.1;
}
.article-card p {
  margin: 0;
  color: var(--muted);
}
.article-card em {
  margin-top: auto;
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.price-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.price-row {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1.4fr;
  align-items: center;
  gap: 18px;
  min-height: 0;
}
.price-row strong { color: var(--green); }

.form-section {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(340px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background: var(--white);
}
.form-section p {
  color: var(--muted);
  font-size: 18px;
}
.form-section > p:empty,
.form-section > br {
  display: none;
}
@media (min-width: 921px) {
  .form-section > .gobs-form {
    grid-column: 2;
    grid-row: 1;
  }
}
.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 800;
}
.designer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: clamp(22px, 4vw, 42px);
  background: #eef3f0;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.designer-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}
.designer-form .full, .designer-form .check {
  grid-column: 1 / -1;
}
.designer-form input, .designer-form textarea {
  width: 100%;
  border: 1px solid #c8d1cc;
  background: white;
  border-radius: 6px;
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
}
.designer-form textarea { resize: vertical; }
.designer-form .check {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}
.designer-form .check input {
  width: 18px;
  min-height: 18px;
}
.gobs-form p {
  margin: 0;
}
.gobs-form .gobs-field {
  display: grid;
  gap: 8px;
  font-weight: 800;
}
.gobs-form .gobs-field label {
  display: block;
}
.gobs-form .gobs-field-select {
  grid-column: 1 / -1;
}
.gobs-form .gobs-consent {
  grid-column: 1 / -1;
}
.gobs-form .gobs-consent label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}
.gobs-form .gobs-consent input,
.gobs-form input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
}
.gobs-form textarea,
.gobs-form select {
  width: 100%;
  border: 1px solid #c8d1cc;
  background: white;
  border-radius: 6px;
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
}
.designer-form select,
.gobs-form select {
  display: block;
  min-width: 0;
  max-width: 100%;
  padding: 11px 46px 11px 12px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
  appearance: none;
  background-color: white;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  text-overflow: ellipsis;
}
.gobs-form .gobs-actions {
  grid-column: 1 / -1;
}
.gobs-hp {
  position: absolute;
  left: -9999px;
}
.gobs-status {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 800;
}
.gobs-status--success {
  background: #e6f3ec;
  color: var(--green-2);
  border: 1px solid #b8d5c8;
}
.gobs-status--error {
  background: #fff0e8;
  color: #763a1b;
  border: 1px solid #e6b99d;
}
.fault-finder {
  display: grid;
  gap: 18px;
}
.fault-finder-form {
  padding: 0;
  border: 0;
  background: transparent;
}
.fault-result,
.fault-safety-list {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(36, 72, 58, .16);
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  background: white;
}
.fault-result h3,
.fault-result p {
  margin: 0;
}
.fault-result ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.fault-safety-list strong {
  color: var(--green-2);
}
.fault-safety-list span {
  color: var(--muted);
}

.gallery-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  columns: 3 280px;
  column-gap: 16px;
}
.gallery-grid figure {
  break-inside: avoid;
  margin: 0 0 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
}
.sitemap-list {
  width: min(980px, 100%);
  margin: 0 auto;
  columns: 2;
  color: var(--green);
}
.sitemap-list li {
  break-inside: avoid;
  margin: 0 0 10px;
}

.site-footer {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background: #121719;
  color: white;
}
.site-footer h2 {
  max-width: 850px;
}
.site-footer p {
  max-width: 700px;
  color: rgba(255,255,255,.72);
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: rgba(255,255,255,.72);
}

.gobs-site-footer {
  padding: clamp(44px, 7vw, 82px) clamp(18px, 4vw, 56px) 28px;
  background:
    linear-gradient(135deg, rgba(180, 107, 69, .16), rgba(180, 107, 69, 0) 42%),
    #111719;
  color: white;
}
.gobs-footer-cta,
.gobs-footer-grid,
.gobs-footer-bottom {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.gobs-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: clamp(34px, 5vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.gobs-footer-cta h2 {
  max-width: 830px;
  font-size: clamp(32px, 4.2vw, 58px);
}
.gobs-footer-cta p:not(.footer-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}
.gobs-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 5vw, 48px) 0;
}
.gobs-footer-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}
.gobs-footer-grid h3 {
  margin: 0 0 8px;
  color: #f3c0a2;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.gobs-footer-grid a,
.gobs-footer-grid span {
  color: rgba(255, 255, 255, .76);
}
.gobs-footer-grid a:hover {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.gobs-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 8px; }
  .nav-cta { text-align: center; }
  .hero { min-height: 68vh; }
  .split-section, .form-section, .article-layout {
	    grid-template-columns: 1fr;
	  }
	  .trust-band {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }
	  .trust-band img {
	    grid-column: 1 / -1;
	    justify-self: start;
	  }
  .link-grid, .info-grid, .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-aside { position: static; }
  .price-row { grid-template-columns: 1fr; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .gobs-footer-cta,
  .gobs-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gobs-footer-cta {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .brand { min-width: 0; }
  .brand span { display: none; }
  .hero-inner { padding: 82px 0 56px; }
  .hero-actions, .footer-actions { flex-direction: column; }
  .button { width: 100%; }
  main > section, .article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }
	  .link-grid, .info-grid, .review-grid, .designer-form {
	    grid-template-columns: 1fr;
	  }
	  .trust-band {
	    grid-template-columns: 1fr;
	  }
  .article-card-grid {
    grid-template-columns: 1fr;
  }
  .photo-quartet { grid-template-columns: 1fr; }
  .sitemap-list { columns: 1; }
  .gobs-footer-cta,
  .gobs-footer-grid {
    grid-template-columns: 1fr;
  }
  .gobs-footer-bottom {
    flex-direction: column;
  }
}

/* WordPress / GeneratePress integration */
body.gobs-premium-built {
  background: var(--paper);
}
body.gobs-premium-built .site-content,
body.gobs-premium-built .content-area,
body.gobs-premium-built .site-main,
body.gobs-premium-built .inside-article {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}
body.gobs-premium-built .entry-header,
body.gobs-premium-built .entry-title,
body.gobs-premium-built .comments-area,
body.gobs-premium-built .paging-navigation {
  display: none;
}
body.gobs-premium-built .entry-content {
  margin: 0;
}
body.gobs-premium-built .entry-content > .hero:first-child {
  margin-top: 0;
}
body.gobs-premium-built .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, .92);
  border-bottom: 1px solid rgba(36, 72, 58, .14);
}
body.gobs-premium-built .inside-header {
  width: min(1220px, 100%);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
}
body.gobs-premium-built .site-logo img,
body.gobs-premium-built .site-branding img {
  height: clamp(44px, 4.8vw, 68px);
  max-height: 68px;
  width: auto;
}
body.gobs-premium-built .site-logo a,
body.gobs-premium-built .site-branding a {
  display: flex;
  align-items: center;
  min-height: 46px;
}
body.gobs-premium-built .main-navigation {
  background: transparent;
}
body.gobs-premium-built .main-navigation .main-nav ul li a {
  color: #26322d;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  padding: 16px 10px;
}
body.gobs-premium-built .main-navigation .main-nav ul li.nav-cta > a,
body.gobs-premium-built .main-navigation .main-nav ul li[class*="nav-cta"] > a {
  color: white;
  background: var(--green);
  border-radius: 6px;
  padding: 13px 16px;
  margin-left: 4px;
}
body.gobs-premium-built .main-navigation .main-nav ul ul {
  width: 270px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(23, 26, 29, .12);
}
body.gobs-premium-built .main-navigation .main-nav ul ul li a {
  line-height: 1.25;
  padding: 13px 15px;
}
body.gobs-premium-built .main-navigation .menu-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px 13px;
  border-radius: 6px;
  font: inherit;
}
body.gobs-premium-built .site-footer {
  margin-top: 0;
}
body.gobs-premium-built .site-info,
body.gobs-premium-built .site-footer:not(.gobs-site-footer) {
  display: none;
}

@media (min-width: 761px) {
  body.gobs-premium-built .main-navigation .menu-toggle {
    display: none;
  }
	  body.gobs-premium-built .main-navigation .main-nav > ul {
	    display: flex;
	    align-items: center;
	    flex-wrap: wrap;
	    justify-content: flex-end;
	  }
}

@media (max-width: 760px) {
	  body.gobs-premium-built .inside-header {
	    min-height: 72px;
	    flex-wrap: wrap;
	    align-items: center;
	    gap: 10px;
	  }
	  body.gobs-premium-built .site-logo img,
	  body.gobs-premium-built .site-branding img {
	    max-height: 58px;
	  }
	  body.gobs-premium-built .main-navigation {
	    margin-left: auto;
	  }
	  .gobs-header-actions {
	    order: 3;
	    width: 100%;
	    margin: 0 0 12px;
	    display: grid;
	    grid-template-columns: 1fr 1fr;
	    gap: 10px;
	  }
	  .gobs-header-actions a {
	    min-height: 46px;
	    padding: 12px 10px;
	    font-size: 13px;
	  }
	  body.gobs-premium-built .main-navigation .main-nav ul li a {
	    padding: 14px 16px;
	    min-height: 44px;
	    display: flex;
	    align-items: center;
	  }
	  body.gobs-premium-built .main-navigation .main-nav ul li.nav-cta > a,
	  body.gobs-premium-built .main-navigation .main-nav ul li[class*="nav-cta"] > a {
	    margin: 6px 12px 10px;
	    text-align: center;
	  }
}

@media (max-width: 520px) {
  .gobs-header-actions a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .gobs-header-actions {
    grid-template-columns: 1fr;
  }
  .gobs-header-actions a {
    min-height: 48px;
  }
}
