/* ============================================
   DESKTOP STYLES (Default - 1025px and above)
   ============================================ */

/* Default header styling - change these values to update all section headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 29px;
  font-weight: 500;
}

/* Hero Section desktop */
.hero {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  transform-origin: center top;
  border-radius: 0;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-wrapper {
  position: relative;
  height: 100vh;
  background: var(--color-bg);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.35),
      rgba(0,0,0,.65)
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,.45),
      rgba(0,0,0,.15)
    );
}

.hero .container {
  position: relative;
  height: 100%;
}

.hero-content {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  max-width: 800px;
}

.hero-tag {
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-title {
  font-size: 58px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: none;
  margin-bottom: 20px;
}

.hero-description {
  max-width: 520px;
  font-size: 0.99rem;
  line-height: 1.65;
  margin-bottom: 10px;
}


/* Stats Section desktop */
.stats-section {    
  background-color: var(--color-bg);
  padding: 66px 90px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.stat-card h2 {
  font-size: 3rem;
  color: rgb(121, 116, 73);
  margin-bottom: 16px;
  font-weight: 700;
}

.stat-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--color-text);
  font-weight: 600;
}

.stat-card p {
  color: var(--color-text);
  line-height: 1.7;
}

/* Projects Section desktop */
.projects-section {
  padding: 10px 0;
  background: var(--color-bg);;
}

.projects-header {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
  color: var(--color-text);
}



.section-tag {
  color: var(--color-accent);
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.projects-header h2 {
  font-size: 32px;
  line-height: 1;
  color: var(--color-text);;
  font-weight: 500;
}

.projects-copy {
  max-width: 420px;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.projects-slider {
  overflow-x: auto;
  scrollbar-width: none;
   overflow: hidden;
}

.projects-slider::-webkit-scrollbar {
  display: none;
}

.projects-track {
   display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: max-content;
}

.project-card {
  flex: 0 0 580px;
  height: 520px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 40px;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.65),
    transparent
  );
}


/* Experience Section desktop */

.experiences-section {
  padding: 26px 0;
}

.experiences-header {
  display: flex;
  justify-content: space-between;
  gap: 120px;
  margin-bottom: 80px;
}

.experiences-title {
  flex: 1;
}

.experiences-title h2 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.04em;
  max-width: 700px;
}

.experiences-content {
  width: 420px;
}

.experiences-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* arrow buttons for experience section */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.slider-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-controls button:hover {
  transform: scale(1.06);
}

.slider-controls button svg {
  display: block;
}


/* experience cards  */

.experience-slider {
  overflow: hidden;
  width: 100%;
  padding: 24px 0 48px;
  min-height: clamp(380px, 55vw, 580px);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.experience-slider.is-dragging {
  cursor: grabbing;
}

.experience-track {
  display: flex;
  align-items: center;
  gap: 24px;
  will-change: transform;
}

.experience-card {
  position: relative;
  flex: 0 0 680px;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid #d4d4d4;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0.38;
  transform: scale(0.93);
  transform-origin: center center;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.experience-card.active {
  opacity: 1;
  transform: scale(1);
}

.experience-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.experience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.58);
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.experience-card.active .experience-image::after {
  opacity: 0;
}

.experience-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.experience-info {
  padding: 18px 20px 22px;
  max-width: 100%;
}

.experience-info h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.experience-info p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.9);
  max-width: 100%;
  font-weight: 400;
}
/* ============================================
   TABLET STYLES (769px - 1024px)
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
  /* Hero Section tablet */
  .hero-content {
    left: 30px;
    max-width: 520px;
  }

  .hero-tag {
    font-size: 12px;
    letter-spacing: 2.5px;
  }

  .hero-title {
    font-size: clamp(rem, 7vw, 6rem);
    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 1.25rem;
    max-width: 650px;
  }

  /* Stats Section  tablet*/
  .stats-section {
    padding: 100px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
  }

  .stat-card h2 {
    font-size: 3.5rem;
  }

  .stat-card h3 {
    font-size: 1.15rem;
  }

  /* Projects Section  Tablet*/
  .projects-section {
    padding: 120px 0;
  }

  .projects-header {
    gap: 48px;
    flex-direction: column;
  }

 .projects-header h2 {
    font-size: 14px;
    line-height: 0.95;
    letter-spacing: -0.04em;
}
  .projects-copy {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .projects-track {
    padding: 0 30px;
    gap: 20px;
  }

  .project-card {
    flex: 0 0 340px;
    height: 480px;
  }

  /* Experience Section */
  .experiences-section {
    padding: 120px 0;
  }

  .experiences-header {
    gap: 48px;
    margin-bottom: 48px;
  }

  .experience-card {
    flex: 0 0 580px;
  }

  .experience-card img {
    height: 400px;
  }

  .experience-info h3 {
    font-size: 24px;
  }

  .experience-info p {
    font-size: 13px;
  }
}


