/* ── Design tokens ── */
:root{
  --green:#226040; --green-d:#1a4d33;
  --heading:#332106;
  --footer-bg:#110B01;
  --cream:#FDFAF1;
  --sage:#EDF0D9;
  --body:#332106;
  --gold:#C9A96E;
  --white:#fff;
  --ff-h:'Playfair Display',Georgia,serif;
  --ff-b:'Open Sans',system-ui,sans-serif;
  --r:999px; --hh:104px; --tr:.18s ease; --max-w:1440px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--ff-b);color:var(--body);background:var(--white);line-height:1.7;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
em{font-style:italic}
h1,h2,h3,h4{font-family:var(--ff-h);font-weight:600;line-height:1.2;color:var(--heading)}
h1 em,h2 em,h3 em,h4 em{font-weight:400;font-style:italic}
h1{font-size:clamp(2.8rem,6vw,4.25rem)}
h2{font-size:clamp(2rem,4vw,3rem);line-height:1.25}
h3{font-size:clamp(1rem,1.5vw,1.2rem)}
.text-center{text-align:center}
.container{max-width:var(--max-w);margin-inline:auto;padding-inline:clamp(20px,8.333vw,120px);box-sizing:border-box}
.section-label{display:inline-block;font-size:1rem;font-weight:400;letter-spacing:.1em;text-transform:uppercase;color:var(--green);margin-bottom:14px}

/* ── Buttons ── */
.btn{display:inline-flex;align-items:center;gap:8px;padding:16px 32px;font-family:var(--ff-b);font-size:.8rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;border-radius:var(--r);border:1.5px solid transparent;transition:var(--tr);white-space:nowrap;cursor:pointer}
.btn--dark{background:var(--heading);color:var(--white);border-color:var(--heading)}
.btn--dark:hover{background:#4a2f08;border-color:#4a2f08}
.btn--green{background:var(--green);color:var(--white);border-color:var(--green)}
.btn--green:hover{background:var(--green-d);border-color:var(--green-d)}
.btn--outline-dark{background:transparent;color:var(--heading);border-color:var(--heading);padding:12px 30px}
.btn--outline-dark:hover{background:var(--heading);color:var(--white)}
.btn--outline-light{background:transparent;color:var(--white);border-color:rgba(255,255,255,.5);padding:12px 28px;font-size:.75rem}
.btn--outline-light:hover{background:var(--white);color:var(--heading)}
.btn--book{background:transparent;color:var(--heading);border-color:var(--heading);padding:10px 24px;font-size:.75rem}
.btn--book:hover{background:var(--heading);color:var(--white)}
.btn--arrow{display:inline-flex;align-items:center;gap:10px;font-family:var(--ff-b);font-size:.95rem;color:var(--heading);transition:color var(--tr);background:none;border:none;padding:0;cursor:pointer}
.btn--arrow:hover{color:var(--green)}

/* ── Reveal ── */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .75s ease,transform .75s ease}
.reveal.is-visible{opacity:1;transform:none}

