/* Gastouder Unique — canonical site stylesheet
 * Consolidated in sitepackage 0.4.0 after visual audit.
 */

html {
  color-scheme: light only;
  background: #fff8ef;
}

body.gu-site {
  color-scheme: light only;
  background: #fff8ef !important;
}

.gu-site {
  /* Logo-derived palette: white, powder blue, blush pink and restrained gold. */
  --gu-ink: #2f3238;
  --gu-muted: #66717a;
  --gu-paper: #fff8ef;
  --gu-panel: #ffffff;
  --gu-rose-wash: #fff4f3;
  --gu-rose-soft: #f4d6d6;
  --gu-rose: #e8969a;
  --gu-rose-dark: #b94f62;
  --gu-blue-wash: #f2f7fa;
  --gu-blue-soft: #dbe7ef;
  --gu-blue: #baccdc;
  --gu-blue-dark: #49657a;
  --gu-gold-wash: #fbf7ef;
  --gu-gold: #d2aa72;
  --gu-gold-dark: #8b5b20;
  --gu-line: #dde5ea;
  --gu-display: Baskerville, "Baskerville Old Face", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --gu-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gu-wide: 1480px;
  --gu-content: 1320px;
  --gu-reading: 780px;
  --gu-gutter: clamp(24px, 4vw, 64px);
  --gu-edge: max(var(--gu-gutter), calc((100vw - var(--gu-content)) / 2));
  color: var(--gu-ink);
  background: var(--gu-paper);
  font-family: var(--gu-body);
}

.gu-site *,
.gu-site *::before,
.gu-site *::after { box-sizing: border-box; }

.gu-site a { text-underline-offset: 4px; }
.gu-site a:focus-visible,
.gu-site button:focus-visible,
.gu-site summary:focus-visible {
  outline: 3px solid var(--gu-blue);
  outline-offset: 3px;
}

/* Header */
.gu-site header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 50;
  margin: 0;
  background: rgba(255,248,239,.96);
  border-bottom: 1px solid rgba(186,204,220,.72);
  backdrop-filter: blur(8px);
}

.gu-site header.wp-block-template-part > .wp-block-group { padding: 0; }

