:root {
  --bg: #0d0f0e;
  --surface-1: #121614;
  --surface-2: #171d1a;
  --surface-3: #1d241f;
  --surface-4: #242c26;
  --text-1: #f3f1ea;
  --text-2: #c9c6bd;
  --muted: #9f9b92;
  --accent: #b08d57;
  --accent-2: #d2b377;
  --line: rgba(243, 241, 234, 0.08);
  --hero-bg: linear-gradient(180deg, #0f1713 0%, #0b1210 70%, #0a0f0d 100%);
  --cta-bg: linear-gradient(120deg, #1a2a21, #0f1713);
  --glass-bg: rgba(243, 241, 234, 0.08);
  --glass-border: rgba(243, 241, 234, 0.12);
  --control-border: rgba(243, 241, 234, 0.35);
  --input-border: rgba(243, 241, 234, 0.18);
  --placeholder: rgba(243, 241, 234, 0.6);
  --footer-line: rgba(243, 241, 234, 0.12);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 30px 60px rgba(0, 0, 0, 0.55);
  --shadow-header: 0 12px 24px rgba(6, 6, 6, 0.35);
  --primary: #1f3328;
  --primary-hover: #2d4b3a;
  --header-bg: rgb(30, 30, 30);
  --header-text: #f3f1ea;
  --header-height: 180px;
  --header-offset: 140px;
}

[data-theme="light"] {
  --bg: #f6f4ef;
  --surface-1: #ffffff;
  --surface-2: #f1ece3;
  --surface-3: #e6dfd2;
  --surface-4: #e1d9cb;
  --text-1: #1a1a1a;
  --text-2: #2b2b2b;
  --muted: #5f5a52;
  --accent: #9f7a40;
  --accent-2: #c8a66a;
  --line: rgba(26, 26, 26, 0.08);
  --hero-bg: linear-gradient(180deg, #f6f4ef 0%, #efe8dc 70%, #f6f4ef 100%);
  --cta-bg: linear-gradient(120deg, #e6dccb, #f1ece3);
  --glass-bg: rgba(26, 26, 26, 0.04);
  --glass-border: rgba(26, 26, 26, 0.08);
  --control-border: rgba(26, 26, 26, 0.25);
  --input-border: rgba(26, 26, 26, 0.2);
  --placeholder: rgba(26, 26, 26, 0.45);
  --footer-line: rgba(26, 26, 26, 0.12);
  --shadow-soft: 0 18px 40px rgba(12, 12, 12, 0.12);
  --shadow-strong: 0 30px 60px rgba(10, 10, 10, 0.25);
  --shadow-header: 0 10px 20px rgba(12, 12, 12, 0.12);
  --primary: #1f3328;
  --primary-hover: #2d4b3a;
  --header-bg: #ffffff;
  --header-text: #1a1a1a;
  --header-height: 180px;
  --header-offset: 140px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.7;
}

html {
  scroll-padding-top: 0;
}

main {
  padding-top: var(--header-height);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10vw;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  padding: 0 10vw;
  width: 100%;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.6rem 0 1.2rem;
}

.site-header .container {
  padding: 0;
}

.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 88px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.6));
}

.nav {
  display: none;
  gap: 1.6rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
}

.nav a {
  position: relative;
  color: var(--header-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  gap: 0.7rem;
  align-items: center;
  justify-self: end;
  flex-wrap: nowrap;
}

.header-cta .btn,
.header-cta .theme-toggle {
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--header-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  height: 48px;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(31, 51, 40, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text-1);
  background: transparent;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.site-header .btn-ghost {
  color: var(--header-text);
  border-color: var(--control-border);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--control-border);
  background: rgba(0, 0, 0, 0.18);
  color: var(--header-text);
  border-radius: 999px;
  padding: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 48px;
  height: 48px;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.theme-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle svg {
  position: absolute;
  width: 20px;
  height: 20px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.icon-sun {
  opacity: 1;
  transform: scale(1);
}

.icon-moon {
  opacity: 0;
  transform: scale(0.8);
}

.theme-toggle-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

[data-theme="light"] .theme-toggle {
  background: var(--surface-2);
  color: var(--header-text);
}

[data-theme="light"] .icon-sun {
  opacity: 0;
  transform: scale(0.8);
}

[data-theme="light"] .icon-moon {
  opacity: 1;
  transform: scale(1);
}

.hero {
  position: relative;
  padding: calc(6rem + var(--header-height)) 0 4rem;
  margin-top: calc(-1 * var(--header-height));
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 15, 13, 0.85), rgba(11, 15, 13, 0.95)),
    url('Gallery/Professional%20Tree%20Surgery%20Services.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-2);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 3.4vw + 1rem, 4.2rem);
  line-height: 1.05;
  margin: 0.6rem 0 1rem;
}

.subheadline {
  font-size: 1.05rem;
  max-width: 560px;
  color: var(--text-2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.6rem;
}

.hero-trust {
  display: grid;
  gap: 0.8rem;
}

.hero-trust div {
  background: var(--glass-bg);
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.hero-trust strong {
  display: block;
  font-size: 0.95rem;
}

.hero-trust span {
  font-size: 0.85rem;
  color: var(--text-2);
}

.hero-visual {
  display: grid;
  gap: 1.6rem;
}

.hero-image {
  display: none;
}

.hero-card .card {
  background: var(--surface-2);
  color: var(--text-1);
  padding: 2rem;
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}

.hero-note {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  opacity: 0.65;
  padding: 1.4rem 5vw 0;
}

.section {
  padding: 5rem 0;
  scroll-margin-top: 0;
}

.section:target {
  padding-top: calc(var(--header-height) + 1.5rem);
  margin-top: calc(-1 * var(--header-height));
}

.section + .section {
  margin-top: 1.5rem;
}

.section + .cta-banner,
.cta-banner + .section,
.cta-banner + .cta-banner {
  margin-top: 1.5rem;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 2.6vw + 1rem, 3.2rem);
  margin: 0.6rem 0 1rem;
}

.section-head p {
  margin: 0;
  color: var(--text-2);
}

.section-subhead {
  margin: 2.5rem 0 1.4rem;
  max-width: 520px;
}

.section-subhead h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.4rem;
}

.services-details {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.service-group {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  gap: 0;
}

.service-group-media {
  height: 100%;
}

.service-group-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-group-content {
  padding: 1.6rem 1.8rem 1.8rem;
}

.service-group-content h3 {
  margin: 0 0 1rem;
  font-family: "Fraunces", serif;
}

@media (min-width: 900px) {
  .service-group {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .service-group-media img {
    height: 100%;
  }
}

.service-group-content h3 {
  margin: 0 0 1rem;
  font-family: "Fraunces", serif;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.service-list li {
  display: grid;
  gap: 0.3rem;
}

.service-list strong {
  font-weight: 600;
  color: var(--text-1);
}

.service-list span {
  color: var(--text-2);
}



.trust-strip {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 1.6rem 0;
}

.trust-items {
  display: grid;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
}

.trust-items div {
  background: var(--surface-3);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card {
  background: var(--surface-2);
  border-radius: 22px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--accent);
  border-radius: 22px 22px 0 0;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.why-card,
.review-card,
.process-step,
.about-panel,
.media-card {
  background: var(--surface-2);
  border-radius: 22px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-card h3,
.why-card h3,
.process-step h3,
.highlight-card h3,
.work-content h3,
.media-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: "Fraunces", serif;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.why {
  background: var(--surface-1);
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.work {
  background: var(--surface-2);
}

.work-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.work-card {
  background: var(--surface-2);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.before-after {
  margin: 3rem 0 0;
}

.before-after-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ba-card {
  background: var(--surface-2);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  gap: 0;
}

.ba-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  height: 200px;
}

.ba-image {
  position: relative;
  margin: 0;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .ba-images {
    height: 220px;
  }
}

.ba-label {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  background: rgba(13, 15, 14, 0.75);
  color: var(--text-1);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 241, 234, 0.18);
}

.ba-copy {
  padding: 1.4rem 1.6rem 1.7rem;
}

.ba-copy h4 {
  margin: 0 0 0.5rem;
  font-family: "Fraunces", serif;
}

.ba-copy p {
  margin: 0;
  color: var(--text-2);
}

.work-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.work-content {
  padding: 1.6rem;
  display: grid;
  gap: 0.6rem;
}

.work-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.work-list li {
  display: flex;
  align-items: flex-start;
}

.work-list li::before {
  content: "+";
  color: var(--accent);
  margin-right: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(31, 51, 40, 0.12);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.process {
  background: var(--surface-3);
  color: var(--text-1);
}

.process-step {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

.process-step span {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--accent);
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-panel {
  background: var(--surface-3);
  color: var(--text-1);
}

.about-panel h3 {
  font-family: "Fraunces", serif;
}

.reviews {
  background: var(--surface-1);
}

.reviews-scroller {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
  padding-bottom: 0.6rem;
  cursor: grab;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.reviews-scroller::-webkit-scrollbar {
  display: none;
}

.reviews-scroller:active {
  cursor: grabbing;
}

.reviews-grid {
  display: flex;
  gap: 1.2rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 200px;
  flex: 0 0 calc((100% - 3 * 1.2rem) / 4);
  scroll-snap-align: start;
  background: var(--surface-3);
  border: 1px solid var(--line);
  box-shadow: none;
}

.review-card span {
  font-weight: 600;
  color: var(--accent-2);
}


.review-stars {
  color: var(--accent-2);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.media {
  background: var(--surface-2);
}

.media-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.media-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.6rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--accent-2);
  gap: 0.4rem;
}

.text-link::after {
  content: ">";
}

.cta-banner {
  background: var(--cta-bg);
  color: var(--text-1);
  padding: 3.5rem 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.cta-inner h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 0.6rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact {
  background: var(--surface-1);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-details span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
}

.contact-form {
  background: var(--surface-2);
  padding: 2rem;
  border-radius: 26px;
  border: 1px solid var(--line);
  display: grid;
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--input-border);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  font-family: inherit;
  background: var(--surface-4);
  color: var(--text-1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--placeholder);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.reassure {
  font-weight: 600;
  color: var(--accent-2);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  margin: 0;
}

.form-status.success {
  background: rgba(31, 51, 40, 0.18);
  color: var(--text-1);
  border: 1px solid var(--input-border);
}

.form-status.error {
  background: rgba(120, 40, 40, 0.25);
  color: var(--text-1);
  border: 1px solid var(--input-border);
}

.site-footer {
  background: #0b0d0c;
  color: var(--text-1);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.6rem;
}

.footer-socials,
.header-socials {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-1);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.social-link svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.header-socials .social-link {
  width: 48px;
  height: 48px;
  border-color: var(--control-border);
  color: var(--header-text);
}

.footer-bottom {
  border-top: 1px solid var(--footer-line);
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.2rem;
  font-size: 0.85rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
}

.checklist li::before {
  content: "+";
  color: var(--accent);
  margin-right: 0.6rem;
}

.tiny {
  font-size: 0.85rem;
  opacity: 0.8;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .hero-visual {
    align-items: end;
  }

  .trust-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 0.7fr 0.8fr;
  }
}

@media (min-width: 900px) {
  .hero,
  .contact {
    min-height: 1080px;
  }
}

@media (max-width: 799px) {
  :root {
    --header-height: 140px;
  }

  .container {
    padding: 0 6vw;
  }

  .header-inner {
    padding: 1.1rem 0 0.8rem;
  }

  .logo-img {
    height: 64px;
  }

  .header-socials {
    display: none;
  }

  .theme-toggle {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .section-head h2 {
    font-size: clamp(1.9rem, 6.5vw, 2.6rem);
  }

  .hero {
    padding: 5rem 0 3.2rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 7.5vw, 3.2rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-card .card {
    padding: 1.6rem;
    border-radius: 22px;
  }

  .service-group-content {
    padding: 1.3rem 1.4rem 1.5rem;
  }

  .reviews-grid {
    gap: 1rem;
  }

  .review-card {
    flex: 0 0 82%;
    min-height: 220px;
  }

  .site-header.open .nav {
    background: rgba(13, 15, 14, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }

  .site-header.open .header-cta {
    background: transparent;
    backdrop-filter: none;
  }

  .site-header.open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 5vw 1.6rem;
    gap: 1rem;
  }

  .site-header.open .header-cta {
    display: none;
    padding: 0;
  }

  .site-header.open .header-cta .btn {
    display: none;
  }
}
