@charset "UTF-8";
/* Theme Name: Custom WordPress Theme */
/* Version: 1.0.0 */
/* Author: Gemma Gentles */
/*********************
COLOURS
*********************/
/**********************
SIZES
*********************/
/*********************
TYPOGRAPHY
*********************/
@font-face {
  font-family: WarblerBanner-Bold;
  src: url(/wp-content/themes/custom-theme/fonts/WarblerBanner-Bold.otf) format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeue;
  src: url(/wp-content/themes/custom-theme/fonts/HelveticaNeueLTStd-Bd.otf) format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: HelveticaNeue-Light;
  src: url(/wp-content/themes/custom-theme/fonts/HelveticaNeueLTStd-Lt.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}
/*********************
BREAKPOINTS
*********************/
.header__wrapper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}
@media (min-width: 48em) {
  .header__wrapper {
    padding: 28px 40px;
  }
}
.header__logo-wrapper {
  z-index: 2000;
  position: relative;
  width: fit-content;
}
@media (min-width: 48em) {
  .header__logo-wrapper {
    text-align: center;
    margin: 0 auto;
  }
}
.header__logo--link {
  text-decoration: none;
  color: #0E0F11;
  font-size: 28px;
  font-weight: bold;
}
.header__nav {
  width: 100%;
}
.header__nav #menu-header-menu {
  width: 100%;
}
@media (min-width: 48em) {
  .header__nav #menu-header-menu {
    margin-top: -36px;
    display: flex;
    justify-content: space-between;
  }
}
.header__nav li, .header__nav a {
  list-style-type: none;
  color: white;
  text-decoration: none;
  padding: 10px;
  font-size: 30px;
  font-family: HelveticaNeue-Light, sans-serif;
  font-weight: 600;
  transition: color 0.2s ease-in;
  text-align: left;
}
@media (min-width: 48em) {
  .header__nav li, .header__nav a {
    color: #0E0F11;
    font-size: 16px;
    text-align: center;
  }
}
.header__nav li:hover, .header__nav li:focus, .header__nav a:hover, .header__nav a:focus {
  color: #8F1D2C;
}
.header__nav li [aria-current=page], .header__nav a [aria-current=page] {
  color: #8F1D2C;
}

.menu-item-home,
.mobile-menu-btn {
  display: none;
}

/* Mobile menu only */
@media (max-width: 767px) {
  .menu-item-home {
    display: block;
  }
  #menu-header-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: black;
    padding-top: 82px;
    text-align: center;
    flex-direction: column;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    z-index: 1600;
    /* Base state for fade‑in items */
  }
  #menu-header-menu.active {
    display: block;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
    /* Slide-down effect only on open */
    animation: menuSlideDown 0.3s ease forwards;
    /* Fade‑in stagger for menu items */
  }
  #menu-header-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }
  #menu-header-menu.active li:nth-child(1) {
    transition-delay: 0.45s;
  }
  #menu-header-menu.active li:nth-child(2) {
    transition-delay: 0.7s;
  }
  #menu-header-menu.active li:nth-child(3) {
    transition-delay: 0.95s;
  }
  #menu-header-menu.active li:nth-child(4) {
    transition-delay: 1.1s;
  }
  #menu-header-menu.active li:nth-child(5) {
    transition-delay: 1.25s;
  }
  #menu-header-menu.active li:nth-child(6) {
    transition-delay: 1.4s;
  }
  #menu-header-menu li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 2000;
    text-align: right;
    font-family: HelveticaNeue-Light, sans-serif;
    color: #0E0F11;
    margin-top: -25px;
    margin-right: 15px;
  }
  .mobile-menu-btn.active {
    color: white;
  }
  .header__logo--link.active {
    color: white !important;
    z-index: 4000;
  }
  /* Keyframes for slide-down on open only */
  @keyframes menuSlideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
}
.hero__wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px 60px;
}

.banner__wrapper {
  position: relative;
  overflow: hidden;
}
.banner__wrapper::after {
  content: "LNDMRK";
  color: white;
  opacity: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9rem;
  z-index: 10;
}
@media (min-width: 36.5em) {
  .banner__wrapper::after {
    font-size: 18rem;
  }
}
@media (min-width: 64em) {
  .banner__wrapper::after {
    font-size: 38rem;
  }
}
.banner__image {
  width: 100%;
}

.fiftyfifty-blocks__row {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
}
@media (min-width: 64em) {
  .fiftyfifty-blocks__row {
    padding: 100px 40px;
  }
}
.fiftyfifty-blocks__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background-color: lightgrey;
}
.fiftyfifty-blocks__inner {
  display: flex;
  justify-self: center;
  flex-direction: column;
  gap: 60px;
}
.fiftyfifty-blocks__inner--reversed {
  flex-direction: column-reverse;
}
@media (min-width: 64em) {
  .fiftyfifty-blocks__inner--reversed {
    flex-direction: row;
  }
}
@media (min-width: 64em) {
  .fiftyfifty-blocks__inner {
    flex-direction: row;
    gap: 80px;
  }
  .fiftyfifty-blocks__inner:nth-child(even) {
    flex-direction: row;
  }
}
.fiftyfifty-blocks__image-block {
  width: 100%;
  max-width: 475px;
  height: 100%;
  max-height: 475px;
  object-fit: cover;
}

