/* Disable blue highlight on button click */
button {
  -webkit-appearance: none; /* helps avoid iOS default button styling */
  appearance: none;
  color: #000000; 
}

/* You can do the same for links */
a {
  -webkit-appearance: none; /* helps avoid iOS default button styling */
  appearance: none; 
  color: #000000; 
  text-decoration: none;
}

.nav-links a,
.nav-links a:hover,
.nav-cta,
.nav-cta:hover,
.cta-button,
.cta-button:hover,
.footer-partner-btn,
.footer-partner-btn:hover,
.partner-login,
.partner-login:hover {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "montserrat", sans-serif;
}

html,
body {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  overflow-x: clip;
}

h1 {
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 7rem); /* min, fluid, max */
  font-weight: 400;
  line-height: 0.95;
  color: #000000;
  margin: 0.2em 0 0.5em 0; 
}

a,
p {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 0.9;
}


a:hover,
a:focus {
  color: #000000;
  text-decoration: underline; /* or whatever you prefer */
}

p span {
  font-family: "montserrat", sans-serif;
}

p {
  font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.model {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}


section {
  max-width: 100vw;
  min-height: 60vh;
}

section + section {
  margin-top: 6em;
}

.partner-login + section {
  margin-top: 6em;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12em;
  padding: 6em;
  position: relative;
}

.scroll-label {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: #8c8c8c;
}

.scroll-label.left {
  position: absolute;
  left: 4rem;
}

.scroll-label.right {
  position: absolute;
  right: 4rem;
}

.hero-content {
  max-width: 40%;
}



.hero-content h1 span {
  display: block;
}

.eyebrow {
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  color: #8c6f4f;
}

.hero-description {
  margin-top: 2em;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-description span {
  font-style: italic;
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}

.model-frame {
  width: 380px;
  height: 440px;
  background-color: #e9e2d2;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
}

.hero {
  background-color: #e9e2d2;
}
.hero-controls {
  display: flex;
  gap: 1em;
  color: #000000;
}

.hero-controls .outline {
  border: 1px solid #000000;
  background-color: transparent;
  padding: 0.5em 1.5em;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  cursor: pointer;
  color: #000000;
  -webkit-appearance: none; /* helps avoid iOS default button styling */
  appearance: none; /* helps avoid iOS default button styling */
}

.hero-controls .outline:hover {
  background-color: #000000;
  color: #ffffff;
}

.gallery {
  padding: 8em 2em;
  background-color: #ffffff;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2em;
  margin-bottom: 3em;
}



.gallery-header h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  text-transform: none;
  margin-right: 1.5em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5em;
}

.gallery-card {
  min-height: 320px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-card.tall {
  grid-column: span 4;
  min-height: 60vh;
}

.gallery-card.wide {
  grid-column: span 8;
  min-height: 360px;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.gallery-card figcaption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5em;

}



figcaption > p {
  color: #ffffff;

}

.gallery-label {
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.gallery-card p:last-child {
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.8;
}



.gallery-scroll-wrapper {
  position: relative;
  margin-top: 3em;
}

.gallery-scroll {
  display: flex;
  gap: 1.5em;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 3.5em 2em 3.5em;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav--prev {
  left: 1rem;
}

.gallery-nav--next {
  right: 1rem;
}

.gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.gallery-scroll-progress {
  position: absolute;
  bottom: 0;
  left: 3.5em;
  right: 3.5em;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 1px;
  overflow: hidden;
}

.gallery-scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0f8c5c 0%, #13a26d 100%);
  width: 0%;
  transition: width 0.2s ease;
  border-radius: 1px;
}

.gallery-portrait-card {
  width: 420px;
  height: 680px;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  scroll-snap-align: start;
  transition: transform 0.4s ease;
}

.gallery-portrait-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gallery-portrait-card figcaption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5em;
}


.gallery-portrait-card:hover img {
  transform: scale(1.05);
}

.partner-login {
  position: fixed;
  writing-mode: vertical-rl;
  right: 0;
  bottom: 48px;
  padding: 0.9em 1.2em;
  background-color: #0f8c5c;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;

}

.partner-login:hover {
 font: black;
  background-color: white;
  border: #0f8c5c 1px solid;
}

.configurator {
  padding: 8em 6em;
  background: #e9e2d2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3em;
  align-items: center;
}

.configurator-copy {
  grid-column: span 7;
}



.configurator-copy h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1em;
}

.configurator-description {
  max-width: 540px;
  margin-bottom: 2em;
}

.configurator-panel-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.configurator-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5em;
  margin-bottom: 2em;
}

.option-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  margin-bottom: 0.4em;
  font-weight: bold;
}

.configurator-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.ghost-btn {
  -webkit-appearance: none; /* helps avoid iOS default button styling */
  appearance: none;
  color: #000000;
  border: 1px solid #000000;
  background-color: transparent;
  padding: 0.5em 1.5em;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}

