/*
Theme Name: Wildling Dreams
Author: Jorell Andrei
Description: Custom WordPress rebuild for Wildling Dreams.
Version: 1.0.0
Text Domain: wildling-dreams
*/

:root {
  --wd-primary: #004b4b;
  --wd-primary-dark: #003c3c;
  --wd-accent: #bfe7df;
  --wd-accent-soft: #d5f2ec;
  --wd-text: #111111;
  --wd-muted: #555555;
  --wd-white: #ffffff;
  --wd-light: #f7f3ef;
  --wd-border: #d8d8d8;
  --wd-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--wd-text);
  background: var(--wd-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wd-skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--wd-primary);
  color: var(--wd-white);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.wd-skip-link:focus {
  transform: translateY(0);
}

button,
input,
textarea {
  font-family: inherit;
}

.wd-container {
  width: min(var(--wd-max), calc(100% - 40px));
  margin: 0 auto;
}

.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wd-primary);
  color: var(--wd-white);
  padding: 13px 28px;
  min-width: 165px;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.wd-btn:hover {
  background: var(--wd-primary-dark);
  transform: translateY(-2px);
}

.wd-section {
  padding: 76px 0;
}

.wd-section-title {
  margin: 0 0 34px;
  color: var(--wd-primary);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wd-small-title {
  margin: 0 0 20px;
  color: var(--wd-primary);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.wd-copy {
  color: var(--wd-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
}

/* Header */

.wd-site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 75, 75, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 75, 75, 0.08);
}

.wd-header-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.wd-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.wd-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 220px;
  min-width: 0;
}

.wd-logo img {
  width: 100%;
  max-width: 220px;
  max-height: 72px;
  object-fit: contain;
}

.wd-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(0, 75, 75, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(0, 75, 75, 0.08);
  cursor: pointer;
  flex-shrink: 0;
}