.contact-page__wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 40px 100px;
}
.contact-page__wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background-color: lightgrey;
}
@media (min-width: 48em) {
  .contact-page__wrapper {
    gap: 70px;
    flex-direction: row;
    padding: 60px 40px 120px;
  }
}

.text-box__wrapper {
  flex: 1;
}

.contact-form__wrapper {
  flex: 1;
}
.contact-form__form {
  width: 100%;
  max-width: 500px;
}
.contact-form__form input::placeholder {
  font-family: HelveticaNeue-Light, sans-serif;
  padding-left: 0 !important;
  color: #0E0F11 !important;
  opacity: 1 !important;
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 36.5em) {
  .contact-form__form input::placeholder {
    font-size: 24px;
    line-height: 32px;
  }
}
.contact-form__form input:focus::placeholder {
  opacity: 0.7 !important;
}
.contact-form__submit-btn {
  border-bottom: 1px solid #8F1D2C !important;
  background-color: transparent !important;
  color: #8F1D2C !important;
  font-family: HelveticaNeue, sans-serif !important;
  border-radius: 0 !important;
  width: 100% !important;
  text-align: left !important;
  padding: 20px 30px 50px 0 !important;
  font-size: 20px !important;
  line-height: 28px !important;
}
@media (min-width: 36.5em) {
  .contact-form__submit-btn {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}
.contact-form__submit-btn::after {
  content: "\2192" !important; /* Unicode right arrow */
  position: absolute !important;
  opacity: 0;
  top: 30% !important;
  left: auto !important;
  right: 10px !important; /* Start slightly tucked in */
  transition: 0.3s ease;
}
.contact-form__submit-btn:hover::after, .contact-form__submit-btn:focus::after {
  opacity: 1 !important;
  right: 20px !important; /* Slide arrow into position */
  border: none !important;
}
.contact-form__submit-btn:hover, .contact-form__submit-btn:focus {
  background: none !important;
}

.wpforms-container {
  margin: 0 !important;
}

.wpforms-field-large {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #0E0F11 !important;
  border-radius: 0 !important;
  padding: 20px 30px 40px 0 !important;
  color: #0E0F11 !important;
  font-family: HelveticaNeue-Light, sans-serif !important;
  font-size: 20px !important;
  line-height: 28px !important;
}
@media (min-width: 36.5em) {
  .wpforms-field-large {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}
.wpforms-field-large:focus {
  border: none !important;
  border-bottom: 2px solid #8F1D2C !important;
  box-shadow: none !important;
}

em.wpforms-error {
  font-family: HelveticaNeue-Light, sans-serif !important;
  font-size: 16px !important;
}

.footer__wrapper {
  margin: 0 auto;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 40px;
  width: 100%;
  padding: 100px 40px;
}
@media (min-width: 36.5em) {
  .footer__wrapper {
    flex-direction: row;
  }
}
.footer__logo {
  padding: 0;
}
.footer__heading-three {
  margin-bottom: 30px;
}
.footer__email-link {
  color: #0E0F11 !important;
  text-decoration: none;
  font-family: HelveticaNeue, sans-serif;
  font-size: 18px;
}
@media (min-width: 36.5em) {
  .footer__email-link {
    font-size: 24px;
  }
}
.footer__copy p {
  font-size: 14px;
  margin-top: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #F1EFEA;
  color: #0E0F11;
  overflow-x: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}

section {
  position: relative;
}

a[href^=tel] {
  color: #0E0F11;
  text-decoration: none;
}

body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
  outline: none;
}

/*********************
TYPOGRAPHY
*********************/
:root {
  font-size: 16px;
}

h1 {
  font-family: WarblerBanner-Bold, sans-serif;
  font-size: 50px;
  line-height: 50px;
  text-transform: uppercase;
}
@media (min-width: 36.5em) {
  h1 {
    font-size: 70px;
    line-height: 70px;
  }
}

h2 {
  font-family: WarblerBanner-Bold, sans-serif;
  font-size: 44px;
  line-height: 44px;
}
@media (min-width: 36.5em) {
  h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

h3 {
  font-family: HelveticaNeue, sans-serif;
  font-weight: 600; /* SemiBold */
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 36.5em) {
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

h4 {
  font-family: HelveticaNeue-Light, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 36.5em) {
  h4 {
    font-size: 24px;
    line-height: 28px;
  }
}

p {
  font-family: HelveticaNeue-Light, sans-serif;
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 36.5em) {
  p {
    font-size: 24px;
    line-height: 32px;
  }
}

/*********************
BUTTONS
*********************/
.button-link__primary {
  color: #0E0F11;
  font-size: 24px;
  font-family: HelveticaNeue, sans-serif;
  display: inline-block;
  transition: color 0.2s ease-in;
  margin-top: 20px;
}
.button-link__primary:hover, .button-link__primary:focus {
  text-decoration: none;
}
@media (min-width: 36.5em) {
  .button-link__primary {
    margin-top: 50px;
  }
}