.ghost-btn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.configurator-panel {
  grid-column: span 5;
}

.configurator-panel-inner {
  padding: 2.5em;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #8c8c8c;
}

.configurator-embed-container {
  width: 100%;
  height: calc(100vh - 80px);
  margin-top: 7rem;
  padding: 0;
  overflow: hidden;
}


.configurator-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.panel-tag {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.5em;
  color: #8c8c8c;
}

.about-hero {
  padding: 8em 6em;
  background: #e9e2d2;
  margin-top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.about-hero-content {
  max-width: 720px;
}



.hero-lede {
  max-width: 640px;
}

.brand-hero {
  padding: 8em 6em;
  background: #e9e2d2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-hero-inner, .careers-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
  width: 100%;
}








.brand-hero-media {
  flex: 0 0 45%;
  max-width: 50%;
}

.brand-hero-media img, .careers-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.brand-overview {
  padding: 6em 6em;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3em;
}

.brand-overview-text {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.brand-overview-text h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
}



.brand-overview-highlights {
  grid-column: span 5;
  display: grid;
  gap: 1.2em;
}

.brand-overview-highlights article {
  border: 1px solid #ede5da;
  border-radius: 18px;
  padding: 2em;
  background: #f9f6f1;
}

.brand-highlights {
  padding: 4em 6em;
  background: #e9e2d2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2em;
}

.highlight-card {
  border: 1px solid #ede5da;
  border-radius: 18px;
  padding: 2.5em;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}


.highlight-card h3 {
  font-size: 26px;
  font-weight: 500;
}



.brand-gallery {
  padding: 6em 6em;
  background: #ffffff;
}

.brand-gallery-header {
  max-width: 620px;
  margin-bottom: 3em;
}

.brand-gallery-header h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
}

.brand-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5em;
}

.brand-gallery-grid figure {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.brand-gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.brand-gallery-grid figcaption {
  padding: 1.25em;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d655c;
  background: #f9f6f1;
}

.brand-cta {
  margin: 0 6em;
  padding: 3.5em 4em;
  border-radius: 22px;
  background: #121212;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}

.brand-cta h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 400;
}



.services-hero {
  padding: 8em 6em;
  background: #e9e2d2;
  color: #ffffff;
  height: 100vh;
  display: flex;
  align-items: center;
}

.services-hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
}





.services-grid {
  padding: 6em 6em;
  background: #f5f1ea;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2em;
}

.service-card {
  border-radius: 24px;
  border: 1px solid #e4dbcd;
  background: #ffffff;
  padding: 2.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Persona landing pages */
.landing-faq {
  padding: 6em 6em;
  background: #ffffff;
  min-height: auto;
}

.landing-faq-header {
  max-width: 760px;
  margin: 0 auto 2.5em;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.landing-faq-items {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.landing-faq details {
  border: 1px solid #e4dbcd;
  border-radius: 18px;
  background: #fffdf9;
  padding: 1.2em 1.4em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.landing-faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: #111111;
}

.landing-faq summary::-webkit-details-marker {
  display: none;
}

.landing-faq details[open] {
  background: #ffffff;
}

.landing-faq-answer {
  margin-top: 0.85em;
}

.landing-faq-answer p {
  margin: 0;
}

.service-number {
  font-size: 12px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #b9a689;
}

.service-card h3 {
  font-size: 32px;
  font-weight: 500;
}



.service-list {
  margin: 0;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.8;
}

.service-list li {
  list-style: disc;
}

.careers {
  padding: 8em 6em;
  background: #ffffff;
}

.careers-header {
  max-width: 720px;
}

.careers-hero {
  margin-bottom: 4em;
}





.careers-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2em;
}

.career-card {
  border-radius: 24px;
  border: 1px solid #e4dbcd;
  background: #fffdf9;
  padding: 2.5em;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
}



.career-card h2 {
  font-size: 22px;
  font-weight: 500;
}

.career-meta {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8c8c8c;
}



.career-link {
  margin-top: 0.5em;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0f8c5c;
  text-decoration: none;
}

.career-link:hover {
  text-decoration: underline;
}

.career-readmore {
  margin-top: 0.3em;
  align-self: flex-start;
  padding: 0.45em 1.2em;
  border: 1px solid black;
  background: #ffffff;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.career-readmore:hover {
  background: #f4efe6;
}

.career-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  overflow: hidden;
  touch-action: none;
}

.career-modal.is-open {
  display: flex;
}

.career-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  touch-action: none;
  -webkit-overflow-scrolling: touch;
}

.career-modal-dialog {
  position: relative;
  max-width: 640px;
  max-height: 90vh;
  width: calc(100% - 3em);
  background: #fffdf9;
  border-radius: 24px;
  padding: 2.5em 2.5em 2.25em;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  overflow: hidden;
}