/* ============================================
   MOBILE STYLES (768px and below)
   ============================================ */

@media (max-width: 768px) {
  /* Hero Section mobile */
  .hero-wrapper {
    touch-action: pan-y;
  }

  .hero {
    -webkit-backface-visibility: hidden;
  }

  .hero-content {
    bottom: clamp(80px, 12vh, 140px);
    left: 0;
    right: 0;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.75rem);
    letter-spacing: -1.5px;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-content > p:not(.hero-description) {
    font-size: 0.8rem;
    line-height: 1.45;
    opacity: 0.9;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  /* Stats Section mobile */
  .stats-section {
    padding: 5px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stat-card {
    text-align: center;
  }

  .stat-card h2 {
    font-size: 3rem;
  }

  .stat-card h3 {
    font-size: 1.1rem;
  }

  .stat-card p {
    font-size: 0.95rem;
    padding: 0 20px;
  }

  /* Projects Section  mobile*/
  .projects-section {
    padding: 64px 0;
  }

  .projects-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

 

  .section-tag {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .projects-copy {
    font-size: 1rem;
    max-width: 100%;
  }

  .projects-track {
    padding: 0 var(--container-padding);
    gap: 16px;
  }

  .project-card {
    flex: 0 0 280px;
    height: 400px;
    border-radius: 20px;
  }

  /* Experience Section */
  .experiences-section {
    padding: 4px 0;
  }

  .experiences-header {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
  }

  .experiences-title h2 {
    font-size: clamp(1.65rem, 6.5vw, 2rem);
    line-height: 1.25;
    max-width: 100%;
  }

  .experiences-content {
    width: 100%;
  }

  .experiences-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
  }

  .slider-controls {
    display: none;
  }

  .experience-slider {
    padding: 12px 0 32px;
  }

  .experience-card {
    flex: 0 0 min(84vw, 340px);
    transform: scale(0.96);
  }

  .experience-card.active {
    transform: scale(1);
  }

  .experience-card img {
    height: clamp(260px, 52vw, 380px);
  }

  .experience-info {
    padding: 16px 4px 20px;
  }

  .experience-info h3 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    margin-bottom: 8px;
  }

  .experience-info p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}


/* ============================================
   SMALL MOBILE (480px and below)
   ============================================ */

@media (max-width: 480px) {
  /* Hero Section */
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .hero-content > p:not(.hero-description) {
    font-size: 0.75rem;
  }

  /* Stats Section */
  .stat-card h2 {
    font-size: 2.5rem;
  }

  .stat-card h3 {
    font-size: 1rem;
  }

  .stat-card p {
    font-size: 0.9rem;
  }

  /* Projects Section */

  .projects-copy {
    font-size: 0.95rem;
  }

  .project-card {
    flex: 0 0 240px;
    height: 340px;
  }

  /* Experience Section */
  .section-heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}

/* ============================================
   COMPLETED LOWER PAGE STYLES
   ============================================ */

.experiences-section,
.products-section,
.compatibility-section,
.process-section,
.experience-centre-section,
.faq-section,
.site-footer {
  background: var(--color-bg);
  color: var(--color-text);
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 8vw, 120px);
  margin-bottom: clamp(44px, 7vw, 84px);
}

/* Right-hand block in section headers that holds a description + link */
.section-header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 460px;
}

.section-header-cta p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: clamp(16px, 1.4vw, 14px);
  line-height: 1.75;
}