/* ── Header pill ── */
.site-header{position:fixed;top:16px;left:50%;transform:translateX(-50%);width:calc(100% - 48px);max-width:1400px;z-index:200;background:rgba(253,250,241,.97);border-radius:24px;box-shadow:0 4px 32px rgba(0,0,0,.1);transition:box-shadow var(--tr)}
.site-header.is-scrolled{box-shadow:0 8px 40px rgba(0,0,0,.18)}
.site-header__bar{height:var(--hh);display:flex;align-items:center;padding:0 28px;position:relative}
.site-header__logo img{height:84px;width:auto;object-fit:contain}
.nav-primary{position:absolute;left:50%;transform:translateX(-50%)}
.nav-primary__list{display:flex;align-items:center;gap:0}
.nav-primary__list>li>a{display:block;padding:8px 14px;font-size:.85rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--heading);transition:color var(--tr);white-space:nowrap}
.nav-primary__list>li>a:hover,.nav-services-toggle.is-active{color:var(--green)}
.nav-arrow{display:inline-block;width:8px;height:8px;border-right:2.5px solid currentColor;border-bottom:2.5px solid currentColor;transform:rotate(45deg);margin-left:6px;vertical-align:middle;position:relative;top:-2px;transition:transform .25s ease,top .25s ease;flex-shrink:0;font-size:0;line-height:0}
.nav-services-toggle.is-active .nav-arrow{transform:rotate(-135deg);top:1px}
.site-header__actions{display:flex;align-items:center;gap:14px;flex-shrink:0;margin-left:auto}
.burger{display:none;flex-direction:column;gap:5px;padding:8px;margin-left:auto;flex-shrink:0}
.burger span{display:block;width:24px;height:2px;background:var(--heading);border-radius:2px;transition:var(--tr)}
.burger.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.is-active span:nth-child(2){opacity:0}
.burger.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ── Mega menu (inside pill) ── */
.mega-menu{max-height:0;overflow:hidden;opacity:0;padding:0 28px;transition:max-height .35s ease,opacity .2s ease,padding .35s ease}
.site-header.mega-open .mega-menu{max-height:860px;opacity:1;padding:0 28px 28px}
.mega-menu__inner{display:flex;gap:0;border-top:1px solid rgba(0,0,0,.07);padding-top:20px}
.mega-menu__tabs{flex:0 0 280px;padding-right:24px;border-right:1px solid rgba(0,0,0,.07);display:flex;flex-direction:column;gap:2px}
.mega-tab{padding:10px 12px;font-size:.75rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--heading);text-align:left;border-radius:6px;transition:color var(--tr),background var(--tr);line-height:1.3}
.mega-tab:hover{color:var(--green)}
.mega-tab.is-active{color:var(--green)}
.mega-menu__content{flex:1;padding-left:32px}
.mega-panel{display:none;opacity:0;transition:opacity .2s ease}
.mega-panel.is-active{display:block;opacity:1}
.mega-panel__cols{display:block;columns:3;column-gap:28px;column-fill:balance}
.mega-panel__cols--1{grid-template-columns:1fr}
.mega-col{display:flex;flex-direction:column;gap:3px;break-inside:avoid;margin-bottom:14px}
.mega-col__label{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--heading);margin-bottom:5px;display:flex;align-items:center;gap:8px}
.mega-col__label::before{content:"";display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--green);flex-shrink:0}
.mega-col a{font-size:.85rem;color:var(--body);padding:2px 0;letter-spacing:0;text-transform:none;font-weight:400;transition:color var(--tr);display:block}
.mega-col a:hover{color:var(--heading)}

/* ── Mobile drawer ── */
.mobile-nav{display:none;position:fixed;top:calc(var(--hh) + 24px);left:12px;right:12px;background:var(--cream);padding:24px 20px 28px;overflow-y:auto;max-height:calc(100vh - var(--hh) - 36px);z-index:199;border-radius:20px;box-shadow:0 8px 32px rgba(0,0,0,.12)}
.mobile-nav.is-open{display:block}
.mobile-nav__list{display:flex;flex-direction:column}
.mobile-nav__list>li>a{display:block;font-size:.9rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--heading);padding:13px 0;border-bottom:1px solid rgba(0,0,0,.06)}
.mobile-nav__book{margin-top:20px;width:100%;justify-content:center}
.mobile-services-btn{width:100%;display:flex;align-items:center;justify-content:space-between;font-size:.9rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--heading);padding:13px 0;border-bottom:1px solid rgba(0,0,0,.06);transition:color var(--tr)}
.mobile-services-btn.is-active{color:var(--green)}
.mobile-services-btn .nav-arrow{transition:transform .25s ease,top .25s ease}
.mobile-services-btn.is-active .nav-arrow{transform:rotate(-135deg);top:1px}
.mobile-services-panel{display:none;padding:8px 0 4px}
.mobile-services-panel.is-open{display:block}
.mobile-tab-group{border-bottom:1px solid rgba(0,0,0,.05)}
.mobile-tab-btn{width:100%;display:flex;align-items:center;justify-content:space-between;font-size:.8rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--heading);padding:11px 8px;transition:color var(--tr)}
.mobile-tab-btn.is-active{color:var(--green)}
.mobile-tab-arrow{display:inline-block;width:8px;height:8px;border-right:2.5px solid currentColor;border-bottom:2.5px solid currentColor;transform:rotate(45deg);vertical-align:middle;position:relative;top:-2px;transition:transform .25s ease,top .25s ease;flex-shrink:0;font-size:0;line-height:0}
.mobile-tab-btn.is-active .mobile-tab-arrow{transform:rotate(-135deg);top:1px}
.mobile-tab-content{display:none;padding:4px 8px 12px}
.mobile-tab-content.is-open{display:block}
.mobile-tab-section{margin-bottom:12px}
.mobile-section-label{font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--green);margin-bottom:6px;display:flex;align-items:center;gap:6px}
.mobile-section-label::before{content:"";display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--green);flex-shrink:0}
.mobile-tab-content a{display:block;font-size:.85rem;color:var(--body);padding:5px 0;border-bottom:1px solid rgba(0,0,0,.04);transition:color var(--tr)}
.mobile-tab-content a:hover{color:var(--heading)}

