/** Shopify CDN: Minification failed

Line 689:0 All "@import" rules must come first
Line 1155:0 All "@import" rules must come first

**/
/* Adobe Fonts - Import at the very top */
@import url("https://use.typekit.net/baw6plm.css");

/* Apply Adobe font to contact form elements */
.contactform-heading,
.contactform-text-block,
.contactform-form .field__input,
.contactform-form .field__label,
.contactform-form textarea,
.contactform-form .button {
  font-family: 'itc-american-typewriter', serif !important;
}

/* Ensure font weights are respected */
.contactform-heading[style*="font-weight: 300"],
.contactform-heading[style*="font-weight: 400"] {
  font-weight: 300 !important; /* Light */
}

.contactform-heading[style*="font-weight: 500"] {
  font-weight: 500 !important; /* Medium */
}

.contactform-heading[style*="font-weight: 600"] {
  font-weight: 500 !important;
  text-stroke: 0.3px currentColor;
  -webkit-text-stroke: 0.3px currentColor;
}

.contactform-heading[style*="font-weight: 700"] {
  font-weight: 700 !important; /* Bold */
}

.contactform-heading[style*="font-weight: 900"] {
  font-weight: 700 !important; /* Use Bold */
}

/* Contact form section - height matches image */
.contactform-full-height {
  position: relative;
  background-color: #93EF21;
}

.contactform-full-height__background {
  position: relative;
  width: 100%;
  z-index: 0;
}

.contactform-full-height__background img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact form content - extended 10% wider */
.contactform-full-height__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 770px; /* Increased from 700px (700 * 1.1 = 770) */
  padding: 2rem;
  width: 77%; /* Increased from 60% (60 * 1.1 = 66) */
}

.contactform-heading {
  margin: 0;
  margin-top: 0 !important;
  margin-bottom: 2rem;
  padding: 0 !important;
  line-height: 1.1 !important;
  text-align: center;
}

.contactform-text-block {
  margin: 0;
  text-align: center;
}

.contactform-form-wrapper {
  margin-top: 2rem;
}

/* Reduced gaps in contact form */
.contactform-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem; /* Reduced from 1.5rem */
}

.contactform-form .field {
  margin-bottom: 0;
}

/* Two column layout for first name and last name - reduced gap */
.contactform-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem; /* Reduced from 1.5rem */
}

/* Reduced submit button top margin */
.contactform-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem; /* Reduced from 1rem */
}

/* Remove ALL button borders and pseudo-elements - Rounded button */
.contactform-form__submit .button {
  flex: 0 0 auto;
  min-width: auto;
  width: auto;
  border-radius: 10px;
  padding: 1.2rem 3rem;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.contactform-form__submit .button::before,
.contactform-form__submit .button::after {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
  border: none !important;
}

.contactform-form__submit .button:focus,
.contactform-form__submit .button:hover,
.contactform-form__submit .button:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.contactform-form__submit .button:focus::after,
.contactform-form__submit .button:hover::after,
.contactform-form__submit .button:active::after {
  display: none !important;
  box-shadow: none !important;
  border: none !important;
}

.contactform-full-height__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* Text area styling */
.contactform-form textarea.field__input {
  min-height: 100px;
  resize: vertical;
  padding: 1.5rem;
}

/* Rounded form fields */
.contactform-form .field__input {
  border-radius: 10px !important;
  background-color: #ffffff;
  border: 1px solid #cccccc !important;
}

.contactform-form .field:before {
  border-radius: 10px !important;
}

.contactform-form .field:after {
  border-radius: calc(10px - var(--inputs-border-width)) !important;
}

/* Gray placeholder text */
.contactform-form .field__input::placeholder {
  color: #999999;
  opacity: 1;
}

.contactform-form .field__label {
  color: #999999 !important;
}

/* Remove brown/colored border and focus states from form fields */
.contactform-form .field__input:focus,
.contactform-form .field__input:focus-visible,
.contactform-form textarea.field__input:focus,
.contactform-form textarea.field__input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #cccccc !important;
}

.contactform-form .field:hover:after,
.contactform-form .field__input:hover {
  box-shadow: none !important;
}

.contactform-form .field:after {
  box-shadow: none !important;
  border: none !important;
}