.gu-site .gu-header-inner {
  width: min(var(--gu-wide), calc(100% - (2 * var(--gu-gutter))));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gu-site .gu-brand {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.gu-site .gu-brand.gu-brand--logo {
  width: 112px;
  height: 112px;
  position: relative;
  z-index: 70;
}

.gu-site .gu-brand.gu-brand--logo.gu-brand--welcome-target img {
  opacity: 0;
}

body.gu-welcome-active {
  overflow: hidden;
}

.gu-welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--gu-paper, #fff8ef);
  cursor: default;
}

.gu-welcome-stage {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.gu-welcome-label {
  margin: 0;
  color: var(--gu-gold-dark, #8b5b20);
  font-size: clamp(.78rem, 1.2vw, .96rem);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gu-welcome-logo {
  display: block;
  width: min(66vw, 560px);
  max-width: 560px;
  max-height: 68vh;
  object-fit: contain;
  background: transparent !important;
  transform-origin: top left;
  will-change: transform;
}

.gu-site .gu-brand img,
.gu-site .gu-footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gu-site .gu-desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.gu-site .gu-desktop-nav a {
  color: var(--gu-ink);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 680;
}

.gu-site .gu-desktop-nav a:hover { color: var(--gu-blue-dark); }

.gu-site .gu-header-cta,
.gu-site .gu-mobile-cta {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--gu-rose-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* Mobile navigation */
.gu-site .gu-mobile-menu {
  display: none;
  position: relative;
  flex: 0 0 auto;
}

.gu-site .gu-mobile-menu__toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--gu-blue-soft);
  border-radius: 999px;
  background: #fff;
  list-style: none;
}

.gu-site .gu-mobile-menu__toggle::-webkit-details-marker { display: none; }

.gu-site .gu-mobile-menu__icon,
.gu-site .gu-mobile-menu__icon::before,
.gu-site .gu-mobile-menu__icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 20px;
  background: var(--gu-ink);
  transition: transform .18s ease, top .18s ease, background .18s ease;
}

.gu-site .gu-mobile-menu__icon { position: relative; }
.gu-site .gu-mobile-menu__icon::before { position: absolute; top: -6px; left: 0; }
.gu-site .gu-mobile-menu__icon::after { position: absolute; top: 6px; left: 0; }

.gu-site .gu-mobile-menu[open] .gu-mobile-menu__icon { background: transparent; }
.gu-site .gu-mobile-menu[open] .gu-mobile-menu__icon::before { top: 0; transform: rotate(45deg); }
.gu-site .gu-mobile-menu[open] .gu-mobile-menu__icon::after { top: 0; transform: rotate(-45deg); }

.gu-site .gu-mobile-menu__panel {
  position: absolute;
  right: 0;
  top: 54px;
  z-index: 80;
  width: min(84vw, 330px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--gu-blue-soft);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(73,101,122,.16);
}

.gu-site .gu-mobile-menu__panel > a:not(.gu-mobile-cta) {
  display: block;
  padding: 12px 13px;
  border-bottom: 1px solid var(--gu-line);
  color: var(--gu-ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.gu-site .gu-mobile-menu__panel .gu-mobile-cta {
  margin-top: 8px;
  text-align: center;
}

/* Shared content */
.gu-site .wp-site-blocks > main {
  margin-block-start: 0 !important;
}

.gu-site .entry-content > .gu-page {
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.gu-site .gu-page { overflow: hidden; }

.gu-site .gu-hero {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.gu-site .gu-kicker {
  margin: 0 0 14px;
  color: var(--gu-blue-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gu-site .gu-hero {
  position: relative;
  padding: clamp(56px, 6vw, 96px) 0 clamp(50px, 5.5vw, 84px);
  background:
    radial-gradient(circle at 86% 18%, rgba(186,204,220,.20), transparent 23%),
    radial-gradient(circle at 76% 76%, rgba(232,150,154,.11), transparent 24%),
    var(--gu-paper);
  border: 0;
  border-bottom: 1px solid var(--gu-line);
  border-radius: 0;
  overflow: hidden;
}

.gu-site .gu-layout-home .gu-hero {
  min-height: clamp(560px, 52vw, 700px);
  padding-top: clamp(72px, 7vw, 118px);
  padding-bottom: clamp(64px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gu-site .gu-hero > .gu-kicker,
.gu-site .gu-hero > h1,
.gu-site .gu-hero > .gu-lead,
.gu-site .gu-hero > .wp-block-buttons {
  margin-left: var(--gu-edge) !important;
  margin-right: var(--gu-gutter) !important;
}

.gu-site .gu-hero > .gu-kicker { width: min(70ch, calc(100% - var(--gu-edge) - var(--gu-gutter))); }
.gu-site .gu-hero > h1 { width: min(12ch, calc(100% - var(--gu-edge) - var(--gu-gutter))); }
.gu-site .gu-hero > .gu-lead { width: min(62ch, calc(100% - var(--gu-edge) - var(--gu-gutter))); }
.gu-site .gu-hero > .wp-block-buttons { width: min(760px, calc(100% - var(--gu-edge) - var(--gu-gutter))); }

.gu-site .gu-layout-home .gu-hero::before {
  content: "EDE · VELDHUIZEN";
  position: absolute;
  right: max(24px, calc((100vw - var(--gu-wide)) / 2));
  top: 56%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right top;
  color: rgba(73,101,122,.52);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.gu-site .gu-layout-home .gu-hero::after {
  content: "";
  position: absolute;
  right: max(30px, calc((100vw - var(--gu-wide)) / 2 + 16px));
  top: 26%;
  width: 84px;
  height: 1px;
  background: linear-gradient(90deg, var(--gu-gold-dark), var(--gu-rose));
}

.gu-site .gu-hero h1,
.gu-site .gu-section h2 {
  font-family: var(--gu-display);
  color: var(--gu-gold-dark);
  font-style: italic;
  font-weight: 500;
  font-feature-settings: "liga" 1, "kern" 1;
  text-wrap: balance;
}

.gu-site .gu-hero h1 {
  max-width: 14ch !important;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.018em;
}

.gu-site .gu-layout-home .gu-hero h1 { max-width: 11ch !important; }

.gu-site .gu-lead {
  max-width: 56ch;
  margin: 22px 0 0;
  color: var(--gu-muted);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.7;
}

.gu-site .wp-block-buttons {
  margin-top: 28px;
  gap: 12px;
}

.gu-site .wp-block-button__link,
.gu-site .ff-btn-submit {
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gu-rose-dark) !important;
  color: #fff !important;
  padding: 13px 20px !important;
  box-shadow: none !important;
  font-weight: 800 !important;
}

.gu-site .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--gu-blue-dark) !important;
  border: 0 !important;
  padding-inline: 4px !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.gu-site .gu-facts {
  width: min(var(--gu-content), calc(100% - (2 * var(--gu-gutter))));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-bottom: 1px solid var(--gu-line);
}

.gu-site .gu-fact {
  padding: 22px clamp(12px, 2vw, 24px) 24px;
}

.gu-site .gu-fact + .gu-fact { border-left: 1px solid var(--gu-line); }

.gu-site .gu-fact strong {
  display: block;
  color: var(--gu-ink);
  font-family: var(--gu-display);
  font-size: 1.28rem;
  font-weight: 600;
}

.gu-site .gu-fact strong::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 8px;
  background: var(--gu-blue-dark);
}

.gu-site .gu-fact:nth-child(1) strong { color: var(--gu-blue-dark); }
.gu-site .gu-fact:nth-child(2) strong { color: var(--gu-rose-dark); }
.gu-site .gu-fact:nth-child(3) strong { color: var(--gu-gold-dark); }
.gu-site .gu-fact:nth-child(1) strong::after { background: var(--gu-blue-dark); }
.gu-site .gu-fact:nth-child(2) strong::after { background: var(--gu-rose); }
.gu-site .gu-fact:nth-child(3) strong::after { background: var(--gu-gold-dark); }

.gu-site .gu-fact span {
  display: block;
  margin-top: 7px;
  color: var(--gu-muted);
  font-size: .94rem;
}

.gu-site .gu-section {
  width: min(var(--gu-content), calc(100% - (2 * var(--gu-gutter)))) !important;
  max-width: var(--gu-content) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: clamp(58px, 6vw, 96px) clamp(36px, 5vw, 82px);
  border: 1px solid var(--gu-line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}

.gu-site .gu-section > * {
  width: min(100%, 860px);
  max-width: 860px !important;
}

.gu-site .gu-section:hover,
.gu-site .gu-section:focus-within,
.gu-site .gu-section:active {
  border-color: rgba(139,91,32,.46);
  box-shadow:
    0 0 0 1px rgba(210,170,114,.34),
    0 0 22px rgba(210,170,114,.26),
    0 18px 38px rgba(139,91,32,.10);
}

@media (hover: hover) and (pointer: fine) {
  .gu-site .gu-section:hover {
    transform: translateY(-2px);
  }
}

.gu-site .gu-facts,
.gu-site .gu-faq-item,
.gu-site .gu-form-panel {
  transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}

.gu-site .gu-facts:hover,
.gu-site .gu-facts:focus-within,
.gu-site .gu-facts:active,
.gu-site .gu-faq-item:hover,
.gu-site .gu-faq-item:focus-within,
.gu-site .gu-faq-item:active,
.gu-site .gu-form-panel:hover,
.gu-site .gu-form-panel:focus-within,
.gu-site .gu-form-panel:active {
  border-color: rgba(139,91,32,.46);
  box-shadow:
    0 0 0 1px rgba(210,170,114,.30),
    0 0 18px rgba(210,170,114,.24);
}


.gu-site .gu-section h2 {
  max-width: 20ch !important;
  margin: 0 0 22px;
  font-size: clamp(2.15rem, 3vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.gu-site .gu-section h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--gu-gold-dark), var(--gu-gold));
  opacity: .88;
}


.gu-site .gu-section p,
.gu-site .gu-section ul,
.gu-site .gu-related-links {
  max-width: 74ch !important;
}

.gu-site .gu-section > * {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.gu-site .gu-section--trust > *,
.gu-site .gu-trust > * {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.gu-site .gu-section--definition > *,
.gu-site .gu-form-panel > * {
  width: 100%;
  max-width: 1040px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.gu-site .gu-section p,
.gu-site .gu-section li {
  color: var(--gu-muted);
  line-height: 1.75;
}

.gu-site .gu-section ul { padding-left: 1.15rem; }

.gu-site .gu-tint { background: var(--gu-blue-wash); }

.gu-site .gu-section--editorial {
  position: relative;
}

.gu-site .gu-section--editorial::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--gu-blue-dark) 0 38%, var(--gu-rose) 38% 72%, var(--gu-gold-dark) 72% 100%);
}

.gu-site .gu-section--feature {
  background:
    linear-gradient(90deg, rgba(73,101,122,.14) 0 2px, transparent 2px) left center / 100% 58% no-repeat,
    var(--gu-blue-wash);
  border-color: var(--gu-blue-soft);
}

.gu-site .gu-section--trust,
.gu-site .gu-trust {
  background: #f3f7fb;
  border-top: 3px solid var(--gu-gold-dark);
}

.gu-site .gu-section--cta {
  text-align: left;
  background: var(--gu-rose-wash);
  border-color: var(--gu-rose-soft);
}

.gu-site .gu-section--cta h2 { max-width: 22ch; }

.gu-site .gu-section--cta.gu-tint { background: var(--gu-rose-wash); }
.gu-site .gu-section--feature.gu-tint { background: var(--gu-blue-wash); }
.gu-site .gu-section--trust h2,
.gu-site .gu-trust h2,
.gu-site .gu-section--cta h2 { color: var(--gu-gold-dark); }


.gu-site .gu-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
}

.gu-site .gu-related-links a,
.gu-site .gu-faq-answer a {
  color: var(--gu-blue-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
}

/* Practical details */
.gu-site .gu-definition-list {
  width: 100%;
  max-width: 1040px !important;
  margin: 30px 0 0;
  border-top: 1px solid var(--gu-line);
}

.gu-site .gu-definition-list > div {
  display: grid;
  grid-template-columns: minmax(130px, .55fr) minmax(0, 1.45fr);
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gu-line);
}

.gu-site .gu-definition-list dt {
  color: var(--gu-muted);
  font-size: .9rem;
  font-weight: 700;
}

.gu-site .gu-definition-list dd {
  margin: 0;
  color: var(--gu-ink);
  font-weight: 700;
}

/* FAQ */
.gu-site .gu-faq-section {
  width: min(var(--gu-content), calc(100% - (2 * var(--gu-gutter)))) !important;
  max-width: var(--gu-content) !important;
  margin: 0 auto !important;
  padding: clamp(50px, 5vw, 82px) clamp(36px, 5vw, 82px);
  border-bottom: 0;
}

.gu-site .gu-faq-list {
  width: min(100%, 1080px);
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--gu-line);
}

.gu-site .gu-faq-item {
  border-bottom: 1px solid var(--gu-line);
}

.gu-site .gu-faq-item summary {
  position: relative;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  list-style: none;
  color: var(--gu-ink);
  font-family: var(--gu-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
}

.gu-site .gu-faq-item summary::-webkit-details-marker { display: none; }

.gu-site .gu-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gu-rose-dark);
  font-family: var(--gu-body);
  font-size: 1.5rem;
  font-weight: 400;
}

.gu-site .gu-faq-item[open] summary::after { content: "–"; }

.gu-site .gu-faq-answer {
  max-width: 680px;
  padding: 0 0 22px;
  color: var(--gu-muted);
  line-height: 1.72;
}

.gu-site .gu-faq-answer p { margin: 0 0 10px; }

/* Contact / Fluent Forms */
.gu-site .gu-form-panel {
  max-width: var(--gu-content) !important;
  background: linear-gradient(180deg, #fff 0%, var(--gu-blue-wash) 100%);
  border-top: 3px solid var(--gu-blue-dark);
}

.gu-site .gu-form-panel form fieldset {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  align-items: start;
}

.gu-site .gu-form-panel .ff-el-group:has(textarea),
.gu-site .gu-form-panel .ff_submit_btn_wrapper {
  grid-column: 1 / -1;
}

.gu-site .gu-form-panel .gu-privacy-note {
  width: 100%;
  max-width: 1040px !important;
  margin-left: auto;
  margin-right: auto;
}

.gu-site .ff-el-group { margin-bottom: 18px !important; }

.gu-site .ff-el-input--content input,
.gu-site .ff-el-input--content textarea,
.gu-site .ff-el-input--content select {
  width: 100%;
  padding: 13px 14px !important;
  border: 1px solid var(--gu-line) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--gu-ink) !important;
  box-shadow: none !important;
}

.gu-site .ff-el-input--content input:focus,
.gu-site .ff-el-input--content textarea:focus,
.gu-site .ff-el-input--content select:focus {
  outline: 3px solid rgba(186,204,220,.72) !important;
  border-color: var(--gu-blue-dark) !important;
}

.gu-site .gu-confirmation {
  width: min(840px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gu-rose-dark);
  background: var(--gu-rose-wash);
}

.gu-site .gu-confirmation strong,
.gu-site .gu-confirmation span { display: block; }
.gu-site .gu-confirmation span { margin-top: 4px; color: var(--gu-muted); }

/* Social discovery */
.gu-site .gu-social-strip {
  width: min(var(--gu-content), calc(100% - (2 * var(--gu-gutter))));
  margin: 22px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--gu-rose-soft);
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(255,255,255,.78), var(--gu-rose-wash));
}

.gu-site .gu-social-strip__text {
  color: var(--gu-muted);
  line-height: 1.55;
}

.gu-site .gu-social-strip__text strong {
  color: var(--gu-ink);
}

.gu-site .gu-social-button,
.gu-site .gu-footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.gu-site .gu-social-button--instagram {
  color: #fff;
  background: var(--gu-rose-dark);
  border-color: var(--gu-rose-dark);
}

.gu-site .gu-social-button:hover,
.gu-site .gu-social-button:focus-visible,
.gu-site .gu-footer-action:hover,
.gu-site .gu-footer-action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(210,170,114,.34), 0 0 18px rgba(210,170,114,.28);
}

/* Footer */
.gu-site footer.wp-block-template-part {
  margin-top: 0;
  background: #3e596e;
  color: #fff;
}

.gu-site .gu-footer-main {
  background: #3e596e;
}

.gu-site .gu-footer-inner {
  position: relative;
  width: min(var(--gu-wide), calc(100% - (2 * var(--gu-gutter))));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  grid-template-areas:
    "logo copy actions"
    "logo nav actions";
  gap: 12px 34px;
  align-items: center;
}

.gu-site .gu-footer-logo {
  grid-area: logo;
  display: block;
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
}

.gu-site .gu-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gu-site .gu-footer-copy {
  grid-area: copy;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
  color: rgba(255,255,255,.88);
}

.gu-site .gu-footer-copy strong {
  color: #fff;
}

.gu-site .gu-footer-copy span {
  font-size: .92rem;
}

.gu-site .gu-footer-actions {
  grid-area: actions;
  display: flex;
  align-self: start;
  justify-content: flex-end;
  gap: 10px;
}

.gu-site .gu-footer-action {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.gu-site .gu-footer-action svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.gu-site .gu-footer-action--phone {
  background: var(--gu-rose-dark);
  border-color: rgba(255,255,255,.14);
}

.gu-site .gu-footer-action--whatsapp {
  background: #25d366;
  border-color: rgba(255,255,255,.18);
}

.gu-site .gu-footer-action--whatsapp svg {
  width: 23px;
  height: 23px;
}

.gu-site .gu-footer-action--instagram {
  background: transparent;
  border-color: rgba(255,255,255,.58);
}

.gu-site .gu-footer-nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.gu-site footer a { color: #fff; }
.gu-site footer a:hover { color: #f2d9b5; }

.gu-site .gu-copyright-bar {
  background: #31495c;
  border-top: 1px solid rgba(255,255,255,.12);
}

.gu-site .gu-copyright-inner {
  width: min(var(--gu-wide), calc(100% - (2 * var(--gu-gutter))));
  margin: 0 auto;
  min-height: 44px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}

.gu-site .gu-copyright-inner a {
  color: #fff;
  font-weight: 800;
  text-decoration-thickness: 1px;
}

/* Responsive */
@media (max-width: 1180px) {
  .gu-site .gu-header-inner {
    width: calc(100% - 40px);
  }

  .gu-site .gu-desktop-nav { gap: 14px; }
  .gu-site .gu-desktop-nav a { font-size: .9rem; }

  .gu-site .gu-section {
    width: calc(100% - 48px) !important;
    padding-inline: clamp(32px, 5vw, 64px);
  }

  .gu-site .gu-faq-section {
    width: calc(100% - 48px) !important;
  }

  .gu-site .gu-section--editorial > *,
  .gu-site .gu-section--trust > *,
  .gu-site .gu-trust > * {
    margin-left: 0 !important;
  }

  .gu-site .gu-section--feature > *,
  .gu-site .gu-section--cta > * {
    margin-right: 0 !important;
  }
}

@media (max-width: 960px) {
  .gu-site .gu-header-inner {
    width: calc(100% - 28px);
    min-height: 96px;
  }

  .gu-site .gu-brand.gu-brand--logo {
    width: 92px;
    height: 92px;
  }

  .gu-site .gu-desktop-nav,
  .gu-site .gu-header-cta { display: none !important; }

  .gu-site .gu-mobile-menu {
    display: block;
    margin-left: auto;
  }

  .gu-site .gu-layout-home .gu-hero {
    min-height: 0;
  }

  .gu-site .gu-layout-home .gu-hero::before { display: none; }

  .gu-site .gu-layout-home .gu-hero::after {
    right: 28px;
    top: 26px;
    width: 64px;
  }

  .gu-site .gu-hero > .gu-kicker,
  .gu-site .gu-hero > h1,
  .gu-site .gu-hero > .gu-lead,
  .gu-site .gu-hero > .wp-block-buttons {
    margin-left: 28px !important;
    margin-right: 28px !important;
    width: calc(100% - 56px);
  }

  .gu-site .gu-hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.6rem);
  }

  .gu-site .gu-facts {
    width: calc(100% - 48px);
  }

  .gu-site .gu-section,
  .gu-site .gu-faq-section {
    width: calc(100% - 32px) !important;
    padding: 52px 34px;
  }

  .gu-site .gu-section > *,
  .gu-site .gu-section--editorial > *,
  .gu-site .gu-section--feature > *,
  .gu-site .gu-section--trust > *,
  .gu-site .gu-trust > *,
  .gu-site .gu-section--cta > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .gu-site .gu-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .gu-site .gu-faq-list {
    width: 100%;
    max-width: none;
  }

  .gu-site .gu-social-strip {
    width: calc(100% - 32px);
  }

  .gu-site .gu-footer-inner {
    width: calc(100% - 36px);
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo copy actions"
      "logo nav nav";
  }

  .gu-site .gu-footer-actions {
    justify-content: flex-end;
    margin-top: 0;
  }

  .gu-site .gu-copyright-inner {
    width: calc(100% - 36px);
  }
}

@media (max-width: 720px) {
  .gu-site .gu-facts {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .gu-site .gu-fact + .gu-fact {
    border-left: 0;
    border-top: 1px solid var(--gu-line);
  }

  .gu-site .gu-definition-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gu-site .gu-form-panel form fieldset {
    display: block !important;
  }
}

@media (max-width: 520px) {
  .gu-site {
    --gu-gutter: 16px;
  }

  .gu-site .gu-header-inner {
    min-height: 84px;
  }

  .gu-site .gu-brand.gu-brand--logo {
    width: 82px;
    height: 82px;
  }

  .gu-site .gu-welcome-logo {
    width: min(78vw, 420px);
    max-height: 62vh;
  }

  .gu-site .gu-mobile-menu__panel {
    width: min(88vw, 330px);
  }

  .gu-site .gu-hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .gu-site .gu-layout-home .gu-hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .gu-site .gu-hero > .gu-kicker,
  .gu-site .gu-hero > h1,
  .gu-site .gu-hero > .gu-lead,
  .gu-site .gu-hero > .wp-block-buttons {
    margin-left: 16px !important;
    margin-right: 16px !important;
    width: calc(100% - 32px);
  }

  .gu-site .gu-hero h1 {
    max-width: none !important;
    font-size: clamp(2.2rem, 10.5vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -.04em;
  }

  .gu-site .gu-kicker {
    max-width: 30ch;
    line-height: 1.5;
  }

  .gu-site .gu-lead {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .gu-site .wp-block-buttons {
    gap: 10px;
    width: calc(100% - 32px);
  }

  .gu-site .wp-block-button { width: 100%; }
  .gu-site .wp-block-button__link { width: 100%; text-align: center; }

  .gu-site .wp-block-button.is-style-outline .wp-block-button__link {
    text-align: left;
    padding-left: 0 !important;
  }

  .gu-site .gu-facts {
    width: calc(100% - 28px);
  }

  .gu-site .gu-section,
  .gu-site .gu-faq-section {
    width: calc(100% - 20px) !important;
    padding: 44px 12px;
  }

  .gu-site .gu-section h2 {
    max-width: none !important;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .gu-site .gu-section p,
  .gu-site .gu-section li,
  .gu-site .gu-faq-answer {
    font-size: .98rem;
    line-height: 1.7;
  }

  .gu-site .gu-form-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gu-site .ff-btn-submit {
    width: 100%;
  }

  .gu-site .gu-faq-item summary {
    padding-right: 38px;
    font-size: 1.14rem;
    line-height: 1.45;
  }

  .gu-site .gu-social-strip {
    width: calc(100% - 20px);
    margin-top: 14px;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
  }

  .gu-site .gu-social-button {
    width: 100%;
  }

  .gu-site .gu-footer-inner {
    width: calc(100% - 28px);
    padding: 30px 0 26px;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo actions"
      "copy copy"
      "nav nav";
    gap: 18px;
    align-items: flex-start;
  }

  .gu-site .gu-footer-logo {
    width: 76px;
    height: 76px;
  }

  .gu-site .gu-footer-copy {
    display: grid;
    gap: 4px;
  }

  .gu-site .gu-footer-actions {
    width: auto;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .gu-site .gu-footer-nav {
    gap: 8px 16px;
  }

  .gu-site .gu-copyright-inner {
    width: calc(100% - 28px);
    min-height: 0;
    padding: 13px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

.gu-site .gu-privacy-note {
  margin: 14px 0 0;
  max-width: 64ch;
  color: var(--gu-muted);
  font-size: .9rem;
  line-height: 1.6;
}
.gu-site .gu-privacy-note a {
  color: var(--gu-rose-dark);
  font-weight: 700;
}
.gu-site .gu-layout-privacy .gu-section {
  max-width: 1080px !important;
}