/* ── Footer ── */
footer#footer{background:var(--footer-bg);color:rgba(255,255,255,.8)}
.footer-top{padding:52px 0 44px}
.footer-top__inner{display:flex;align-items:center;justify-content:space-between}
.footer-logo-link img{height:90px;width:auto;object-fit:contain}
.footer-cta{font-size:.8rem}
.footer-hr{border:none;border-top:1px solid rgba(255,255,255,.15);margin:0}
.footer-main{padding:48px 0 40px}
.footer-cols{display:grid;grid-template-columns:repeat(4,1fr);gap:40px}
.footer-col__title{font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:18px}
.footer-col__addr{font-size:.9rem;line-height:1.75;color:rgba(255,255,255,.75)}
.footer-col__list{display:flex;flex-direction:column;gap:10px}
.footer-col__list a{font-size:.9rem;color:rgba(255,255,255,.75);transition:color var(--tr)}
.footer-col__list a:hover{color:var(--white)}
.footer-social{display:flex;gap:10px;margin-top:20px}
.footer-social__link{width:38px;height:38px;border-radius:9px;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.8);transition:background var(--tr),color var(--tr)}
.footer-social__link:hover{background:rgba(255,255,255,.2);color:var(--white)}
.footer-copy{border-top:1px solid rgba(255,255,255,.08);padding:22px 0;text-align:left}
.footer-copy p{font-size:.8rem;color:rgba(255,255,255,.3)}

/* ── Responsive ── */
@media(max-width:1024px){
  .site-header{top:12px;width:calc(100% - 24px);border-radius:24px}
  .site-header__actions{display:none}
  .site-header.mega-open{border-radius:24px}
  .mega-menu{max-height:0!important;opacity:0!important;overflow:hidden!important;pointer-events:none!important}
  .nav-primary{display:none}
  .burger{display:flex}
  .footer-cols{grid-template-columns:1fr 1fr;gap:32px}
  .footer-top__inner{flex-direction:column;align-items:flex-start;gap:24px}
}
@media(max-width:640px){
  .footer-cols{grid-template-columns:1fr}
  .site-header__actions .btn--book{display:none}
  .footer-top{padding:36px 0 32px}
}

/* ── CTA Band (shared) ── */
.cta-band{background-color:var(--sage);background-image:url('../img/Group-13.svg');background-repeat:no-repeat;background-position:center center;background-size:cover;min-height:610px;display:flex;align-items:center;justify-content:center;padding:clamp(60px,8.333vw,120px) 0}
.cta-band__inner{display:flex;flex-direction:column;align-items:center;text-align:center;gap:22px}
.cta-band h2{color:var(--heading);max-width:900px;font-size:3rem;line-height:1.25}
.cta-band h2 em{color:var(--green);font-style:italic}
.cta-band p{color:#332106;font-size:1.05rem;max-width:580px;line-height:1.75}
.cta-band__tag{display:inline-flex;align-items:center;gap:8px;background:#fff;color:#226040;border-radius:100px;padding:9px 22px 9px 16px;font-family:var(--ff-b);font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;box-shadow:0 2px 16px rgba(34,96,64,.14);margin:-4px 0 0}

@media(max-width:767px){.site-header__logo img{height:60px}.site-header__bar{padding:0 16px;height:72px}}
@media(max-width:767px){.cta-band{background-image:url('/wp-content/uploads/2026/06/Group-13.svg');background-size:cover;background-position:center center}.cta-band h2{font-size:1.75rem}.cta-band__tag{font-size:.7rem;padding:7px 14px 7px 12px;letter-spacing:.04em;gap:6px}.cta-band__tag svg{width:13px;height:13px}}
@media(max-width:420px){.cta-band__tag{font-size:.65rem;padding:6px 12px 6px 10px;letter-spacing:.03em}}\n

/* ── Mobile Bottom Bar ── */
.mobile-bar{display:none !important}
@media(max-width:767px){
  body{padding-bottom:72px}
  .mobile-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:fixed;
    bottom:12px;
    left:12px;
    right:12px;
    z-index:300;
    background:var(--heading);
    border-radius:20px;
    padding:12px 16px;
    box-shadow:0 4px 24px rgba(0,0,0,.25);
  }
  .mobile-bar__socials{display:flex;align-items:center;gap:18px}
  .mobile-bar__social{display:flex;align-items:center;justify-content:center;width:32px;height:32px;opacity:.9;transition:opacity .2s}
  .mobile-bar__social:hover{opacity:1}
  .mobile-bar__social img{width:24px;height:24px;object-fit:contain;filter:brightness(0) invert(1)}
  .mobile-bar__btn{
    display:inline-flex;
    align-items:center;
    background:#fff;
    color:var(--heading);
    font-family:var(--ff-b);
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:10px 22px;
    border-radius:100px;
    text-decoration:none;
    white-space:nowrap;
    transition:background .2s,color .2s;
  }
  .mobile-bar__btn:hover{background:var(--cream);color:var(--heading)}
}

/* ═══════════════════════════════════════════════════
   POPUP — Contact Form  (Popup Maker, popup ID 676)
═══════════════════════════════════════════════════ */

/* Popup container */
.popmake-676 {
  max-width: 640px !important;
  width: 92vw !important;
  padding: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.18) !important;
}