.contactform-form .field__input:focus ~ .field__label,
.contactform-form .field__input:not(:placeholder-shown) ~ .field__label {
  color: #999999 !important;
}

/* Remove any outline or border on all states */
.contactform-form .field,
.contactform-form .field:before,
.contactform-form .field:after {
  border: none !important;
}

.contactform-form .field:focus-visible,
.contactform-form .field:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Desktop/Tablet - Show desktop image, hide mobile */
.contactform-bg-desktop {
  display: block;
}

.contactform-bg-mobile {
  display: none !important;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   ========================== */

/* Large Desktop (1200px - 1399px) */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .contactform-full-height__content {
    width: 70%;
    max-width: 750px;
    padding: 2rem;
  }
}

/* Medium Desktop (990px - 1199px) */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  .contactform-full-height__content {
    width: 75%;
    max-width: 720px;
    padding: 2rem;
  }
  
  .contactform-heading {
    font-size: 36px !important;
    margin-bottom: 1.8rem !important;
  }
  
  .contactform-text-block {
    font-size: 15px !important;
  }
  
  .contactform-form .field__input {
    font-size: 14px !important;
    padding: 1.3rem !important;
  }
  
  .contactform-form__submit .button {
    padding: 1.1rem 2.8rem !important;
    font-size: 15px !important;
  }
}

/* Tablet Large (750px - 989px) - Your existing tablet breakpoint */
@media screen and (max-width: 989px) {
  .contactform-full-height__content {
    width: 82.5%; /* Increased from 75% (75 * 1.1 = 82.5) */
    max-width: 660px; /* Increased from 600px (600 * 1.1 = 660) */
    padding: 2rem;
  }
  
  .contactform-heading {
    font-size: 32px !important;
  }
  
  .contactform-text-block {
    font-size: 14px !important;
  }
}

/* Tablet Medium (850px - 989px) - Fine-tuning */
@media screen and (min-width: 850px) and (max-width: 989px) {
  .contactform-full-height__content {
    width: 80%;
    padding: 2rem;
  }
  
  .contactform-form .field__input {
    font-size: 14px !important;
    padding: 1.4rem !important;
  }
  
  .contactform-form textarea.field__input {
    min-height: 95px !important;
  }
  
  .contactform-form__submit .button {
    padding: 1.1rem 2.5rem !important;
    font-size: 14px !important;
  }
}

/* Tablet Small (750px - 849px) */
@media screen and (min-width: 750px) and (max-width: 849px) {
  .contactform-full-height__content {
    width: 85%;
    max-width: 640px;
    padding: 1.8rem;
  }
  
  .contactform-heading {
    font-size: 28px !important;
    margin-bottom: 1.5rem !important;
  }
  
  .contactform-text-block {
    font-size: 13px !important;
  }
  
  .contactform-form .field__input {
    font-size: 13px !important;
    padding: 1.3rem !important;
  }
  
  .contactform-form textarea.field__input {
    min-height: 90px !important;
  }
  
  .contactform-form__submit .button {
    padding: 1rem 2.2rem !important;
    font-size: 13px !important;
  }
  
  .contactform-form-wrapper {
    margin-top: 1.5rem !important;
  }
}

