:root {
  --wf-cream: #f7f2e8;
  --wf-linen: #f8f4ec;
  --wf-paper: rgba(250, 247, 239, 0.94);
  --wf-paper-strong: rgba(255, 253, 249, 0.98);
  --wf-wheat: #e9e1cf;
  --wf-highlight: #00e457;
  --wf-forest: #008d36;
  --wf-forest-deep: #0d5b28;
  --wf-earth: #e52a12;
  --wf-ink: #353325;
  --wf-muted: #5f5a4d;
  --wf-line: rgba(53, 51, 37, 0.14);
  --wf-shadow: 0 16px 36px rgba(53, 51, 37, 0.1);
  --wf-shadow-lg: 0 26px 60px rgba(53, 51, 37, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Prompt", "Segoe UI", sans-serif;
  color: var(--wf-ink);
  background-image:
    linear-gradient(rgba(248, 244, 236, 0.9), rgba(248, 244, 236, 0.94)),
    url("/wp-content/uploads/2023/09/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.font-display {
  font-family: "Ubuntu", "Segoe UI", sans-serif;
}

.site-shell {
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(0, 141, 54, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(229, 42, 18, 0.08), transparent 28%);
  pointer-events: none;
  z-index: -1;
}

.wf-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(247, 242, 232, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(53, 51, 37, 0.06);
}

.wf-site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(247, 242, 232, 0.78);
  backdrop-filter: blur(10px);
}

.wf-home-brand img {
  filter: drop-shadow(0 10px 20px rgba(53, 51, 37, 0.08));
}

.wf-home-link {
  position: relative;
  display: inline-flex;
  padding: 0.4rem 0;
  color: var(--wf-ink);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wf-home-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.18rem;
  left: 0;
  height: 2px;
  background: var(--wf-earth);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.wf-home-link:hover,
.wf-home-link:focus-visible,
[data-nav-link].is-active.wf-home-link {
  color: var(--wf-earth);
}

.wf-home-link:hover::after,
.wf-home-link:focus-visible::after,
[data-nav-link].is-active.wf-home-link::after {
  transform: scaleX(1);
}

[data-nav-link].is-active:not(.wf-home-link) {
  box-shadow: inset 0 0 0 1px rgba(229, 42, 18, 0.2);
}

[data-mobile-menu] {
  display: none;
}

[data-mobile-menu].is-open {
  display: block;
}

.wf-card,
.wf-photo-frame,
.wf-signup-shell,
.wf-submit-bar {
  border: 1px solid var(--wf-line);
  background: var(--wf-paper);
  box-shadow: var(--wf-shadow);
}

.wf-card,
.wf-photo-frame,
.wf-signup-shell {
  backdrop-filter: blur(8px);
}

.wf-photo-frame {
  position: relative;
  overflow: hidden;
}

.wf-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 228, 87, 0.24), transparent 72%);
}

.wf-photo-frame img {
  transition: transform 0.7s ease;
}

.wf-photo-frame:hover img {
  transform: scale(1.03);
}

.wf-hero-surface {
  background:
    linear-gradient(135deg, rgba(0, 103, 42, 0.94), rgba(0, 141, 54, 0.82)),
    radial-gradient(circle at top right, rgba(0, 228, 87, 0.18), transparent 26%);
}

.wf-kicker {
  letter-spacing: 0.24em;
}

.wf-button-ring {
  box-shadow: 0 14px 28px rgba(53, 51, 37, 0.08);
}

.wf-button-ring:hover {
  box-shadow: 0 18px 36px rgba(53, 51, 37, 0.12);
}

.wf-signup-shell {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 242, 232, 0.96)),
    radial-gradient(circle at top right, rgba(0, 228, 87, 0.08), transparent 28%);
  box-shadow: var(--wf-shadow-lg);
}

.wf-signup-form .wf-form-note {
  color: rgba(53, 51, 37, 0.78);
}

.wf-signup-form label,
.wf-signup-form legend {
  color: var(--wf-ink);
  font-weight: 700;
}

