/* Mobile-only stylesheet for the dev build (mobile-dev). */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
html {
  font-size: 16px;
}
:root {
  --nav-gap: 32px;
  --teal: #0f9d8d;
  --teal-dark: #0a6f65;
}
body {
  font: 1rem/1.5 "Tomsen Regular", "Cormorant Garamond", Arial, sans-serif;
  background: #878787;
  color: #000;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top);
  background: #f4f3f4;
  z-index: 3100;
}

/* Site Shell */
.mobile-site {
  background: #f4f3f4;
  color: #000;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #f4f3f4;
  padding-top: env(safe-area-inset-top);
  width: 100%;
  --logo-progress: 0;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: calc(12px - 10px * var(--logo-progress, 0));
  padding: 0;
  background: #f4f3f4;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
}

.header-contact-link {
  display: none;
  font-family: "Tomsen Regular", Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-align: center;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 4;
  padding: 0;
  background: transparent;
  min-height: calc(46px - 24px * var(--logo-progress, 0));
  max-height: calc(52px - 20px * var(--logo-progress, 0));
  overflow: hidden;
}

.logo-main {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 24px;
  transform: scale(calc(1 - 0.2 * max(0, (var(--logo-progress, 0) - 0.5) * 2)));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-sub {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 16.5px;
  margin-top: -2px;
  letter-spacing: 0.05em;
  opacity: calc(1 - min(1, var(--logo-progress, 0) * 2));
  transform: translateY(calc(-50% * min(1, var(--logo-progress, 0) * 2)));
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .logo-main,
  .logo-sub {
    transition: none;
  }
}

/* Navigation */
.main-navigation {
  position: static;
  transform: none;
  height: auto;
  min-height: 32px;
  margin-top: calc(-4px * var(--logo-progress, 0));
  padding-top: calc(6px - 4px * var(--logo-progress, 0));
  padding-bottom: calc(6px - 2px * var(--logo-progress, 0));
  padding-left: 20px;
  padding-right: clamp(48px, 12vw, 120px);
  background: #fff;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.main-navigation::-webkit-scrollbar {
  display: none;
  height: 0;
}
.main-navigation::after {
  content: "";
  flex: 0 0 calc(var(--nav-gap) * 1.2);
}

.nav-link {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0 4px;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 5px;
  line-height: 1;
  overflow: visible;
  flex: 0 0 var(--nav-fixed-width, auto);
  min-width: var(--nav-fixed-width, auto);
  max-width: var(--nav-fixed-width, none);
  transition: font-family 0.2s ease;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateY(1px);
}

.nav-link.active {
  font-family: "Tomsen Heavy", "Tomsen Regular", Arial, sans-serif;
  font-weight: 700;
  color: inherit;
  transform: translateY(0);
}

/* Main Content */
.site-main {
  max-width: 960px;
  margin: 0 auto;
  padding-top: var(--header-h, 80px);
}

.site-main > .content-section {
  min-height: 60lvh;
}

.site-main > .about-section {
  min-height: 80vh;
}

.site-main > .quote-section {
  min-height: 72lvh;
}

.site-main > .m-hero {
  min-height: calc(100lvh - var(--header-h, 80px));
}

.content-section {
  padding: 24px 16px;
  position: relative;
  scroll-margin-top: calc(var(--header-h, 80px) + 6px);
}

/* Hero Section (preserved) */
.m-hero {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.HeroText {
  width: 90%;
  margin: 48px auto;
  padding: 0;
}
.HeroText .m-hero__title1 {
  text-align: left;
}
.HeroText .m-hero__title2 {
  text-align: right;
}
.HeroText .m-hero__subtitle {
  text-align: center;
}
.m-hero__title1 {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 31px;
  letter-spacing: 0.62px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
  white-space: nowrap;
}
.m-hero__title2 {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 25px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-stroke: 1.5px #333;
  paint-order: stroke fill;
  margin-bottom: 16px;
  white-space: nowrap;
}
.m-hero__subtitle {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.m-hero__image {
  width: 100%;
  position: relative;
  margin-top: 0;
}
.m-hero__image img {
  width: 100%;
  height: 40lvh;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.CTAContainer {
  width: 100%;
}
.Caption {
  background: #fff;
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
  padding: 1rem 1rem;
  margin-top: -1px;
  font-size: 11px;
}
.m-hero__photo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: -0.02em;
  line-height: 1.9;
  color: #000000;
  text-align: justify;
  text-transform: uppercase;
  margin: 0 0 1.5em 0;
  padding: 0;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 3.8em;
}
.CaptionBreak {
  width: 100%;
  height: 1px;
  border-top: 1px dotted #000;
  margin: 0;
}
.HeroCTAContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: 1rem;
  margin-top: calc(-1.3rem);
  width: fit-content;
  max-width: 100%;
}
.HeroCTAWrapper {
  background: #fff;
  border: 1px dotted #000;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.HeroCTA {
  width: 100%;
}
.m-hero__cta-divider {
  width: 100%;
  height: 1px;
  border-top: 1px dotted #000;
  margin: 0;
}
.m-hero__arrow {
  margin-top: 2px;
  display: flex;
  justify-content: center;
}
.m-hero__svg {
  width: 20px;
  height: 20px;
  display: block;
}
.m-cta {
  background: #333;
  border: 1px solid #2b2b2b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
  width: 100%;
}
.m-cta span {
  background: none;
  color: #fff;
  padding: 0;
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 12px;
  /* letter-spacing: 0.11em; */
  text-transform: uppercase;
  white-space: nowrap;
}

/* Services Section */
.services-intro {
  width: 100%;
  max-width: 640px;
  margin: 32px auto 64px;
  padding: 0 18px;
  display: grid;
  justify-items: center;
  font-family: "Tomsen Light", "Tomsen Regular", Arial, sans-serif;
  font-size: 15px;
  font-size: clamp(11px, 3.2vw, 15px);
  font-weight: 600;
  line-height: 1.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.services-intro__line {
  display: block;
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
}

.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.service-card {
  background: #fff;
  border: 1px solid #000;
  padding: 16px;
  width: clamp(260px, 92%, 520px);
  margin: 0 auto;
  padding: 0;
}

.card-header {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid #000;
  padding: 8px 12px;
  background: #f4f3f4;
}

.service-card__body {
  padding: 16px 16px 18px;
}

.service-list {
  list-style: disc;
  padding-left: 22px;
  margin: 6px 0 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
}

.service-list li {
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .service-list li {
    margin-bottom: 24px;
  }
}

@media (min-width: 640px) {
  .service-list li {
    margin-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .service-list li {
    margin-bottom: 36px;
  }
}

/* Capabilities Section */
.service2-section {
  padding: 0;
}

.service2-wrapper {
  width: 100%;
  min-height: calc(100vh - var(--header-h, 80px));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
}

.service2-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: calc(100% - 5%);
  margin-top: 5%;
  background: #C3C2C3;
  z-index: 0;
  pointer-events: none;
}

.service2-visual {
  width: 100%;
  max-width: 100%;
  position: relative;
  flex-shrink: 0;
  height: auto;
  overflow: hidden;
  z-index: 1;
  margin-top: 10%;
}

.service2-visual img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 40vh;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}

.service2-strap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: -0.02em;
  line-height: 1.9;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 18px;
}

.service2-body {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 36px 28px 5%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.service2-body p {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.65;
  color: #000;
  margin: 0 auto;
  text-align: justify;
  max-width: min(76%, 420px);
  width: 100%;
}

.service2-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.service2-cta-button {
  border: 1px dotted #000;
  padding: 13px 36px;
  background: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  width: fit-content;
  transition: all 0.2s ease;
}

.service2-cta-button span {
  display: inline-block;
}

.service2-arrow {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.service2-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.service2-cta-button:hover {
  background: #f8f8f8;
  transform: translateY(-1px);
}

.service2-cta-button:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

/* Locations Section */
.locations-section {
  min-height: calc(100vh - var(--header-h, 80px)) !important;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  align-items: center;
  position: relative;
  overflow: visible;
}

.locations-title {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 8px 0 6px;
  padding: 0;
  flex-shrink: 0;
}

.page-container {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 0 auto;
}

.map-toggle-buttons {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 8px;
  justify-content: center;
  border: none;
  width: fit-content;
  z-index: 10;
}

.map-toggle-btn {
  background: #fff;
  border: 1px dotted #000;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  width: 140px;
  box-sizing: border-box;
}

.map-toggle-btn:hover {
  background: #fff;
}

.map-toggle-btn.map-toggle-active {
  background: #fff;
  color: #000;
  font-family: "Tomsen Heavy", "Tomsen Regular", Arial, sans-serif;
  border-style: solid;
}

.map-toggle-btn.map-toggle-active span {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.maps-container {
  border: 1px solid #000000;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #000000;
  position: relative;
  height: clamp(240px, 40vh, 420px);
  z-index: 1;
}

.maps-container .map-panel {
  width: 100%;
  height: 100%;
  display: none;
}

.maps-container .map-panel.map-panel-active {
  display: block;
}

#map-sydney-m,
#map-victoria-m {
  width: 100%;
  height: 100%;
  background: #f4f3f4;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

#map-sydney-m {
  background-image: url("../../map/Sydney Map/Greater Sydney Clean Final.png");
}

#map-victoria-m {
  background-image: url("../../map/Melbourne Map/Greater Melbourne Map.png");
}

.locations-panel {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #f4f3f4;
  border: 1px solid #000000;
  border-top: 1px solid #000000;
  padding: 2.5rem 1.5rem 1.5rem;
  box-shadow: none;
  margin: 0 auto;
  flex-shrink: 0;
  align-self: center;
  z-index: 2000;
  overflow: visible;
  transform: translateY(-5%);
}

.maps-container .leaflet-container {
  z-index: 1;
}

.panel-header {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.header-line {
  width: 160px;
  height: 1px;
  background: #000;
  margin: 8px auto 12px;
}

.panel-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
  margin-bottom: 12px;
}

.postcode-checker {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 16px;
  margin-bottom: 24px;
}

.input-group {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #000;
  background: #f4f3f4;
  width: 100%;
  box-sizing: border-box;
}

.input-label {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 12px 6px;
  background: #f4f3f4;
  white-space: nowrap;
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.postcode-input {
  background: #fff;
  border: none;
  padding: 6px 12px 10px;
  width: 50%;
  border-left: 1px solid #000;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}

.postcode-input::placeholder {
  color: #878787;
  opacity: 1;
}

.check-button {
  position: relative;
  background: #f4f3f4;
  color: #000;
  border: 1px solid #000;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-family: "Tomsen Heavy", Arial, sans-serif;
  font-size: 11.78px;
  line-height: 13px;
  width: 100%;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  box-sizing: border-box;
}

.check-button::after {
  content: none;
}

.ServiceRequestQuoteButton {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  width: fit-content;
  max-width: 100%;
  align-self: center;
}

.ServiceWhiteDottedBox {
  background: #ffffff;
  border: 1px dotted #000000;
  padding: 0.839rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  box-sizing: border-box;
  transition: border 0s;
}

.ServiceQuoteText {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  font-size: 0.793rem;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  letter-spacing: 1.3px;
}

.ServiceArrows {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ServiceArrowsIcon {
  width: 0.672rem;
  height: 0.672rem;
  display: block;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.ServiceArrowsIcon path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ServiceRequestQuoteButton:hover .ServiceArrowsIcon {
  transform: translateY(2px);
}

.service-coming {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 16px;
  color: #000;
}

.locations-cta {
  display: inline-block;
  margin-top: 10px;
  border: 1px dotted #000;
  padding: 8px 12px;
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* About Section */
.capabilities-section,
.about-section,
.quote-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-section {
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

.about-section[data-devnum="6"]::after {
  content: "";
  position: absolute;
  bottom: -4.5vh;
  left: 50%;
  transform: translateX(calc(-50% - 1.2px));
  width: 0.7px;
  height: 9vh;
  background: #000;
  box-shadow: 2.4px 0 0 #000;
  z-index: 10;
}

.capabilities-section {
  align-items: stretch;
  text-align: left;
}

.about-section,
.quote-section {
  align-items: center;
  text-align: center;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: min(92%, 560px);
  height: 100%;
  margin: 0 auto;
  padding: 0;
  flex: 1;
}

.about-card__image-frame {
  width: 100%;
  background: transparent;
}

.about-card__image-frame img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  padding: 5%;
  border: 1px dotted #000;
  box-sizing: border-box;
}

.about-card__body {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  color: #000;
}

.about-card__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.about-card__title {
  font-family: "Tomsen Regular", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
  text-align: center;
  margin-bottom: 14px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 12px 0;
}

.about-images img {
  width: 240px;
  height: auto;
  background: #fff;
  padding: 6px;
  border: 1px solid #d0d0d0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: block;
  margin: 0 auto;
}

/* Quote Section */
.quote-container {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.quote-header {
  width: 100%;
}

.quote-header-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-heading {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
}

.quote-line {
  display: none;
}

.quote-header p {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  text-align: left;
}

.quote-form {
  background: #f4f3f4;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-input {
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 6px 8px;
  width: 100%;
  min-width: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-input:focus {
  background: #fff;
  outline: none;
  border-radius: 0;
}

.location-button {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dotted #000;
  background: transparent;
  cursor: pointer;
  padding: 6px 12px;
  width: 100%;
  min-width: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.location-button span {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #000;
}

.location-button-active {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.location-button-active span {
  color: #000;
}

.form-textarea {
  grid-column: 1 / span 2;
  border: 1px solid #000;
  background: #fff;
  padding: 8px;
  width: 100%;
  min-width: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  min-height: 90px;
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.submit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.submit-button {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #000;
}

.submit-line {
  width: 62px;
  height: 1px;
  background: #000;
}

/* Contact Footer */
.site-main > .contact-footer {
  min-height: 25lvh;
}

.contact-footer {
  background: #878787;
  color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px calc(48px + env(safe-area-inset-bottom));
}

.contact-footer-content {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.contact-header {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8e8e8;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contact-item {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #e8e8e8;
  text-decoration: none;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-nav-link {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #e8e8e8;
  text-decoration: underline;
  text-decoration-color: #e8e8e8;
  text-underline-offset: 4px;
}

.copyright {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8e8e8;
}

.contact-login-button {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #e8e8e8;
  text-decoration: none;
  border: 1px dotted #e8e8e8;
  padding: 14px 28px;
  margin-top: 32px;
  background: #878787;
  display: inline-block;
}

/* Contact popups */
.m-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 420px);
  max-height: 75vh;
  background: #ffffff;
  border: 1px dotted #000;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 16px 16px;
  z-index: 4200;
  box-shadow: none;
  color: #000;
  overflow: hidden;
}

.m-popup.is-open {
  display: flex;
}

.m-popup--privacy {
  width: min(92vw, 460px);
  max-height: 94vh;
}

.m-popup__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-variant: all-small-caps;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0.5px;
  text-underline-position: from-font;
  text-align: center;
  padding: 0 28px 6px;
}

.m-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
}

.m-popup__close svg {
  width: 10px;
  height: 9px;
  display: block;
}

.m-popup__body {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  line-height: 1.35;
  color: #000;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  padding-right: 4px;
}

.m-popup__body--center {
  text-align: center;
}

.m-popup__body p {
  margin: 0 0 12px;
}

.m-popup__body p.section-title {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0.5px;
  text-underline-position: from-font;
  font-weight: 600;
}

.m-popup__body ul {
  list-style-type: disc;
  margin: 0 0 12px;
  padding-left: 1.5em;
}

.m-popup__body li {
  margin: 0 0 8px;
}

.m-popup__body a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0.5px;
  text-underline-position: from-font;
  color: #000;
}

.m-popup__message {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.3;
  font-variant: all-small-caps;
  margin: 0 0 12px;
}

.m-popup__email {
  font-family: "Tomsen Regular", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.m-popup__email a {
  color: #707070;
  text-decoration: none;
}

.m-popup--careers .m-popup__email {
  font-size: 11px;
  color: #000;
}

.m-popup--careers .m-popup__email a {
  color: #000;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-link {
  color: #fff;
}

.footer-separator {
  color: #fff;
}

/* Dev Container Labels - Removed */