.wd-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--wd-primary);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.wd-logo-text {
  color: var(--wd-primary);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.wd-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0e6d6d 0%, #004b4b 100%);
  color: var(--wd-white);
  padding: 8px 8px 8px 22px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(0, 75, 75, 0.08);
  box-shadow:
    0 16px 34px rgba(0, 75, 75, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.wd-header-cta-text {
  color: var(--wd-white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.wd-header-cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: var(--wd-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.wd-header-cta-arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.wd-header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px rgba(0, 75, 75, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: saturate(1.06);
}

.wd-header-cta:hover .wd-header-cta-icon {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.24);
}

.wd-main-nav {
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9e4e2;
  box-shadow: 0 14px 30px rgba(0, 75, 75, 0.12);
  flex-shrink: 1;
  min-width: 0;
}

.wd-main-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wd-main-nav a {
  color: #143e48;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  position: relative;
  border: 1px solid transparent;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.wd-main-nav a::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(0, 75, 75, 0.1);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.wd-main-nav a:hover,
.wd-main-nav .current-menu-item > a {
  color: #ffffff;
  background: linear-gradient(135deg, #0e6d6d 0%, #004b4b 100%);
  border-color: #0f6666;
  box-shadow: 0 10px 22px rgba(0, 75, 75, 0.18);
  transform: translateY(-1px);
}

.wd-main-nav a:hover::after,
.wd-main-nav .current-menu-item > a::after {
  opacity: 1;
}

.wd-site-header.is-menu-open .wd-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.wd-site-header.is-menu-open .wd-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.wd-site-header.is-menu-open .wd-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.admin-bar .wd-site-header {
  top: 32px;
}

/* Default page wrapper */

.wd-page-main {
  width: 100%;
  overflow: clip;
}

.home .wd-page-main > * {
  max-width: 100%;
}

/* Home Hero */

.wd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 635px;
}

.wd-hero-image {
  min-height: 635px;
  background-size: cover;
  background-position: center;
}

.wd-hero-content {
  display: flex;
  align-items: center;
  padding: 70px 70px;
}

.wd-hero-inner {
  max-width: 560px;
}

.wd-hero h1 {
  margin: 0 0 28px;
  color: var(--wd-primary);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wd-hero p {
  margin: 0 0 28px;
  color: #111111;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.22;
}

.wd-ebook-heading {
  margin: 0 0 28px;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.2;
  font-weight: 900;
}

/* Difference section */

.wd-difference {
  padding: 0 0 70px;
}

.wd-difference-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.wd-difference-label {
  background: var(--wd-primary);
  color: var(--wd-white);
  width: min(420px, 100%);
  margin: -1px 0 48px;
  padding: 20px 24px;
  text-align: center;
}

.wd-difference-label strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.wd-script {
  font-family: Georgia, serif;
  font-style: italic;
  text-transform: none;
  font-weight: 400;
}

.wd-difference-image-wrap {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  padding: 0 36px 36px 0;
}

.wd-difference-image-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  background: var(--wd-primary);
  z-index: -1;
}

.wd-difference-image-wrap img {
  width: 100%;
  aspect-ratio: 0.8 / 1;
  object-fit: cover;
}

/* Specialize */

.wd-specialize {
  padding: 28px 0 76px;
}

.wd-specialize-heading {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 26px;
  background: var(--wd-accent);
  padding: 22px 20px;
  text-align: center;
}

.wd-specialize-heading h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.wd-specialize-grid {
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #999999;
  background: #f8f5f1;
}

.wd-specialize-item {
  min-height: 175px;
  padding: 32px 18px;
  border-right: 1px solid #999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.wd-specialize-item:last-child {
  border-right: 0;
}

.wd-specialize-icon {
  color: var(--wd-primary);
  font-size: 28px;
  line-height: 1;
}

.wd-specialize-item p {
  margin: 0;
  color: #163e47;
  font-size: 14px;
  line-height: 1.25;
}

/* Begin section */

.wd-begin {
  padding: 76px 0;
}

.wd-begin-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.wd-begin-copy {
  border-top: 1px solid #a8b8b8;
  padding-top: 22px;
}

.wd-begin-image-wrap {
  position: relative;
  max-width: 365px;
  margin-left: auto;
  padding: 0 0 32px 32px;
}

.wd-begin-image-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  background: var(--wd-primary);
  z-index: -1;
}

.wd-begin-image-wrap img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
}

/* About */

.wd-about {
  padding: 38px 0 86px;
}

.wd-about-title {
  display: inline-block;
  background: var(--wd-primary);
  color: var(--wd-white);
  padding: 8px 14px;
  margin: 0 0 32px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.wd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.wd-about p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.wd-about strong {
  font-weight: 900;
}

.wd-about-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

.wd-about-cta-card {
  width: min(390px, 100%);
  background: var(--wd-accent-soft);
  padding: 32px;
  position: relative;
}

.wd-about-cta-card::before {
  content: "";
  position: absolute;
  right: 40px;
  top: -26px;
  width: 260px;
  height: 16px;
  background: var(--wd-primary);
}

/* Quote banner */

.wd-quote-banner {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.wd-quote-box {
  width: min(var(--wd-max), calc(100% - 40px));
  margin: 0 auto;
}

.wd-quote-box h2 {
  max-width: 410px;
  margin: 0 0 24px;
  color: var(--wd-primary);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

/* Testimonials */

.wd-testimonials {
  padding: 44px 0 76px;
}

.wd-testimonials h2 {
  margin: 0 0 42px;
  text-align: center;
  color: var(--wd-primary);
  font-size: 28px;
  text-transform: uppercase;
}

.wd-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.wd-testimonial {
  font-size: 14px;
  line-height: 1.6;
}

.wd-quote-mark {
  display: block;
  color: var(--wd-primary);
  font-size: 58px;
  line-height: 0.6;
  font-family: Georgia, serif;
}

.wd-testimonial-name {
  display: block;
  margin-top: 18px;
  color: #999999;
}

/* Support section */

.wd-support {
  padding: 60px 0;
}

.wd-support-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: stretch;
}

.wd-support-copy {
  padding: 50px 70px 50px 0;
}

.wd-support-card {
  background: var(--wd-primary);
  color: var(--wd-white);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
}

.wd-support-card h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.wd-support-card em {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.9em;
  text-transform: none;
}

/* Seen / booking */

.wd-booking {
  padding: 28px 0 76px;
}

.wd-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.wd-seen-title {
  margin: 0 0 18px;
  color: var(--wd-primary);
  font-size: 18px;
  text-transform: uppercase;
}

.wd-booking-cta {
  text-align: center;
}

.wd-booking-cta h2 {
  color: var(--wd-primary);
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

/* Footer */

.wd-site-footer {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(135deg, #f3eee8 0%, #cdebe5 42%, #0b5e5e 100%);
  color: #111111;
  padding: 44px 0 0;
  position: relative;
  overflow: hidden;
}

.wd-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(243, 238, 232, 0.3), rgba(0, 75, 75, 0.36)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 35%, rgba(0, 75, 75, 0.12) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") left center / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
  filter: saturate(0.78) contrast(0.94);
}

.wd-site-footer::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 42px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 70%);
  pointer-events: none;
}

.wd-footer-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.wd-footer-column {
  padding: 34px 30px;
  min-width: 0;
}

.wd-footer-column h3 {
  margin: 0 0 12px;
  color: #000000;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.wd-footer-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(0, 75, 75, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 75, 75, 0.08);
  backdrop-filter: blur(10px);
}

.wd-footer-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 75, 75, 0.08);
  color: var(--wd-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wd-footer-eyebrow-light {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
}

.wd-footer-intro,
.wd-footer-contact-copy {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
}

.wd-footer-meta {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.78);
}

.wd-footer-form {
  display: grid;
  gap: 12px;
}

.wd-footer-feedback {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.55;
  border: 1px solid transparent;
}

.wd-footer-feedback-success {
  background: rgba(41, 120, 90, 0.12);
  border-color: rgba(41, 120, 90, 0.2);
  color: #18543d;
}

.wd-footer-feedback-error {
  background: rgba(173, 48, 48, 0.1);
  border-color: rgba(173, 48, 48, 0.16);
  color: #7b2020;
}

.wd-footer-form input,
.wd-footer-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 75, 75, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 13px 14px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.wd-footer-form input:focus,
.wd-footer-form textarea:focus {
  border-color: rgba(0, 75, 75, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 75, 75, 0.08);
}

.wd-footer-form textarea {
  min-height: 108px;
  resize: vertical;
}

.wd-footer-form button {
  width: fit-content;
  background: var(--wd-primary);
  color: var(--wd-white);
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.7px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.wd-footer-form button:hover {
  background: var(--wd-primary-dark);
  transform: translateY(-1px);
}

.wd-footer-contact {
  color: var(--wd-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(0, 75, 75, 0.88), rgba(0, 60, 60, 0.95));
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 60, 60, 0.22);
}

.wd-footer-contact p {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.wd-footer-brand {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.wd-footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.wd-footer-brand-logo img {
  width: 100%;
  max-width: 220px;
  max-height: 78px;
  object-fit: contain;
}

.wd-footer-brand-copy {
  margin: 16px 0 0;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.wd-footer-contact h3 {
  color: var(--wd-white);
}

.wd-footer-contact .wd-footer-contact-copy {
  color: rgba(255, 255, 255, 0.78);
}

.wd-footer-contact strong {
  font-weight: 700;
}

.wd-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.wd-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.25s ease, background 0.25s ease;
}

.wd-socials a ion-icon {
  font-size: 18px;
}

.wd-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.wd-copyright {
  background: #003c3c;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.wd-copyright::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 44px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  transform: rotate(-18deg);
  pointer-events: none;
}

/* Responsive */

@media (max-width: 1180px) {
  .wd-header-inner {
    width: min(100% - 28px, 1180px);
    gap: 12px;
    padding: 8px 0;
    min-height: 72px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    position: relative;
  }

  .wd-logo {
    width: auto;
    max-width: 160px;
    justify-content: flex-start;
    margin-right: auto;
  }

  .wd-logo img {
    max-width: 160px;
  }

  .wd-menu-toggle {
    display: inline-block;
  }

  .wd-header-cta {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 16px;
    justify-content: center;
    box-shadow:
      0 12px 24px rgba(0, 75, 75, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  .wd-header-cta-text {
    display: none;
  }

  .wd-main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(240px, calc(100vw - 28px));
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-width: 0;
    border-radius: 22px;
    background: #ffffff;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 0.3s ease,
      opacity 0.25s ease,
      transform 0.25s ease,
      padding 0.25s ease,
      border-width 0.25s ease;
  }

  .wd-site-header.is-menu-open .wd-main-nav {
    max-height: 280px;
    padding: 12px;
    border-width: 1px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .wd-main-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wd-main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .wd-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wd-footer-contact {
    grid-column: 1 / -1;
  }

  .wd-hero,
  .wd-difference-grid,
  .wd-begin-grid,
  .wd-about-grid,
  .wd-support-grid,
  .wd-booking-grid {
    grid-template-columns: 1fr;
  }

  .wd-hero-content {
    padding: 56px 24px;
  }

  .wd-difference-label {
    margin-left: auto;
    margin-right: auto;
  }

  .wd-difference-image-wrap,
  .wd-begin-image-wrap {
    margin: 0 auto;
  }

  .wd-support-copy {
    padding: 20px 0 40px;
  }

  .home .wd-page-main [style*="padding: 64px 18px"],
  .home .wd-page-main [style*="padding: 72px 22px"],
  .home .wd-page-main [style*="padding: 78px 0"] {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 760px) {
  body.admin-bar .wd-site-header {
    top: 46px;
  }

  .wd-header-inner {
    min-height: 64px;
    padding: 6px 0;
  }

  .wd-logo img {
    max-width: 148px;
  }

  .wd-header-cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 14px;
  }

  .wd-hero {
    min-height: auto;
  }

  .wd-hero-image {
    min-height: 440px;
  }

  .wd-hero-content {
    padding: 42px 20px;
  }

  .wd-main-nav {
    right: 0;
    left: auto;
  }

  .wd-section {
    padding: 58px 0;
  }

  .wd-specialize-grid,
  .wd-testimonial-grid,
  .wd-footer-grid {
    grid-template-columns: 1fr;
  }

  .wd-specialize-item {
    border-right: 0;
    border-bottom: 1px solid #999999;
  }

  .wd-specialize-item:last-child {
    border-bottom: 0;
  }

  .wd-about-cta {
    justify-content: center;
  }

  .wd-testimonial-grid {
    gap: 34px;
  }

  .wd-footer-grid {
    width: min(100%, calc(100% - 24px));
    gap: 18px;
  }

  .wd-footer-column {
    padding: 28px 22px;
  }

  .wd-footer-column h3 {
    font-size: 20px;
  }

  .wd-footer-form button {
    width: 100%;
    justify-content: center;
  }

  .wd-footer-contact {
    text-align: center;
    align-items: center;
  }

  .wd-footer-form {
    width: 100%;
  }

  .wd-footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wd-footer-brand-copy,
  .wd-footer-contact-copy {
    max-width: 100%;
  }

  .wd-socials {
    justify-content: center;
  }

  .home .wd-page-main {
    overflow-x: hidden;
  }

  .home .wd-page-main [class*="wd"][class*="-grid"],
  .home .wd-page-main [class*="wd"][class*="-intro"],
  .home .wd-page-main [class*="wd"][class*="-carousel"] {
    max-width: 100%;
  }

  .wd-site-footer::after {
    left: -110px;
    bottom: 90px;
    width: 200px;
    height: 200px;
  }

  .wd-copyright::before {
    left: 20px;
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .wd-header-inner {
    width: min(100% - 20px, 1180px);
    gap: 10px;
    min-height: 60px;
    padding: 6px 0;
  }

  .wd-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .wd-header-cta-icon {
    width: 34px;
    height: 34px;
  }

  .wd-main-nav {
    width: min(240px, calc(100vw - 20px));
    border-radius: 20px;
  }

  .wd-site-header.is-menu-open .wd-main-nav {
    padding: 8px;
  }

  .wd-main-nav a {
    min-height: 40px;
    font-size: 12px;
  }

  .wd-footer-column {
    padding: 24px 18px;
  }

  .wd-footer-grid {
    width: min(100%, calc(100% - 16px));
  }

  .wd-footer-brand-logo {
    max-width: 100%;
    padding: 16px;
  }

  .wd-footer-form input,
  .wd-footer-form textarea {
    padding: 12px 13px;
  }

  .wd-socials a {
    width: 40px;
    height: 40px;
  }

  .wd-copyright::before {
    display: none;
  }

  .home .wd-page-main {
    font-size: 16px;
  }
}