/* Mobile Large (600px - 749px) */
@media screen and (min-width: 600px) and (max-width: 749px) {
  /* Hide desktop image, show mobile image */
  .contactform-bg-desktop {
    display: none !important;
  }
  
  .contactform-bg-mobile {
    display: block !important;
  }
  
  .contactform-full-height__content {
    position: absolute !important;
    top: 12% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 88% !important;
    max-width: none !important;
    padding: 1.6rem !important;
    z-index: 2;
  }
  
  .contactform-heading {
    font-size: 24px !important;
    margin-bottom: 1.3rem !important;
    line-height: 1.2 !important;
  }
  
  .contactform-heading br {
    display: none !important;
  }
  
  .contactform-text-block {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
  
  .contactform-text-block br {
    display: none !important;
  }
  
  .contactform-form__row {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  
  .contactform-form {
    gap: 0.8rem !important;
  }
  
  .contactform-form .field__input {
    font-size: 13px !important;
    padding: 1.2rem !important;
  }
  
  .contactform-form textarea.field__input {
    min-height: 85px !important;
  }
  
  .contactform-form__submit .button {
    font-size: 13px !important;
    padding: 1rem 2rem !important;
    width: 100% !important;
  }
  
  .contactform-form-wrapper {
    margin-top: 1.2rem !important;
  }
}

/* Mobile Medium (480px - 599px) */
@media screen and (min-width: 480px) and (max-width: 599px) {
  /* Hide desktop image, show mobile image */
  .contactform-bg-desktop {
    display: none !important;
  }
  
  .contactform-bg-mobile {
    display: block !important;
  }
  
  .contactform-full-height__content {
    position: absolute !important;
    top: 11% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 87% !important;
    max-width: none !important;
    padding: 1.5rem !important;
    z-index: 2;
  }
  
  .contactform-heading {
    font-size: 22px !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.25 !important;
  }
  
  .contactform-heading br {
    display: none !important;
  }
  
  .contactform-text-block {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }
  
  .contactform-text-block br {
    display: none !important;
  }
  
  .contactform-form__row {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  
  .contactform-form {
    gap: 0.8rem !important;
  }
  
  .contactform-form .field__input {
    font-size: 13px !important;
    padding: 1.1rem !important;
  }
  
  .contactform-form textarea.field__input {
    min-height: 82px !important;
  }
  
  .contactform-form__submit .button {
    font-size: 13px !important;
    padding: 0.95rem 1.8rem !important;
    width: 100% !important;
  }
  
  .contactform-form-wrapper {
    margin-top: 1.1rem !important;
  }
}

/* Mobile Small (375px - 479px) */
@media screen and (min-width: 375px) and (max-width: 479px) {
  /* Hide desktop image, show mobile image */
  .contactform-bg-desktop {
    display: none !important;
  }
  
  .contactform-bg-mobile {
    display: block !important;
  }
  
  .contactform-full-height__content {
    position: absolute !important;
    top: 10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 86% !important;
    max-width: none !important;
    padding: 1.5rem !important;
    z-index: 2;
  }
  
  .contactform-heading {
    font-size: 20px !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
  }
  
  .contactform-heading br {
    display: none !important;
  }
  
  .contactform-text-block {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  
  .contactform-text-block br {
    display: none !important;
  }
  
  .contactform-form__row {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  
  .contactform-form {
    gap: 0.8rem !important;
  }
  
  .contactform-form .field__input {
    font-size: 13px !important;
    padding: 1rem !important;
  }
  
  .contactform-form textarea.field__input {
    min-height: 80px !important;
  }
  
  .contactform-form__submit .button {
    font-size: 13px !important;
    padding: 0.9rem 1.5rem !important;
    width: 100% !important;
  }
  
  .contactform-form-wrapper {
    margin-top: 1rem !important;
  }
}

/* Mobile Extra Small (320px - 374px) */
@media screen and (max-width: 374px) {
  /* Hide desktop image, show mobile image */
  .contactform-bg-desktop {
    display: none !important;
  }
  
  .contactform-bg-mobile {
    display: block !important;
  }
  
  .contactform-full-height__content {
    position: absolute !important;
    top: 10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: none !important;
    padding: 1.2rem !important;
    z-index: 2;
  }
  
  .contactform-heading {
    font-size: 18px !important;
    margin-bottom: 0.9rem !important;
    line-height: 1.3 !important;
  }
  
  .contactform-heading br {
    display: none !important;
  }
  
  .contactform-text-block {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  
  .contactform-text-block br {
    display: none !important;
  }
  
  .contactform-form__row {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
  }
  
  .contactform-form {
    gap: 0.7rem !important;
  }
  
  .contactform-form .field__input {
    font-size: 12px !important;
    padding: 0.9rem !important;
  }
  
  .contactform-form textarea.field__input {
    min-height: 75px !important;
  }
  
  .contactform-form__submit .button {
    font-size: 12px !important;
    padding: 0.85rem 1.3rem !important;
    width: 100% !important;
  }
  
  .contactform-form-wrapper {
    margin-top: 0.9rem !important;
  }
}

/* Mobile screens (749px and below) - Your original mobile breakpoint preserved */
@media screen and (max-width: 749px) {
  /* Hide desktop image, show mobile image */
  .contactform-bg-desktop {
    display: none !important;
  }
  
  .contactform-bg-mobile {
    display: block !important;
  }
  
  /* Hide line breaks on mobile */
  .contactform-heading br,
  .contactform-text-block br {
    display: none !important;
  }
  
  .contactform-full-height {
    position: relative;
    padding: 0;
    overflow: visible;
  }
  
  .contactform-full-height__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }
  
  .contactform-full-height__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  
  .contactform-form .field {
    width: 100%;
    box-sizing: border-box;
  }
  
  .contactform-form .field__input,
  .contactform-form textarea.field__input,
  .contactform-form__submit .button {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Adobe Fonts - Import at the very top */
@import url("https://use.typekit.net/baw6plm.css");

/* Apply Adobe font to footer elements */
.footer-custom__link,
.footer-custom__text {
  font-family: 'itc-american-typewriter', serif !important;
}

/* Footer section */
.footer-custom {
  position: relative;
  background-color: #f5f5f5;
  margin-top: 0 !important;
  clear: both;
}

.footer-custom__background {
  position: relative;
  width: 100%;
  z-index: 0;
  display: block;
}

.footer-custom__background img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.footer-custom__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.footer-custom__link {
  display: block;
  margin-bottom: 1rem;
  text-decoration: underline;
  color: #000000;
  font-size: 16px;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.footer-custom__link:hover {
  opacity: 0.7;
}

.footer-custom__text {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.footer-custom__text:last-child {
  margin-bottom: 0;
}

.footer-custom__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

/* Desktop/Tablet - Show desktop image, hide mobile */
.footer-bg-desktop {
  display: block;
}

.footer-bg-mobile {
  display: none !important;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   ========================== */

/* Large Desktop (1200px - 1399px) */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-custom__content {
    padding: 1.9rem;
    width: 95%;
  }
  
  .footer-custom__link {
    font-size: 16px;
    margin-bottom: 0.95rem;
  }
  
  .footer-custom__text {
    font-size: 14px;
  }
}

/* Medium Desktop (990px - 1199px) */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  .footer-custom__content {
    padding: 1.7rem;
    width: 92%;
  }
  
  .footer-custom__link {
    font-size: 15px !important;
    margin-bottom: 0.9rem;
  }
  
  .footer-custom__text {
    font-size: 13px !important;
    line-height: 1.55;
  }
}

/* Tablet Large (750px - 989px) - Your existing tablet breakpoint */
@media screen and (max-width: 989px) {
  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
  }

  .footer-custom__content {
    padding: 1.5rem;
    width: 90%;
  }

  .footer-custom__link {
    font-size: 15px !important;
    margin-bottom: 0.9rem;
  }

  .footer-custom__text {
    font-size: 13px !important;
    line-height: 1.5;
  }
}

/* Tablet Medium (850px - 989px) - Fine-tuning */
@media screen and (min-width: 850px) and (max-width: 989px) {
  .footer-custom__content {
    padding: 1.6rem;
    width: 88%;
  }
  
  .footer-custom__link {
    font-size: 15px !important;
    margin-bottom: 0.9rem;
  }
  
  .footer-custom__text {
    font-size: 13px !important;
    line-height: 1.5;
  }
}

/* Tablet Small (750px - 849px) */
@media screen and (min-width: 750px) and (max-width: 849px) {
  .footer-custom__content {
    padding: 1.5rem;
    width: 90%;
  }
  
  .footer-custom__link {
    font-size: 14px !important;
    margin-bottom: 0.85rem;
  }
  
  .footer-custom__text {
    font-size: 12.5px !important;
    line-height: 1.5;
  }
}

/* Mobile Large (600px - 749px) */
@media screen and (min-width: 600px) and (max-width: 749px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88% !important;
    padding: 1.5rem 1.2rem !important;
    z-index: 2;
  }

  .footer-custom__link {
    font-size: 13.5px !important;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  .footer-custom__text {
    font-size: 11.5px !important;
    line-height: 1.5;
    margin-bottom: 0.25rem;
  }
}

/* Mobile Medium (480px - 599px) */
@media screen and (min-width: 480px) and (max-width: 599px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90% !important;
    padding: 1.3rem 1rem !important;
    z-index: 2;
  }

  .footer-custom__link {
    font-size: 13px !important;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  .footer-custom__text {
    font-size: 11px !important;
    line-height: 1.5;
    margin-bottom: 0.2rem;
  }
}

/* Mobile Small (375px - 479px) */
@media screen and (min-width: 375px) and (max-width: 479px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
    margin-top: 0 !important;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92% !important;
    padding: 1.2rem 1rem !important;
    z-index: 2;
  }

  .footer-custom__link {
    font-size: 12px !important;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .footer-custom__text {
    font-size: 10px !important;
    line-height: 1.5;
    word-wrap: break-word;
    margin-bottom: 0.2rem;
  }
}

/* Mobile Extra Small (320px - 374px) */
@media screen and (max-width: 374px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
    margin-top: 0 !important;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95% !important;
    padding: 1rem !important;
    z-index: 2;
  }

  .footer-custom__link {
    font-size: 11px !important;
    margin-bottom: 0.7rem;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .footer-custom__text {
    font-size: 9px !important;
    line-height: 1.5;
    word-wrap: break-word;
    margin-bottom: 0.18rem;
  }
}

/* Mobile screens (749px and below) - Your original mobile breakpoint preserved */
@media screen and (max-width: 749px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
    margin-top: 0 !important;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__link,
  .footer-custom__text {
    word-wrap: break-word;
  }
}

/* ===========================
   ORIENTATION ADJUSTMENTS
   ========================== */

/* Tablet Portrait (768px - 1024px in portrait) */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .footer-custom__content {
    width: 85% !important;
    padding: 1.8rem !important;
  }
  
  .footer-custom__link {
    font-size: 14px !important;
    margin-bottom: 0.85rem;
  }
  
  .footer-custom__text {
    font-size: 12px !important;
    line-height: 1.5;
  }
}

/* Adobe Fonts - Import at the very top */
@import url("https://use.typekit.net/baw6plm.css");

/* Apply Adobe font to footer elements */
.footer-custom__link,
.footer-custom__text {
  font-family: 'itc-american-typewriter', serif !important;
}

/* Footer section */
.footer-custom {
  position: relative;
  background-color: #f5f5f5;
  margin-top: 0 !important;
  clear: both;
}

.footer-custom__background {
  position: relative;
  width: 100%;
  z-index: 0;
  display: block;
}

.footer-custom__background img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.footer-custom__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.footer-custom__link {
  display: block;
  margin-bottom: 1rem;
  text-decoration: underline;
  color: #000000;
  font-size: 16px;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.footer-custom__link:hover {
  opacity: 0.7;
}

.footer-custom__text {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.footer-custom__text:last-child {
  margin-bottom: 0;
}

.footer-custom__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

/* Desktop/Tablet - Show desktop image, hide mobile */
.footer-bg-desktop {
  display: block;
}

.footer-bg-mobile {
  display: none !important;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   ========================== */

/* Large Desktop (1200px - 1399px) */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-custom__content {
    padding: 1.9rem;
    width: 95%;
  }
  
  .footer-custom__link {
    font-size: 16px;
    margin-bottom: 0.95rem;
  }
  
  .footer-custom__text {
    font-size: 14px;
  }
}

/* Medium Desktop (990px - 1199px) */
@media screen and (min-width: 990px) and (max-width: 1199px) {
  .footer-custom__content {
    padding: 1.7rem;
    width: 92%;
  }
  
  .footer-custom__link {
    font-size: 15px !important;
    margin-bottom: 0.9rem;
  }
  
  .footer-custom__text {
    font-size: 13px !important;
    line-height: 1.55;
  }
}

/* Tablet Large (750px - 989px) - Your existing tablet breakpoint */
@media screen and (max-width: 989px) {
  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
  }

  .footer-custom__content {
    padding: 1.5rem;
    width: 90%;
  }

  .footer-custom__link {
    font-size: 15px !important;
    margin-bottom: 0.9rem;
  }

  .footer-custom__text {
    font-size: 13px !important;
    line-height: 1.5;
  }
}

/* Tablet Medium (850px - 989px) - Fine-tuning */
@media screen and (min-width: 850px) and (max-width: 989px) {
  .footer-custom__content {
    padding: 1.6rem;
    width: 88%;
  }
  
  .footer-custom__link {
    font-size: 15px !important;
    margin-bottom: 0.9rem;
  }
  
  .footer-custom__text {
    font-size: 13px !important;
    line-height: 1.5;
  }
}

/* Tablet Small (750px - 849px) */
@media screen and (min-width: 750px) and (max-width: 849px) {
  .footer-custom__content {
    padding: 1.5rem;
    width: 90%;
  }
  
  .footer-custom__link {
    font-size: 14px !important;
    margin-bottom: 0.85rem;
  }
  
  .footer-custom__text {
    font-size: 12.5px !important;
    line-height: 1.5;
  }
}

/* Mobile Large (600px - 749px) */
@media screen and (min-width: 600px) and (max-width: 749px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88% !important;
    padding: 1.5rem 1.2rem !important;
    z-index: 2;
  }

  .footer-custom__link {
    font-size: 13.5px !important;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  .footer-custom__text {
    font-size: 11.5px !important;
    line-height: 1.5;
    margin-bottom: 0.25rem;
  }
}

/* Mobile Medium (480px - 599px) */
@media screen and (min-width: 480px) and (max-width: 599px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90% !important;
    padding: 1.3rem 1rem !important;
    z-index: 2;
  }

  .footer-custom__link {
    font-size: 13px !important;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  .footer-custom__text {
    font-size: 11px !important;
    line-height: 1.5;
    margin-bottom: 0.2rem;
  }
}

/* Mobile Small (375px - 479px) */
@media screen and (min-width: 375px) and (max-width: 479px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
    margin-top: 0 !important;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92% !important;
    padding: 1.2rem 1rem !important;
    z-index: 2;
  }

  .footer-custom__link {
    font-size: 12px !important;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .footer-custom__text {
    font-size: 10px !important;
    line-height: 1.5;
    word-wrap: break-word;
    margin-bottom: 0.2rem;
  }
}

/* Mobile Extra Small (320px - 374px) */
@media screen and (max-width: 374px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
    margin-top: 0 !important;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95% !important;
    padding: 1rem !important;
    z-index: 2;
  }

  .footer-custom__link {
    font-size: 11px !important;
    margin-bottom: 0.7rem;
    word-wrap: break-word;
    line-height: 1.4;
  }

  .footer-custom__text {
    font-size: 9px !important;
    line-height: 1.5;
    word-wrap: break-word;
    margin-bottom: 0.18rem;
  }
}

/* Mobile screens (749px and below) - Your original mobile breakpoint preserved */
@media screen and (max-width: 749px) {
  /* Hide desktop image, show mobile image */
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }

  .footer-custom {
    position: relative;
    display: block;
    isolation: isolate;
    margin-top: 0 !important;
  }

  .footer-custom__background {
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .footer-custom__background img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .footer-custom__link,
  .footer-custom__text {
    word-wrap: break-word;
  }
}

/* ===========================
   ORIENTATION ADJUSTMENTS
   ========================== */

/* Tablet Portrait (768px - 1024px in portrait) */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }
  
  .footer-custom {
    position: relative !important;
    display: block !important;
    isolation: isolate !important;
  }
  
  .footer-custom__content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 82% !important;
    padding: 1.6rem !important;
  }
  
  .footer-custom__link {
    font-size: 14px !important;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
  
  .footer-custom__text {
    font-size: 12px !important;
    line-height: 1.5;
    margin-bottom: 0.25rem;
  }
}

/* Mobile Landscape (ALL widths up to 915px in landscape) */
@media screen and (max-width: 915px) and (max-height: 430px) and (orientation: landscape) {
  .footer-bg-desktop {
    display: none !important;
  }
  
  .footer-bg-mobile {
    display: block !important;
  }
  
  .footer-custom {
    position: relative !important;
    display: block !important;
    isolation: isolate !important;
  }
  
  .footer-custom__background {
    position: relative !important;
    width: 100% !important;
    z-index: 0 !important;
  }
  
  .footer-custom__content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 70% !important;
    padding: 0.8rem !important;
  }
  
  .footer-custom__link {
    font-size: 11px !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .footer-custom__text {
    font-size: 9px !important;
    line-height: 1.4;
    margin-bottom: 0.12rem;
  }
}