.career-modal-close {
  position: absolute;
  top: 1.4em;
  right: 1.6em;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.career-modal-title {
  font-size: 24px;
  font-weight: 500;
}

.career-modal-meta {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8c8c8c;
}

.career-modal-body {
  overflow-y: auto;
  max-height: calc(90vh - 250px);
  padding-right: 0.5em;
  padding-bottom: 1em;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Custom scrollbar for modal body */
.career-modal-body::-webkit-scrollbar {
  width: 6px;
}

.career-modal-body::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 3px;
}

.career-modal-body::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 3px;
}

.career-modal-body::-webkit-scrollbar-thumb:hover {
  background: #b0b0b0;
}

.career-modal-body p + p {
  margin-top: 0.8em;
}

.career-full h3,
.career-modal-body h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: #2a2a2a;
}

.career-full h3:first-child,
.career-modal-body h3:first-child {
  margin-top: 0;
}

.career-full ul,
.career-modal-body ul {
  margin: 0.8em 0;
  padding-left: 1.5em;
  list-style: disc;
}

.career-full li,
.career-modal-body li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.career-modal-apply {
  margin-top: 1em;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0f8c5c;
  text-decoration: none;
}

.career-modal-apply:hover {
  text-decoration: underline;
}



@media (max-width: 1280px) {
  .careers {
    padding: 6em 4em;
  }
  .careers-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .career-modal-dialog {
    max-height: 85vh;
  }
  
  .career-modal-body {
    max-height: calc(85vh - 250px);
  }
}


@media (max-width: 800px) {
  .hero {
    padding-top: 9em}}


@media (max-width: 768px) {
  .careers {
    padding: 5em 2em;
  }
  .careers-list {
    grid-template-columns: 1fr;
  }
  
  .career-modal-dialog {
    max-width: calc(100% - 2em);
    max-height: 90vh;
    padding: 2em 1.5em 1.5em;
  }
  
  .career-modal-body {
    max-height: calc(90vh - 220px);
  }
  
  .career-modal-close {
    top: 1em;
    right: 1em;
    font-size: 24px;
  }
}
.contact-hero {
  padding: 8em 6em;
  background: #ebe6dd;
  min-height: 70vh;
  display: flex;
  align-items: center;
 }
 
 
 .contact-hero-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
 }
 
 
 
 
 
 
 
 
 
 
 
 
 .contact-details {
  padding: 5em 6em;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2em;
 }

 
 .contact-card {
  border: 1px solid #e4dbcd;
  border-radius: 20px;
  padding: 2.5em;
  background: #fffdf9;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1em;
 }
 
 
 .contact-card h3,
 .contact-card h4 {
  margin: 0;
  color: #2a2a2a;
  font-weight: 500;
 }
 
 
 .contact-card p,
 .contact-card li {
  color: #3a3a3a;
 }
 
 
 .contact-link {
  color: #3a3a3a;
 }
 
 
 .contact-map-embed {
  margin-top: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
 }
 
 
 .contact-map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
 }
 
 
 .contact-map-link {
  font-size: 0.95rem;
  color: #3a3a3a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
 }
 
 
 .contact-map-link:hover {
  text-decoration: underline;
 }
 
 
 .contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
 }
 
 
 .contact-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c6f4f;
  margin-bottom: 0;
 }
 
 
 .contact-label {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #8c6f4f;
 }
 
 
 .contact-form-area {
  padding: 10em 6em 6em;
  background: #f7f3ed;
 }
 
 
 .contact-form-inner {
  border: 1px dashed #bca88f;
  border-radius: 24px;
  padding: 3em;
  background: #fffdf9;
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: left;
 }
 
 
 .contact-form-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin: 0 auto
 }
 
 
 .contact-form-placeholder {
  border: 1px solid #e4dbcd;
  border-radius: 18px;
  min-height: 320px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(188, 168, 143, 0.15),
    rgba(188, 168, 143, 0.15) 20px,
    transparent 20px,
    transparent 40px
  );
 }
 
.about-story {
  padding: 8em 6em;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4em;
  align-items: start;
  background: #ffffff;
}

.about-story-content {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.about-story-content h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
}



.about-story-highlights {
  grid-column: span 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  align-self: stretch;
}

.about-story-highlights article {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 2.5em;
  background: #f9f9f9;
}

.about-story-highlights .stat {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.4em;
}

.about-story-highlights .label {
  font-size: 13px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #8c8c8c;
}

.team {
  padding: 8em 6em;
  
  border-radius: 20px;
}

.team-header {
  max-width: 720px;
  margin-bottom: 3em;
}

.team-header h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  font-weight: 400;
  margin-bottom: 0.6em;
}



.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
}