/* Remove PUM theme's default content padding */
.popmake-676 .pum-content { padding: 0 !important; }

/* Form wrapper — cream background, generous padding */
.pum-form-col {
  background: var(--cream, #f8f5ef);
  padding: 56px 56px 60px;
  box-sizing: border-box;
  text-align: center;
}

/* Label */
.pum-label {
  font-family: var(--ff-b, sans-serif);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #226040;
  margin: 0 0 16px;
  display: block;
}

/* Heading */
.pum-form-h {
  font-family: var(--ff-h, serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: #332106;
  margin: 0 0 20px;
}
.pum-form-h em {
  font-style: italic;
  font-weight: 400;
  color: #332106;
}

/* Sub */
.pum-form-sub {
  font-family: var(--ff-b, sans-serif);
  font-size: 15px;
  font-weight: 400;
  color: #332106;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 36px;
  opacity: .75;
}

/* WPForms — full-width inputs */
.pum-form-col .wpforms-form input.wpforms-field-medium,
.pum-form-col .wpforms-form input.wpforms-field-small,
.pum-form-col .wpforms-form select.wpforms-field-medium,
.pum-form-col .wpforms-form select.wpforms-field-small {
  max-width: 100% !important;
  width: 100% !important;
}
.pum-form-col .wpforms-container { max-width: 100%; margin: 0 !important; }
.pum-form-col .wpforms-form .wpforms-field { padding: 0; margin-bottom: 16px; }
.pum-form-col .wpforms-form .wpforms-field-label,
.pum-form-col .wpforms-form .wpforms-required-label,
.pum-form-col .wpforms-form fieldset legend.wpforms-field-label { display: none !important; }

/* Inputs */
.pum-form-col .wpforms-form input[type="text"],
.pum-form-col .wpforms-form input[type="email"],
.pum-form-col .wpforms-form input[type="tel"] {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid rgba(51,33,6,.12) !important;
  border-radius: 100px !important;
  padding: 14px 28px !important;
  height: auto !important;
  font-family: var(--ff-b, sans-serif) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #332106 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  text-align: left !important;
}
.pum-form-col .wpforms-form input[type="text"]:focus,
.pum-form-col .wpforms-form input[type="email"]:focus,
.pum-form-col .wpforms-form input[type="tel"]:focus {
  box-shadow: 0 0 0 2px rgba(34,96,64,.2) !important;
  outline: none !important;
}
.pum-form-col .wpforms-form input::placeholder { color: rgba(51,33,6,.4) !important; }

/* Checkbox */
.pum-form-col .wpforms-form .wpforms-field-checkbox ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.pum-form-col .wpforms-form .wpforms-field-checkbox li { display: flex !important; align-items: flex-start !important; gap: 8px !important; text-align: left !important; }
.pum-form-col .wpforms-form .wpforms-field-checkbox input[type="checkbox"] { margin: 3px 0 0 !important; flex-shrink: 0 !important; width: 15px !important; height: 15px !important; accent-color: #226040 !important; }
.pum-form-col .wpforms-form .wpforms-field-checkbox .wpforms-field-label-inline { font-family: var(--ff-b, sans-serif) !important; font-size: 14px !important; color: #332106 !important; line-height: 1.5 !important; }

/* Submit */
.pum-form-col .wpforms-form .wpforms-submit-container { padding: 0; margin-top: 4px; }
.pum-form-col .wpforms-form button[type="submit"],
.pum-form-col .wpforms-form .wpforms-submit {
  width: 100% !important;
  background: transparent !important;
  border: 1.5px solid #332106 !important;
  border-radius: 100px !important;
  font-family: var(--ff-b, sans-serif) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  color: #332106 !important;
  cursor: pointer !important;
  transition: background .2s ease, color .2s ease !important;
  box-shadow: none !important;
  height: auto !important;
  padding: 18px 0 !important;
  line-height: 1.4 !important;
  display: block !important;
}
.pum-form-col .wpforms-form button[type="submit"]:hover,
.pum-form-col .wpforms-form .wpforms-submit:hover { background: #332106 !important; color: #fff !important; }
.pum-form-col .wpforms-submit-container img { display: none !important; }

/* Confirmation */
.pum-form-col .wpforms-confirmation-container-full,
.pum-form-col .wpforms-confirmation-scroll {
  background: rgba(34,96,64,.1) !important;
  border: 1px solid rgba(34,96,64,.3) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  text-align: left !important;
  font-family: var(--ff-b, sans-serif) !important;
  font-size: 15px !important;
  color: #332106 !important;
}
.pum-form-col .wpforms-form label.wpforms-error { color: #c0392b !important; font-size: 13px !important; text-align: left !important; display: block !important; }

/* Close button — match site style */
.popmake-676 .pum-close {
  top: 16px !important;
  right: 16px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 6px !important;
  border: 1.5px solid rgba(51,33,6,.2) !important;
  background: #fff !important;
  color: #332106 !important;
  font-size: 18px !important;
  line-height: 30px !important;
  text-align: center !important;
  padding: 0 !important;
  opacity: 1 !important;
}
.popmake-676 .pum-close:hover { background: #332106 !important; color: #fff !important; border-color: #332106 !important; }

@media (max-width: 600px) {
  .pum-form-col { padding: 40px 24px 48px; }
  .pum-form-h { font-size: 36px; }
  .pum-form-sub { font-size: 14px; }
}


/* ═══════════════════════════════════════════════════
   POPUP — Contact Form  (Popup Maker, popup ID 676)
═══════════════════════════════════════════════════ */

/* Popup container — white bg, rounded, no inner padding */
.popmake-676 {
  max-width: 660px !important;
  width: 92vw !important;
  padding: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 32px 80px rgba(0,0,0,.22) !important;
}
.popmake-676 .pum-content { padding: 0 !important; background: #fff !important; }

/* Form wrapper */
.pum-form-col {
  background: #fff;
  padding: 52px 60px 60px;
  box-sizing: border-box;
  text-align: center;
}

/* Label */
.pum-label {
  font-family: var(--ff-b, sans-serif);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #226040;
  margin: 0 0 14px;
  display: block;
}

/* Heading */
.pum-form-h {
  font-family: var(--ff-h, serif);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1209;
  margin: 0 0 20px;
  letter-spacing: -.01em;
}
.pum-form-h em {
  font-style: italic;
  font-weight: 400;
  color: #1a1209;
}

/* Sub */
.pum-form-sub {
  font-family: var(--ff-b, sans-serif);
  font-size: 15px;
  font-weight: 400;
  color: #332106;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 36px;
  opacity: .65;
}

/* WPForms — reset and full-width */
.pum-form-col .wpforms-form input.wpforms-field-medium,
.pum-form-col .wpforms-form input.wpforms-field-small,
.pum-form-col .wpforms-form select.wpforms-field-medium,
.pum-form-col .wpforms-form select.wpforms-field-small {
  max-width: 100% !important;
  width: 100% !important;
}
.pum-form-col .wpforms-container { max-width: 100%; margin: 0 !important; }
.pum-form-col .wpforms-form .wpforms-field { padding: 0; margin-bottom: 14px; }
.pum-form-col .wpforms-form .wpforms-field-label,
.pum-form-col .wpforms-form .wpforms-required-label,
.pum-form-col .wpforms-form fieldset legend.wpforms-field-label { display: none !important; }

/* Inputs — white bg, warm subtle border, pill shape */
.pum-form-col .wpforms-form input[type="text"],
.pum-form-col .wpforms-form input[type="email"],
.pum-form-col .wpforms-form input[type="tel"] {
  width: 100% !important;
  background: #faf7f2 !important;
  border: 1px solid rgba(51,33,6,.10) !important;
  border-radius: 100px !important;
  padding: 15px 28px !important;
  height: auto !important;
  font-family: var(--ff-b, sans-serif) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #332106 !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box !important;
  text-align: left !important;
}
.pum-form-col .wpforms-form input[type="text"]:focus,
.pum-form-col .wpforms-form input[type="email"]:focus,
.pum-form-col .wpforms-form input[type="tel"]:focus {
  border-color: rgba(34,96,64,.35) !important;
  box-shadow: none !important;
}
.pum-form-col .wpforms-form input::placeholder { color: rgba(51,33,6,.38) !important; }

/* Checkbox */
.pum-form-col .wpforms-form .wpforms-field-checkbox ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.pum-form-col .wpforms-form .wpforms-field-checkbox li { display: flex !important; align-items: flex-start !important; gap: 10px !important; text-align: left !important; }
.pum-form-col .wpforms-form .wpforms-field-checkbox input[type="checkbox"] { margin: 3px 0 0 !important; flex-shrink: 0 !important; width: 15px !important; height: 15px !important; accent-color: #226040 !important; cursor: pointer !important; }
.pum-form-col .wpforms-form .wpforms-field-checkbox .wpforms-field-label-inline { font-family: var(--ff-b, sans-serif) !important; font-size: 14px !important; color: rgba(51,33,6,.7) !important; line-height: 1.5 !important; }

/* Submit */
.pum-form-col .wpforms-form .wpforms-submit-container { padding: 0; margin-top: 8px; }
.pum-form-col .wpforms-form button[type="submit"],
.pum-form-col .wpforms-form .wpforms-submit {
  width: 100% !important;
  background: transparent !important;
  border: 1.5px solid #332106 !important;
  border-radius: 100px !important;
  font-family: var(--ff-b, sans-serif) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  color: #332106 !important;
  cursor: pointer !important;
  transition: background .2s ease, color .2s ease !important;
  box-shadow: none !important;
  height: auto !important;
  padding: 18px 0 !important;
  line-height: 1.4 !important;
  display: block !important;
  --wpforms-button-size-height: auto !important;
}
.pum-form-col .wpforms-form button[type="submit"]:hover,
.pum-form-col .wpforms-form .wpforms-submit:hover { background: #332106 !important; color: #fff !important; }
.pum-form-col .wpforms-submit-container img { display: none !important; }

/* Confirmation */
.pum-form-col .wpforms-confirmation-container-full,
.pum-form-col .wpforms-confirmation-scroll {
  background: rgba(34,96,64,.08) !important;
  border: 1px solid rgba(34,96,64,.25) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  text-align: left !important;
  font-family: var(--ff-b, sans-serif) !important;
  font-size: 15px !important;
  color: #332106 !important;
}
.pum-form-col .wpforms-form label.wpforms-error { color: #c0392b !important; font-size: 13px !important; text-align: left !important; display: block !important; margin-top: 4px !important; }

/* Close button — plain ×, no border */
.popmake-676 .pum-close {
  position: absolute !important;
  top: 18px !important;
  right: 20px !important;
  width: 28px !important;
  height: 28px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #332106 !important;
  font-size: 22px !important;
  line-height: 28px !important;
  text-align: center !important;
  padding: 0 !important;
  opacity: .55 !important;
  cursor: pointer !important;
  border-radius: 0 !important;
}
.popmake-676 .pum-close:hover { opacity: 1 !important; background: transparent !important; }

@media (max-width: 600px) {
  .pum-form-col { padding: 40px 24px 48px; }
  .pum-form-h { font-size: 38px; }
}


/* ── Nav dropdown (Technologies & similar) ── */
.has-dropdown{position:relative}
.nav-dropdown{position:absolute;top:calc(100% + 6px);left:0;background:#fff;border-radius:14px;box-shadow:0 8px 32px rgba(0,0,0,.12);padding:8px 0;min-width:210px;list-style:none;margin:0;opacity:0;visibility:hidden;transform:translateY(6px);transition:opacity .2s ease,transform .2s ease,visibility .2s;z-index:300}
.has-dropdown:hover .nav-dropdown,.has-dropdown:focus-within .nav-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.nav-dropdown li{list-style:none}
.nav-dropdown li a{display:block;padding:9px 20px;font-size:.82rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:var(--heading);white-space:nowrap;transition:color var(--tr),background var(--tr);border-radius:8px;margin:0 4px}
.nav-dropdown li a:hover{color:var(--green);background:rgba(34,96,64,.06)}

/* ── Mobile dropdown accordion ── */
.mobile-has-dropdown .mobile-dropdown-btn{width:100%;display:flex;align-items:center;justify-content:space-between;font-size:.9rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--heading);padding:13px 0;border-bottom:1px solid rgba(0,0,0,.06);transition:color var(--tr)}
.mobile-has-dropdown .mobile-dropdown-btn.is-active{color:var(--green)}
.mobile-dropdown-panel{display:none;padding:8px 0 4px 12px}
.mobile-dropdown-panel a{display:block;font-size:.85rem;font-weight:500;color:var(--body);padding:9px 0;border-bottom:1px solid rgba(0,0,0,.04);transition:color var(--tr)}
.mobile-dropdown-panel a:last-child{border-bottom:none}
.mobile-dropdown-panel a:hover{color:var(--green)}


/* ── Footer Contact Map Block ── */
.footer-map-block{display:flex;min-height:760px}
.footer-map-block__map{flex:0 0 50%;position:relative}
.footer-map-block__map iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}
.footer-map-block__info{
  flex:1;background:var(--cream);
  padding:72px clamp(32px,5vw,80px) 72px clamp(32px,4vw,64px);
  position:relative;overflow:hidden;
}
.footer-map-block__info::after{
  content:'';position:absolute;right:-60px;top:-40px;bottom:-40px;
  width:55%;
  background-image:url('/wp-content/uploads/2026/05/image-13-Traced-3.svg');
  background-size:auto 100%;background-repeat:no-repeat;background-position:right top;
  opacity:.45;pointer-events:none;z-index:0;
}
.footer-map-block__info > *{position:relative;z-index:1}
.footer-map-block__label{
  font-family:var(--ff-b);font-size:.75rem;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;color:var(--green);
  margin:0 0 14px;display:block;
}
.footer-map-block__h2{
  font-family:var(--ff-h);font-size:clamp(2rem,3vw,2.75rem);
  color:var(--heading);line-height:1.2;margin:0 0 18px;
}
.footer-map-block__h2 em{color:var(--green);font-style:italic}
.footer-map-block__sub{
  font-family:var(--ff-b);font-size:1rem;color:var(--body);
  line-height:1.75;margin:0 0 40px;max-width:460px;
}
.footer-map-block__details{display:flex;flex-direction:column;gap:20px}
.footer-map-block__detail h3{
  font-family:var(--ff-b);font-size:.875rem;font-weight:700;
  color:var(--heading);margin:0 0 5px;letter-spacing:.01em;
}
.footer-map-block__detail p,.footer-map-block__detail a{
  font-family:var(--ff-b);font-size:.9375rem;color:var(--body);
  line-height:1.65;margin:0;text-decoration:none;display:block;
}
.footer-map-block__detail a:hover{color:var(--green)}
@media(max-width:900px){
  .footer-map-block{flex-direction:column}
  .footer-map-block__map{flex:none;height:300px;position:relative}
  .footer-map-block__info{padding:48px 24px 56px}
  .footer-map-block__info::after{width:75%;right:-20px;opacity:.4}
}

/* ═══════════════════════════════════════════════════════════════
   Custom Book Popup (replaces Popup Maker)
═══════════════════════════════════════════════════════════════ */
.ew-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.ew-popup-overlay.is-open {
  display: flex;
  opacity: 1;
}
.ew-popup {
  background: var(--cream);
  border-radius: 20px;
  max-width: 640px;
  width: calc(100% - 40px);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 56px 56px 60px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  transform: translateY(24px);
  transition: transform .3s ease;
}
.ew-popup-overlay.is-open .ew-popup {
  transform: translateY(0);
}
.ew-popup__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--heading);
  line-height: 1;
  padding: 6px 8px;
  opacity: .7;
  transition: opacity .2s;
}
.ew-popup__close:hover { opacity: 1; }
.ew-popup__label {
  font-family: var(--ff-b);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin: 0 0 16px;
  display: block;
}
.ew-popup__h2 {
  font-family: var(--ff-h);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--heading);
  margin: 0 0 20px;
}
.ew-popup__h2 em { font-style: italic; font-weight: 400; color: var(--green); }
.ew-popup__sub {
  font-family: var(--ff-b);
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto 36px;
  opacity: .75;
}
/* WPForms inside popup */
.ew-popup .wpforms-form input.wpforms-field-medium,
.ew-popup .wpforms-form input.wpforms-field-small {
  max-width: 100% !important; width: 100% !important;
}
.ew-popup .wpforms-container { max-width: 100%; margin: 0 !important; }
.ew-popup .wpforms-form .wpforms-field { padding: 0; margin-bottom: 16px; }
.ew-popup .wpforms-form .wpforms-field-label,
.ew-popup .wpforms-form .wpforms-required-label,
.ew-popup .wpforms-form fieldset legend.wpforms-field-label { display: none !important; }
.ew-popup .wpforms-form input[type="text"],
.ew-popup .wpforms-form input[type="email"],
.ew-popup .wpforms-form input[type="tel"] {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid rgba(51,33,6,.12) !important;
  border-radius: 100px !important;
  padding: 14px 28px !important;
  height: auto !important;
  font-family: var(--ff-b) !important;
  font-size: 15px !important;
  color: var(--heading) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  text-align: left !important;
}
.ew-popup .wpforms-form input[type="text"]:focus,
.ew-popup .wpforms-form input[type="email"]:focus,
.ew-popup .wpforms-form input[type="tel"]:focus {
  box-shadow: 0 0 0 2px rgba(34,96,64,.2) !important;
  outline: none !important;
}
.ew-popup .wpforms-form input::placeholder { color: rgba(51,33,6,.4) !important; }
.ew-popup .wpforms-form .wpforms-field-checkbox ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.ew-popup .wpforms-form .wpforms-field-checkbox li { display: flex !important; align-items: flex-start !important; gap: 8px !important; }
.ew-popup .wpforms-form .wpforms-field-checkbox input[type="checkbox"] {
  margin: 3px 0 0 !important; flex-shrink: 0 !important;
  width: 15px !important; height: 15px !important;
  accent-color: var(--green) !important; cursor: pointer !important;
}
.ew-popup .wpforms-form .wpforms-field-checkbox .wpforms-field-label-inline {
  font-family: var(--ff-b) !important; font-size: 14px !important;
  color: var(--body) !important; line-height: 1.5 !important;
  cursor: pointer !important; text-align: left !important;
}
.ew-popup .wpforms-form .wpforms-submit-container { padding: 0; margin-top: 4px; }
.ew-popup .wpforms-form button[type="submit"],
.ew-popup .wpforms-form .wpforms-submit {
  width: 100% !important;
  background: transparent !important;
  border: 1px solid var(--heading) !important;
  border-radius: 100px !important;
  font-family: var(--ff-b) !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  color: var(--heading) !important;
  cursor: pointer !important;
  transition: background .3s, color .3s !important;
  padding: 16px 0 !important;
  height: auto !important;
}
.ew-popup .wpforms-form button[type="submit"]:hover,
.ew-popup .wpforms-form .wpforms-submit:hover {
  background: var(--heading) !important; color: #fff !important;
}
.ew-popup .wpforms-form label.wpforms-error {
  font-family: var(--ff-b) !important; font-size: 13px !important;
  color: #c83232 !important; padding-left: 12px !important;
  margin-top: 4px !important; display: block !important; text-align: left !important;
}
.ew-popup .wpforms-confirmation-container-full {
  background: rgba(34,96,64,.1) !important;
  border: 1px solid rgba(34,96,64,.3) !important;
  border-radius: 12px !important; padding: 16px 20px !important;
  font-family: var(--ff-b) !important; font-size: 15px !important;
  color: var(--green) !important;
}
@media(max-width:600px) {
  .ew-popup { padding: 48px 24px 52px; }
  .ew-popup__h2 { font-size: 36px; }
}

/* ── Reviews ── */
.reviews{padding:clamp(60px,8.333vw,120px) 0;background:var(--white)}
.reviews__hdr{margin-bottom:56px}
.reviews__hdr h2{color:var(--heading);margin:10px 0 16px}
.reviews__hdr h2 em{color:var(--green)}
.reviews__sub{color:#332106;font-size:1rem;line-height:1.75;max-width:520px;margin:0 auto}
.reviews__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.review-card{background:var(--cream);border-radius:14px;padding:28px 24px;border:1px solid rgba(34,96,64,.1)}
.review-card__stars{color:var(--gold);font-size:1rem;margin-bottom:14px;letter-spacing:3px}
.review-card__text{font-style:italic;font-size:.95rem;line-height:1.75;color:#332106;margin-bottom:18px}
.review-card__name{font-size:.8rem;font-weight:700;color:var(--green);letter-spacing:.05em;text-transform:uppercase}
@media(max-width:1200px){.reviews__grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.reviews__grid{grid-template-columns:1fr}}

/* ── Reviews Page ── */
.rv-hero {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
}
.rv-hero__h {
  font-family: var(--ff-h);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--heading);
  margin: 10px 0 20px;
}
.rv-hero__h em { color: var(--green); font-style: italic; font-weight: 400; }
.rv-hero__sub {
  font-family: var(--ff-b);
  font-size: 1rem;
  color: #332106;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}
.reviews--page { padding-top: clamp(40px, 6vw, 80px); }
.reviews__grid--3col { grid-template-columns: repeat(3, 1fr); }
@media(max-width:900px){.reviews__grid--3col{grid-template-columns:1fr 1fr}}
@media(max-width:540px){.reviews__grid--3col{grid-template-columns:1fr}}

/* Reviews page: carousel/slider */
.reviews--page .reviews__carousel{position:relative}
.reviews--page .reviews__grid--3col{display:flex;grid-template-columns:none;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding:4px 0 10px}
.reviews--page .reviews__grid--3col::-webkit-scrollbar{display:none}
.reviews--page .review-card{flex:0 0 calc((100% - 40px)/3);scroll-snap-align:start}
.reviews--page .reviews__nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;border:1px solid rgba(34,96,64,.25);background:#fff;color:var(--green);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;box-shadow:0 6px 20px rgba(34,96,64,.14);transition:background .25s,color .25s}
.reviews--page .reviews__nav svg{width:20px;height:20px}
.reviews--page .reviews__nav:hover{background:var(--green);color:#fff}
.reviews--page .reviews__nav--prev{left:-18px}
.reviews--page .reviews__nav--next{right:-18px}
@media(max-width:900px){.reviews--page .review-card{flex-basis:calc((100% - 20px)/2)}}
@media(max-width:767px){.reviews--page .review-card{flex-basis:95%}.reviews--page .reviews__nav{display:none}}
.review-card__service {
  font-family: var(--ff-b);
  font-size: .75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 4px 0 0;
}

/* ── Auto reveal: light block entrance (service pages) ── */
.ew-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.ew-reveal.ew-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .ew-reveal { opacity: 1 !important; transform: none !important; } }

/* ── reCAPTCHA v3: hide badge (Google attribution shown as text instead) ── */
.grecaptcha-badge{visibility:hidden!important}
.ew-recaptcha-note{font-family:var(--ff-b);font-size:.72rem;line-height:1.5;color:#8a8275;margin:14px 0 0}
.ew-recaptcha-note a{color:#226040;text-decoration:underline}