/* Plain text link with slot machine animation — no pill */
.text-slot-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.text-slot-link .slot-text,
.text-slot-link .slot-arrow {
  height: 1.2em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.text-slot-link .slot-text span,
.text-slot-link .slot-arrow span {
  height: 1.2em;
  display: flex;
  align-items: center;
  line-height: 1;
}

.section-heading-row h2,
.compatibility-header h2,
.contact-copy h2,
.faq-layout h2,
.experience-centre-card h2 {
  color: var(--color-text);
  font-size: clamp(32px, 4.8vw, 29px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading-row p,
.compatibility-header p,
.contact-copy p,
.experience-centre-card p {
  max-width: 460px;
  color: rgba(0, 0, 0, 0.68);
  font-size: clamp(16px, 1.4vw, 14px);
  line-height: 1.75;
}

.experiences-title h2,
.experiences-content p {
  color: var(--color-text);
}

.products-section {
  padding: clamp(44px, 10vw, 60px) 0;
}

.products-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.products-header .section-header-cta {
  align-items: flex-end;
  text-align: right;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.product-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: #f4f1ec;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
}

.product-card-label {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}

.product-card-arrow {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--color-text);
  transition: transform 0.25s ease;
}

.product-card:hover .product-card-media img,
.product-card:focus-visible .product-card-media img {
  transform: scale(1.04);
}

.product-card:hover .product-card-arrow,
.product-card:focus-visible .product-card-arrow {
  transform: translate(2px, -2px);
}

@media (min-width: 769px) {
  .products-section > .container {
    max-width: 1320px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 36px;
  }

  .product-card {
    gap: 18px;
  }

  .product-card-media {
    border-radius: 28px;
  }

  .product-card-label {
    font-size: 22px;
  }

  .product-card-arrow {
    font-size: 24px;
  }

  .products-header h2 {
    font-size: 38px;
  }

  .products-header .section-header-cta p {
    font-size: 17px;
  }
}

.compatibility-section {
  padding: 0 0 clamp(4px, 10vw, 50px);
}

.compatibility-card {
  padding: 8px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.compatibility-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.compatibility-header h2 {
  font-size: 29px;
  margin: 0;
  color: var(--color-text);
  font-weight: 500;
}

.compatibility-header p {
  margin: 0;
  color: rgba(0,0,0,0.9);
  font-size: 14px;
  max-width: 360px;
  text-align: right;
  font-weight: 500;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  align-items: stretch;
  padding: 8px 0;
}

.compatibility-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px;
  border: 2px solid rgba(0, 0, 0, 0.9);
  border-radius: 10px;
  background: #fff;
}

.compatibility-badge img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.compatibility-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .compatibility-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .compatibility-header p {
    text-align: left;
    max-width: 100%;
  }

  .compatibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .compatibility-badge {
    min-height: 48px;
    padding: 8px 12px;
  }

  .compatibility-badge img {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .compatibility-badge span {
    font-size: 12px;
  }
}

.process-section {
  padding: clamp(4px, 10vw, 40px) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-white);
}

.process-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18), transparent);
}

.process-card span,
.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.process-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.process-card:hover img {
  transform: scale(1.05);
}

/* testimonials section  */
.testimonials-section {
  overflow: hidden;
  padding: clamp(36px, 12vw, 30px) 0;
  background: var(--color-white);
  color: var(--color-white);
}

.testimonials-header h2 {
  color: var(--color-white);
}

.testimonial-controls {
  display: flex;
  gap: 12px;
}

.testimonial-controls button,
.section-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-text);
  transition: transform var(--transition), background var(--transition);
}

.testimonial-controls button:hover,
.section-button:hover {
  transform: translateY(-2px);
  background: var(--color-accent);
}

.testimonials-slider {
  overflow: hidden;
  width: 100%;
  min-height: clamp(330px, 45vw, 460px);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-left: max(var(--container-padding), calc((100vw - var(--container-width)) / 2 + var(--container-padding)));
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.testimonial-card {
  flex: 0 0 clamp(320px, 30vw, 460px);
  min-height: 460px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  border-radius: 18px;
  background: #0b0b0b; /* deep dark card */
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.testimonial-card > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 18px;
}

.testimonial-author span,
.testimonial-author img {
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: #222;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.testimonial-author h3 {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
}

.testimonial-author p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.experience-centre-section {
  padding: clamp(40px, 10vw, 40px) 0 0;
}

.experience-centre-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.experience-centre-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
  max-width: 420px;
  margin: 0;
  letter-spacing: -0.03em;
}

.experience-centre-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 360px;
}

.experience-centre-cta p {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
}

.experience-centre-card {
  position: relative;
  min-height: clamp(380px, 42vw, 520px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 10vw, 110px) clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: var(--color-white);
}

.experience-centre-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.experience-centre-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.52)
  );
  pointer-events: none;
}

.experience-centre-card > h2,
.experience-centre-card > div > h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(92%, 700px);
  text-align: center;
  color: var(--color-white);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.experience-centre-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.experience-centre-card p {
  display: none;
}

.experience-centre-card .section-button {
  position: absolute;
  left: clamp(24px, 4vw, 40px);
  bottom: clamp(24px, 4vw, 40px);
  z-index: 1;
  display: inline-flex;
  width: auto;
  height: auto;
  margin: 0;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
}