.team-card {
  border-radius: 16px;
  border: 1px solid #e1e1e1;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-card-body {
  padding: 1.8em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.team-card h3 {
  font-size: 18px;
  font-weight: 500;
}

.team-card .role {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #8c8c8c;
}



.team-snapshot {
  padding: 8em 6em;
  background: #f4efe6;
}

.team-snapshot-content {
  display: flex;
  gap: 3em;
  align-items: stretch;
}

.team-snapshot-text {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.team-snapshot-text h2 {
  font-size: 48px;
  font-weight: 400;
}




.snapshot-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #111;
}

.snapshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.snapshot-item figcaption {
  padding: 1.25em 1.5em;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(120deg, rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.65));
}


.about-gallery {
  padding: 8em 6em;
  background: #ffffff;
}

.about-gallery-header {
  margin-bottom: 3em;
}

.about-gallery-header h2 {
  font-size: 48px;
  font-weight: 400;
  max-width: 620px;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, auto);
  gap: 1em;
  grid-auto-flow: dense;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.gallery-item--vertical {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: 3 / 4;
  min-height: 420px;
}

.gallery-item--horizontal {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.placeholder-card {
  background: #f4efe6;
  border: 1px dashed #d5c8b6;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #8c6f4f;
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2em 1.5em;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.showroom {
  padding: 8em 6em;
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3em;
  align-items: center;
}

.showroom-copy {
  grid-column: span 5;
}


.showroom-copy h3 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 1em;
}

.showroom-description {
  max-width: 540px;
  margin-bottom: 2em;
}

.showroom-panel {
  grid-column: span 7;
}

.showroom-panel-inner {
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.showroom-panel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brochures {
  padding: 8em 6em;
  background: #e9e2d2;
  margin-bottom: 12em;
}

.brochures-header {
  text-align: center;
  margin-bottom: 3em;
}


.brochures-header h3 {
  font-size: 48px;
  font-weight: 400;
  margin-top: 0.6em;
}

.brochures-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5em;
}

.brochure-card {
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  padding: 2.5em;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  align-items: center;
  justify-content: center;
}

.brochure-label {
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.brochure-embed {
  width: 100%;
  margin-top: 0.5em;
}

.brochure-embed > div {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.partners {
  padding: 6em 6em 0;
  background: #ffffff;
}

.partners-header {
  max-width: 620px;
  margin: 0 auto 2.5em;
  text-align: center;
}

.partners-header h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.75em 1em;
  
}

.partner-logo picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 280px;
  height: 100%;
  display: block;
}

.brand-orderchamp-cta {
  margin: 6em auto 0;
  width: calc(100% - 12em);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #ede5da;
  padding: 3.5em 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
}

.brand-orderchamp-cta .cta-text {
  max-width: 520px;
}

.cta-partner {
  margin: 6em auto 0;
  width: calc(100% - 12em);
  border-radius: 20px;
  background: linear-gradient(135deg, #e9e2d2, #f8f3ea);
  color: black;
  padding: 4em 5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
  box-shadow: 0 40px 80px rgba(180, 177, 177, 0.1);
}



.cta-content h3 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 0.6em;
}

.cta-text {
  max-width: 520px;
}

.cta-button {
  -webkit-appearance: none; /* helps avoid iOS default button styling */
  appearance: none;
  color: #ffffff;
  background-color: #0f8c5c;
  border: 1px solid #0f8c5c;
  padding: 1em 2.6em;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: normal;
  text-align: center;
}

.cta-button:hover {
  background: #ffffff;
  color: #111111;
}



.archive {
  height: 200vh;
  display: flex;
  flex-direction: column;
  gap: 3em;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.archive-header p {
  font-family: "montserrat", sans-serif;
  font-style: italic;
  color: #000000;
}

.archive h2 {
  font-family: "montserrat", sans-serif;
  font-size: 120px;
  font-weight: 300;
  color: #000000;
}

.archive-info {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.archive-info p {
  text-transform: uppercase;
  color: #000000;
}

.outro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6em 2em 2em 2em;
}

.outro-copy h2 {
  width: 75%;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5em;
  color: #000000;
}

.outro-copy h2 .line {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  display: block;
}

.outro-copy h2 .line span {
  position: relative;
  will-change: transform;
  display: block;
  transform: translateY(70px);
}

.outro-copy p {
  display: flex;
  margin: 1em 0;
  gap: 2em;
  text-transform: uppercase;
  color: #000000;
}

.outro-copy p span {
  font-family: "montserrat", sans-serif;
}





@media (min-width: 1920px) {
  .about-hero-content {
    max-width: 900px;
  }

  .about-story {
    max-width: 1600px;
    margin: 0 auto;
  }

  .team {
    max-width: 1600px;
    margin: 0 auto;
  }

  .about-gallery {
    max-width: 1600px;
    margin: 0 auto;
  }

  .cta-partner {
    max-width: 1400px;
  }

}

@media (max-width: 1280px) {
  .hero {
    gap: 8em;
    padding: 6em 4em;
  }

  .landing-faq {
    padding: 5em 4em;
  }


  .model-frame {
    width: 340px;
    height: 400px;
  }

  .outro-copy h2 {
    font-size: 52px;
  }

  .gallery-header h3 {
    font-size: 36px;
  }

  .configurator-copy h3 {
    font-size: 42px;
  }

  .showroom-copy h3 {
    font-size: 42px;
  }

  .brochures-header h3 {
    font-size: 42px;
  }


  .about-story-content h2 {
    font-size: 48px;
  }

  .team-header h2 {
    font-size: 44px;
  }

  .team-snapshot {
    padding: 6em 4em;
  }

  .team-snapshot-text h2 {
    font-size: 42px;
  }

  .about-gallery-header h2 {
    font-size: 40px;
  }

  .cta-content h3 {
    font-size: 48px;
  }

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

  .brand-hero {
    padding: 7em 4em;
  }


  .brand-overview {
    padding: 5em 4em;
    grid-template-columns: repeat(8, 1fr);
  }

  .brand-overview-text {
    grid-column: span 5;
  }

  .brand-overview-highlights {
    grid-column: span 3;
  }


  .brand-highlights {
    padding: 3.5em 4em;
  }

  .brand-gallery {
    padding: 5em 4em;
  }

  .brand-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-cta {
    margin: 0 4em;
  }

  .brand-orderchamp-cta {
    width: calc(100% - 8em);
    padding: 3.5em 3.5em;
  }

  .brand-hero-inner, .careers-hero-inner {
    flex-direction: column;
  }

  .brand-hero-media {
    width: 100%;
    max-width: 560px;
  }

 
 

  .services-grid {
    padding: 5em 4em;
  }

  .contact-hero {
    padding: 7em 4em;
  }



  .contact-details {
    padding: 4.5em 4em;
  }

  .contact-form-area {
    min-height: 80vh;
  }

  .contact-form-inner h2 {
    font-size: 42px;
  }
}

@media (max-width: 960px) {


  .intro,
  .archive {
    padding: 4em 3em;
  }

  .hero {
    gap: 6em;
    padding: 6em 3em;
  }

  

  .model-frame {
    width: 300px;
    height: 360px;
  }

  .scroll-label {
    display: none;
  }

  .outro {
    padding: 5em 3em 2em;
  }

  .outro-copy h2 {
    font-size: 44px;
    width: 100%;
  }

  .outro-copy p {
    flex-direction: column;
    gap: 0.5em;
  }

  .gallery {
    padding: 6em 3em;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-header h3 {
    font-size: 32px;
  }

  .configurator-copy h3 {
    font-size: 36px;
  }

  .showroom-copy h3 {
    font-size: 36px;
  }

  .brochures-header h3 {
    font-size: 36px;
  }

  .partner-login {
    bottom: 24px;
    padding: 0.7em 1em;
    font-size: 11px;
  }

  .about-hero {
    padding: 9em 3em 3em;
    max-height: 100vh;
  }


  

  .about-story {
    padding: 6em 3em;
    grid-template-columns: repeat(6, 1fr);
    gap: 3em;
  }

  .about-story-content,
  .about-story-highlights {
    grid-column: span 6;
  }

  .about-story-content h2 {
    font-size: 42px;
  }

 
  .about-story-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2em;
  }

  .about-story-highlights article {
    padding: 2em;
  }

  .about-story-highlights .stat {
    font-size: 40px;
  }

  .about-story-highlights .label {
    font-size: 12px;
    letter-spacing: 0.4em;
  }

  .team {
    padding: 6em 3em;
  }

  .team-header h2 {
    font-size: 40px;
  }

  .team-header p {
    font-size: 16px;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2em;
  }

  .team-card img {
    height: 200px;
  }

  .team-card-body {
    padding: 1.5em;
    border-radius: 20px;
  }

  .brand-hero {
    padding: 6em 3em;
    min-height: auto;
  }

 
  .brand-overview {
    padding: 4.5em 3em;
    grid-template-columns: repeat(6, 1fr);
  }

  .brand-overview-text,
  .brand-overview-highlights {
    grid-column: span 6;
  }

  .brand-overview-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 3em 3em;
  }

  .brand-gallery {
    padding: 4.5em 3em;
  }

  .brand-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-cta {
    margin: 0 3em;
    padding: 3em;
    flex-direction: column;
    align-items: flex-start;
  }

  .services-hero, .brand-hero, .about-hero {
    padding: 6em 3em;
  }



  .services-grid {
    padding: 4.5em 3em;
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 6em 3em;
  }

 

  .contact-details {
    grid-template-columns: 1fr;
    padding: 4em 3em;
  }

  .contact-form-area {
    padding: 8em 3em 4.5em;
  }

  .team-snapshot {
    padding: 5em 3em;
  }

  .team-snapshot-content {
    flex-direction: column;
  }

  .team-snapshot-images {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .snapshot-item img {
    min-height: 320px;
  }

  .about-gallery {
    padding: 6em 3em;
  }

  .about-gallery-header h2 {
    font-size: 36px;
  }

  .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item--vertical {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 360px;
  }

  .gallery-item--horizontal {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 240px;
  }

  .cta-content h3 {
    font-size: 42px;
  }

  .cta-text {
    font-size: 14px;
  }

  .gallery-scroll {
    gap: 1em;
    padding: 0 3.5em 2em 3.5em;
  }

  .gallery-portrait-card {
    width: 360px;
    height: 580px;
  }

  .gallery-card,
  .gallery-card.tall {
    grid-column: span 3;
  }

  .gallery-card.wide {
    grid-column: span 6;
  }

  .configurator {
    grid-template-columns: repeat(6, 1fr);
    padding: 6em 3em;
  }

  .configurator-copy {
    grid-column: span 6;
  }

  .configurator-panel {
    grid-column: span 6;
  }

  .configurator-options {
    grid-template-columns: 1fr;
  }

  .showroom {
    grid-template-columns: repeat(6, 1fr);
    padding: 6em 3em;
  }

  .showroom-copy {
    grid-column: span 6;
  }

  .showroom-panel {
    grid-column: span 6;
  }

  .brochures {
    padding: 6em 3em;
  }

  .partners {
    padding: 5em 3em 0;
  }

  .brochures-grid {
    grid-template-columns: 1fr;
  }

  .partners {
    padding: 5em 3em 0;
  }

  .partners-logos {
    gap: 1.5em 2em;
  }



  .cta-partner {
    width: calc(100% - 6em);
    flex-direction: column;
    align-items: flex-start;
    padding: 4em 3em;
    min-height: 300px;
  }

  .brand-orderchamp-cta {
    width: calc(100% - 6em);
    flex-direction: column;
    align-items: flex-start;
    padding: 3.5em 3em;
  }
  .brand-hero-inner {
    margin-top: 2em
  }
}

@media (max-width: 768px) {




  .hero {
    gap: 5em;
    padding: 5em 2.5em;
  }



  .model-frame {
    width: 280px;
    height: 340px;
  }

  .outro-copy h2 {
    font-size: 38px;
  }

  .gallery-header h3 {
    font-size: 30px;
  }

  .configurator-copy h3 {
    font-size: 32px;
  }

  .showroom-copy h3 {
    font-size: 32px;
  }

  .brochures-header h3 {
    font-size: 32px;
  }

  .cta-content h3 {
    font-size: 32px;
  }

  .partner-login {
    bottom: 22px;
    padding: 0.65em 0.95em;
    font-size: 10px;
  }


  .about-hero {
    padding: 8em 2em 3em;
  }



 




 

  .brand-overview {
    padding: 4em 2em;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5em;
  }

  .brand-overview-text,
  .brand-overview-highlights {
    grid-column: span 4;
  }

  .brand-overview-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-highlights {
    padding: 2.5em 2em;
    grid-template-columns: 1fr;
  }

  .brand-gallery {
    padding: 4em 2em;
  }

  .brand-gallery-grid {
    grid-template-columns: 1fr;
  }

  .brand-gallery-grid img {
    height: 260px;
  }

  .brand-cta {
    margin: 0 2em;
  }

  .partners {
    padding: 4em 2em 0;
  }

  .brand-orderchamp-cta {
    width: calc(100% - 3em);
    padding: 3em 1.5em;
    min-height: 300px;
  }

  .services-hero, .brand-hero, .about-hero {
    padding: 5em 2em;
  }



  .services-grid {
    padding: 4em 2em;
  }

  .contact-hero {
    padding: 5em 2em;
  }

  

  .contact-details {
    padding: 3.5em 2em;
  }

  .contact-card {
    padding: 2em;
  }

  .contact-form-area {
    padding: 9em 2em 4em;
  }

  .contact-form-inner h2 {
    font-size: 36px;
  }

  .services-hero, .brand-hero, .about-hero .careers-hero {
    padding: 5.5em 2em;
  }


  .brand-hero-inner {
    margin-top: 4em
  }
  .services-grid {
    padding: 4em 2em;
    gap: 1.5em;
  }

  .service-card {
    padding: 2em;
  }

  .about-story {
    padding: 5em 2em;
    gap: 2.5em;
  }

  .about-story-content h2 {
    font-size: 36px;
  }

  .about-story-highlights {
    grid-template-columns: 1fr;
  }

  .about-story-highlights .stat {
    font-size: 36px;
  }

  .team-header h2 {
    font-size: 36px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-snapshot {
    padding: 4.5em 2em;
  }

  .team-snapshot-text h2 {
    font-size: 34px;
  }

  .team-snapshot-text p {
    font-size: 15px;
  }

  .snapshot-item img {
    min-height: 260px;
  }

  .about-gallery-header h2 {
    font-size: 32px;
  }

  .cta-content h3 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {

  .hero {
    flex-direction: column;
    gap: 3em;
    padding: 8em 1.5em 3em;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    order: 1;
  }




  .hero-description {
    font-size: 11px;
    margin-top: 1.5em;
  }

  .hero-media {
    order: 2;
    width: 100%;
  }

  .model-frame {
    width: 100%;
    max-width: 320px;
    height: 380px;
    margin: 0 auto;
  }

  .hero-controls {
    color: #000000;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8em;
  }

  .hero-controls .outline {
    color: #000000;
    font-size: 10px;
    padding: 0.45em 1.2em;
  }

  .scroll-label {
    display: none;
  }

  .outro {
    padding: 4em 1.5em 2em;
  }

  .outro-copy {
    width: 100%;
  }

  .outro-copy h2 {
    font-size: 32px;
    width: 100%;
    line-height: 1.2;
  }

  .outro-copy p {
    font-size: 14px;
    flex-direction: column;
    gap: 0.5em;
    margin: 1.5em 0;
  }

  .outro-copy p span {
    display: block;
    margin-top: 0.3em;
  }

  .partner-login {
    bottom: 20px;
    right: 0;
    padding: 0.6em 0.9em;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  
  .career-modal-dialog {
    max-width: calc(100% - 1.5em);
    max-height: 95vh;
    padding: 1.5em 1.25em 1.25em;
  }
  
  .career-modal-body {
    max-height: calc(95vh - 200px);
    padding-right: 0.25em;
  }
  
  .career-modal-title {
    font-size: 20px;
  }
  
  .career-modal-close {
    top: 0.75em;
    right: 0.75em;
    font-size: 28px;
  }

  .about-hero {
    padding: 7em 1.5em 3em;
  }



 

  .about-story {
    padding: 4em 1.5em;
    grid-template-columns: 1fr;
    gap: 2em;
  }

 

  .about-story-content h2 {
    font-size: 32px;
  }

  

  .about-story-highlights {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .about-story-highlights article {
    padding: 2em;
  }

  .about-story-highlights .stat {
    font-size: 32px;
  }

  .about-story-highlights .label {
    font-size: 12px;
    letter-spacing: 0.35em;
  }

  .team {
    padding: 4em 1.5em;
  }

  .team-header {
    margin-bottom: 2em;
  }

  .team-header h2 {
    font-size: 32px;
  }

  .team-header p {
    font-size: 15px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1em;
  }

  .team-card img {
    height: 180px;
  }

  .team-card-body {
    padding: 1.2em;
  }

  .team-card h3 {
    font-size: 16px;
  }

  .team-card .role {
    font-size: 10px;
    letter-spacing: 0.3em;
  }

  .team-card p {
    font-size: 14px;
  }

  .about-gallery {
    padding: 4em 1.5em;
  }

  .about-gallery-header {
    margin-bottom: 2em;
  }

  .about-gallery-header h2 {
    font-size: 28px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .gallery-item--vertical,
  .gallery-item--horizontal {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }

  .gallery-item figcaption {
    padding: 1em;
    font-size: 12px;
  }

  .cta-partner {
    flex-direction: column;
    gap: 2em;
  }

  .cta-content h3 {
    font-size: 32px;
  }

  .cta-text {
    font-size: 14px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 1em 2em;
    -webkit-appearance: none; /* helps avoid iOS default button styling */
    appearance: none;
  }

  .gallery {
    padding: 4em 1.5em;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    margin-bottom: 2em;
  }

  .gallery-header h3 {
    font-size: 28px;
  }

  .gallery-scroll-wrapper {
    margin-top: 2em;
  }

  .gallery-scroll {
    gap: 0.8em;
    padding: 0 2.5em 2em 2.5em;
  }

  .gallery-portrait-card {
    width: 280px;
    height: 460px;
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .gallery-nav--prev {
    left: 0.5rem;
  }

  .gallery-nav--next {
    right: 0.5rem;
  }

  .gallery-scroll-progress {
    left: 2.5em;
    right: 2.5em;
  }

  .gallery-label {
    font-size: 14px;
  }

  .gallery-portrait-card figcaption p:last-child {
    font-size: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: span 2;
  }

  .configurator {
    grid-template-columns: 1fr;
    padding: 4em 1.5em;
    gap: 2em;
  }
  
  .configurator-embed-container {
    height: calc(100vh - 70px);
    margin-top: 70px;
  }

  .configurator-copy,
  .configurator-panel {
    grid-column: span 1;
  }

  .configurator-copy h3 {
    font-size: 28px;
  }

  .configurator-description {
    font-size: 14px;
    margin-bottom: 1.5em;
  }

  .configurator-options {
    gap: 1em;
    margin-bottom: 1.5em;
  }



  .option-label {
    font-size: 12px;
    margin-bottom: 0.4em;
  }

  .configurator-options p:last-child {
    font-size: 14px;
  }

  .configurator-cta {
    flex-direction: column;
  }

  .configurator-panel-inner {
    padding: 2em;
    min-height: 240px;
  }
  
  .configurator-embed-container {
    height: calc(100vh - 60px);
    margin-top: 60px;
  }

  .showroom {
    grid-template-columns: 1fr;
    padding: 4em 1.5em;
    gap: 2em;
  }

  .showroom-copy,
  .showroom-panel {
    grid-column: span 1;
  }

  .showroom-copy h3 {
    font-size: 28px;
  }

  .showroom-description {
    font-size: 14px;
    margin-bottom: 1.5em;
  }

  .showroom-panel-inner {
    aspect-ratio: 16 / 9;
  }

  .brochures {
    padding: 4em 1.5em;
  }

  .brochures-header h3 {
    font-size: 28px;
  }

  .brochure-card {
    padding: 2em;
  }

  .brochure-label {
    font-size: 14px;
  }

  .brochure-card p {
    font-size: 14px;
  }

  .cta-partner {
    width: calc(100% - 3em);
    padding: 3em 1.5em;
  }

  
  .archive {
    height: auto;
    padding: 6em 1.5em;
  }

  .archive-info {
    flex-direction: column;
    gap: 0.5em;
  }
  .brand-hero-inner {
    margin-top: 2em
  }
}

@media (max-width: 480px) {




  .about-hero {
    padding: 6em 1.2em 2.5em;
  }

  



  .about-story {
    padding: 3.5em 1.2em;
  }

  .about-story-content h2 {
    font-size: 28px;
  }

  

  .about-story-highlights article {
    padding: 1.5em;
  }

  .about-story-highlights .stat {
    font-size: 28px;
  }

  .team {
    padding: 3.5em 1.2em;
  }

  .team-header h2 {
    font-size: 28px;
  }

  .team-header p {
    font-size: 14px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .team-card img {
    height: 200px;
  }

  .about-gallery {
    padding: 3.5em 1.2em;
  }

  .about-gallery-header h2 {
    font-size: 24px;
  }

  .gallery-item--vertical,
  .gallery-item--horizontal {
    min-height: 200px;
  }

  .cta-partner {
    width: calc(100% - 2.4em);
    padding: 2.5em 1.2em;
  }

  .brochures {
    padding: 3.5em 1.2em;
  }

  .partners {
    padding: 3.5em 1.2em 0;
  }

  .brand-orderchamp-cta {
    width: calc(100% - 2.4em);
    padding: 2.5em 1.2em;
  }

  .cta-content h3 {
    font-size: 28px;
  }

  .cta-text {
    font-size: 14px;
  }




  .model-frame {
    max-width: 280px;
    height: 340px;
  }

  .outro-copy h2 {
    font-size: 28px;
  }

  .gallery-header h3 {
    font-size: 24px;
  }

  .gallery-portrait-card {
    width: 260px;
    height: 420px;
  }

  .configurator-copy h3 {
    font-size: 24px;
  }

  .showroom-copy h3 {
    font-size: 24px;
  }

  .brochures-header h3 {
    font-size: 24px;
  }

  .cta-content h3 {
    font-size: 24px;
  }

  .partner-login {
    font-size: 9px;
    padding: 0.5em 0.8em;
  }
}


.legal-page {
  padding: 6em 6em;
}


/* Disable blue highlight on button click */
button {
  -webkit-appearance: none; /* helps avoid iOS default button styling */
  appearance: none;
  
}

/* You can do the same for links */
a {
  -webkit-appearance: none; /* helps avoid iOS default button styling */
  appearance: none; 

}


@media (max-width: 640px) {
  /* Center hero CONTENT vertically on mobile for all but the main home hero */
  .about-hero,
  .brand-hero,
  .services-hero,
  .contact-hero,
  .careers-hero {
    min-height: 100vh;          /* fill the viewport height */
    display: flex;              /* ensure it's a flex container */
    align-items: center;        /* vertical centering */
    justify-content: center;    /* optional: horizontal centering if single column */
    padding-top: 5em;           /* tweak if nav overlaps */
    padding-bottom: 5em;
  }

  .landing-faq {
    padding: 4em 2em;
  }

  .brand-hero-inner {
    margin-top: 2em
  }
}


.NnBn8c {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 3.5rem;
  right: 3.5rem;
  bottom: 3rem;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}

.cookie-banner__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
}

.cookie-banner__content a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  border: 1px solid #000000;
  background: transparent;
  padding: 0.5rem 1.25rem;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  cursor: pointer;
  color: #000000;
}

.cookie-btn:hover {
  background: #000000;
  color: #ffffff;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}