.wf-signup-form input[type="text"],
.wf-signup-form input[type="email"],
.wf-signup-form input[type="url"],
.wf-signup-form select,
.wf-signup-form textarea {
  border-color: rgba(53, 51, 37, 0.16);
  background: var(--wf-paper-strong);
  color: var(--wf-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.wf-signup-form input[type="text"]::placeholder,
.wf-signup-form input[type="email"]::placeholder,
.wf-signup-form input[type="url"]::placeholder,
.wf-signup-form textarea::placeholder {
  color: rgba(95, 90, 77, 0.9);
}

.wf-signup-form input[type="text"]:focus,
.wf-signup-form input[type="email"]:focus,
.wf-signup-form input[type="url"]:focus,
.wf-signup-form select:focus,
.wf-signup-form textarea:focus {
  border-color: rgba(229, 42, 18, 0.36);
  box-shadow: 0 0 0 4px rgba(0, 141, 54, 0.1);
}

.wf-signup-form input[disabled] {
  border-color: rgba(53, 51, 37, 0.08);
  background: rgba(233, 225, 207, 0.5);
  color: rgba(53, 51, 37, 0.58);
}

.wf-form-card,
.wf-form-check-card {
  border: 1px solid rgba(53, 51, 37, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(53, 51, 37, 0.05);
}

.wf-postcode-feedback {
  display: none;
  margin-top: 0.75rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.wf-postcode-feedback.is-visible {
  display: block;
}

.wf-postcode-feedback.is-info {
  border-color: rgba(53, 51, 37, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(53, 51, 37, 0.8);
}

.wf-postcode-feedback.is-pending {
  border-color: rgba(53, 51, 37, 0.12);
  background: rgba(233, 225, 207, 0.75);
  color: rgba(53, 51, 37, 0.82);
}

.wf-postcode-feedback.is-success {
  border-color: rgba(0, 141, 54, 0.18);
  background: rgba(237, 244, 234, 0.94);
  color: #235237;
}

.wf-postcode-feedback.is-error {
  border-color: rgba(229, 42, 18, 0.2);
  background: rgba(255, 240, 236, 0.95);
  color: #8b392a;
}

.wf-submit-bar {
  background:
    linear-gradient(180deg, rgba(247, 242, 232, 0.94), rgba(255, 253, 249, 0.98)),
    radial-gradient(circle at top right, rgba(0, 228, 87, 0.08), transparent 30%);
}

.wf-submit-button {
  border: 1px solid rgba(229, 42, 18, 0.18);
  background: linear-gradient(135deg, #e52a12 0%, #c40f0f 100%);
  box-shadow: 0 16px 32px rgba(196, 15, 15, 0.18);
}

.wf-submit-button:hover {
  background: linear-gradient(135deg, #cf1e0f 0%, #ab0d0d 100%);
}

.wf-submit-button[disabled] {
  cursor: wait;
  opacity: 0.88;
}

.wf-submit-feedback {
  display: none;
  margin-top: 1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(53, 51, 37, 0.12);
  padding: 1rem 1.25rem;
  color: var(--wf-ink);
  outline: none;
}

.wf-submit-feedback.is-visible {
  display: block;
}

.wf-submit-feedback-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.wf-submit-feedback-text {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.wf-submit-feedback.is-pending {
  border-color: rgba(53, 51, 37, 0.12);
  background: rgba(233, 225, 207, 0.75);
}

.wf-submit-feedback.is-success {
  border-color: rgba(0, 141, 54, 0.18);
  background: rgba(237, 244, 234, 0.94);
}

.faq-answer[hidden] {
  display: none;
}

[data-faq-item].is-open {
  border-color: rgba(229, 42, 18, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

[data-faq-icon] {
  transition: transform 0.28s ease;
}

[data-faq-item].is-open [data-faq-icon] {
  transform: rotate(45deg);
}

.contact-success {
  display: none;
}

.contact-success.is-visible {
  display: block;
}

[data-beukk-embed-form] {
  position: relative;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wf-button-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(229, 42, 18, 0.36);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .wf-photo-frame img,
  [data-reveal] {
    transition: none;
  }
}