.contact-section {
  padding: clamp(64px, 10vw, 160px) 0;
  background: var(--color-bg);
}

.contact-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.contact-desc {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.contact-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.contact-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.contact-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.contact-feature p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
  line-height: 1.6;
}

.contact-section .contact-action-list {
  display: grid;
  gap: 26px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 30px;
}

.contact-section .contact-action-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--color-text);
}

.contact-section .contact-action-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}

.contact-section .contact-action-list a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.contact-section .contact-action-list a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-section .contact-action-list li > div {
  display: grid;
  gap: 6px;
}

.contact-section .contact-action-list li > div p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}

.contact-section .contact-action-list li > div strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.contact-directions-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.contact-copy {
  position: static;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.contact-details p {
  display: flex;
  gap: 18px;
  color: rgba(0, 0, 0, 0.72);
}

.contact-details strong {
  min-width: 78px;
  color: var(--color-text);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font: inherit;
  padding: 12px 14px;
  transition: border-color var(--transition), background var(--transition);
}

.contact-form select option {
  color: var(--color-text);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 168, 106, 0.7);
  background: rgba(255, 255, 255, 0.09);
}

.contact-form button {
  margin-top: 4px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-text);
  font-weight: 800;
  transition: transform var(--transition), filter var(--transition);
}

.contact-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.contact-form-error {
  margin: 0;
  color: #ff5a5a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form-toggle-group {
  display: grid;
  gap: 10px;
}

.form-toggle-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.form-toggle-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.form-toggle-btn input {
  display: none;
}

.form-toggle-btn:has(input:checked) {
  background: rgba(201, 168, 106, 0.2);
  border-color: rgba(201, 168, 106, 0.7);
}

.contact-form input.contact-form-field-error,
.contact-form select.contact-form-field-error,
.contact-form textarea.contact-form-field-error {
  border-color: #ff5a5a;
  box-shadow: 0 0 0 1px rgba(255, 90, 90, 0.35);
}

.faq-section {
  padding: 0 0 clamp(96px, 12vw, 150px);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: #f7f5f0;
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
}

.faq-list p {
  max-width: 680px;
  padding-top: 14px;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.75;
}

.site-footer {
  padding: 48px 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--color-bg);
  color: var(--color-text);
}

.footer-bottom {
  margin-top: 100px; /* creates the large empty space */
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,.75);
  justify-content: center;
}

.site-footer > .container {
  max-width: 100%;
  padding-left: 36px;
  padding-right: 16px;
}

.footer-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 55%;
  max-width: 580px;
}

.footer-heading {
  font-size: 35px;
  line-height: 1.05;
  margin: 0 0 18px 0;
  color: var(--color-text);
  font-weight: 450;
}

/* footer description */
.footer-copy {
  color: rgba(0,0,0,0.7);
  max-width: 320px;
  line-height: 1.7;
  margin: 0 0 18px 0;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo {
  width: 180px;
  margin-top: 8px;
  display: block;
}

.footer-right {
  display: flex;
  gap: 40px;
  flex: 0 0 420px;
}

.footer-col h4 {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-col a {
  color: rgba(0,0,0,0.72);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
  .footer-right {
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-left {
    max-width: 100%;
  }

  .experience-centre-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .section-heading-row,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    flex-direction: column;
  }

  .products-header .section-header-cta {
    align-items: flex-start;
    text-align: left;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .experience-card {
    flex: 0 0 min(84vw, 340px);
  }

  .experience-card img {
    height: clamp(260px, 52vw, 380px);
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 430px;
  }

  /* testimonials section */

  .testimonials-header {
    gap: 24px;
  }

  .testimonials-track {
    gap: 16px;
    padding-left: var(--container-padding);
  }

  .testimonial-card {
    flex-basis: min(82vw, 360px);
    min-height: 330px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    flex-direction: column;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 12px;
  }
}

@media (max-width: 480px) {
  .experience-card img {
    height: clamp(220px, 56vw, 300px);
  }

  .experience-info h3 {
    font-size: 1.25rem;
  }

  .experience-info p {
    font-size: 0.85rem;
  }

  .section-heading-row h2,
  .compatibility-header h2,
  .contact-copy h2,
  .faq-layout h2,
  .experience-centre-card h2 {
    font-size: 30px;
  }

  .contact-details p {
    flex-direction: column;
    gap: 4px;
  }

  .testimonial-controls button {
    width: 48px;
    height: 48px;
  }
}
