/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #121212;
  background-color: #f8f8f6;
  box-sizing: border-box;
}

/* Başlık stilleri - Inter 700 */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */
main {
  flex: 1;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100vw;
  padding: 3px 48px;
  background-color: #0f2f24;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5f5f1;
  transform: translateY(-120%);
  transition: transform 0.45s ease;
  box-sizing: border-box;
}

.site-header.is-visible {
  transform: translateY(0);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.logo img {
  display: block;
  width: 130px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0.08em;
  color: #f5f5f1;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background-color: rgba(245, 245, 241, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  border: 1px solid #f5f5f1;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  color: #f5f5f1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background-color: #f5f5f1;
  color: #0f2f24;
}

.navbar-error {
  width: 100%;
  max-width: 100vw;
  padding: 16px 24px;
  background-color: #4b1f1f;
  color: #f5f5f1;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section {
  width: 100%;
  max-width: 100vw;
  padding: 120px 80px;
  box-sizing: border-box;
}

.section-light {
  background-color: #f8f8f6;
  color: #121212;
}

.section-dark {
  background-color: #121212;
  color: #f5f5f1;
}

.section-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section h2 {
  font-size: 48px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.section-intro {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  color: #f5f5f1;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding-bottom: 30vh;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 5;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 40%);
}

.hero-overlay .eyebrow {
  color: rgba(245, 245, 241, 0.7);
}

.hero-heading {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 86px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  z-index: 10;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-line {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  transform-origin: center;
}

/* Desktop version - show by default */
.hero-line--desktop {
  display: inline-flex;
}

/* Mobile version - hide by default */
.hero-line--mobile {
  display: none;
}

.hero-text {
  display: block;
  padding: 0 8px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3em;
  width: 100%;
  height: 0.55em;
  pointer-events: none;
  overflow: visible;
  transform-origin: center;
  transform: scale(calc(var(--hero-scale, 1)));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-curve {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.11em;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hero-tail {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.22em;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hero-line--secondary .hero-underline {
  bottom: -0.24em;
  height: 0.5em;
}

.hero-cta-wrap {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  padding: 48px 0 54px;
  background-color: #0f3a2e;
  box-sizing: border-box;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 36px 80px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 241, 0.8);
  font-size: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: none;
  color: #f5f5f1;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  background-color: #f5f5f1;
  color: #0f2f24;
  transform: translateY(-2px);
}

.story-section {
  width: 100%;
  max-width: 100vw;
  padding: 20px 40px;
  background-color: #0f2f24;
  color: #f5f5f1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  box-sizing: border-box;
}

.story-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: stretch;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 48px;
}

.story-content p {
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 245, 241, 0.86);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-align: center;
}

.story-media img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  object-fit: cover;
}

.story-cta {
  display: flex;
  justify-content: center;
  margin-top: -40px;
}

.amazon-collection-section {
  width: 100%;
  max-width: 100vw;
  padding: 60px 80px 60px;
  background-color: #0f2f24;
  color: #f5f5f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.amazon-collection-inner {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

.amazon-collection-heading {
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  padding: 0 40px;
}


.amazon-collection-heading .swoosh-line {
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  padding-right: 0;
  padding-left: 0;
  font-family: 'Inter', sans-serif;
}

.amazon-collection-heading .swoosh-line svg {
  width: 100%;
  height: 0.6em;
  position: absolute;
  left: 0;
  bottom: -0.26em;
  pointer-events: none;
  overflow: visible;
  max-width: 100%;
}

.amazon-collection-heading .swoosh-curve,
.amazon-collection-heading .swoosh-tail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amazon-collection-heading .swoosh-curve {
  stroke-width: 0.3em;
}

.amazon-collection-heading .swoosh-tail {
  stroke-width: 0.34em;
}

.amazon-collection-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 245, 241, 0.86);
  max-width: 1000px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.amazon-collection-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.amazon-collection-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 35px 40px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 241, 0.8);
  font-size: 16px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: none;
  color: #f5f5f1;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.amazon-collection-button:hover,
.amazon-collection-button:focus-visible {
  background-color: #f5f5f1;
  color: #0f3a2e;
  transform: translateY(-2px);
}

.amazon-products-wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 80px auto 0;
}

.amazon-products-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1.4fr 1.15fr 0.9fr;
  gap: 20px;
  width: 100%;
  padding: 0;
  align-items: center;
  overflow: hidden;
}

/* When there are exactly 5 products, use the specific grid layout */
.amazon-products-grid--fixed {
  grid-template-columns: 0.9fr 1.15fr 1.4fr 1.15fr 0.9fr !important;
  overflow: hidden !important;
}

.amazon-products-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 241, 0.8);
  background-color: rgba(15, 58, 46, 0.8);
  color: #f5f5f1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.amazon-products-nav:hover,
.amazon-products-nav:focus-visible {
  background-color: rgba(245, 245, 241, 0.9);
  color: #0f3a2e;
  transform: translateY(-50%) scale(1.1);
}

.amazon-products-nav--prev {
  left: -60px;
}

.amazon-products-nav--next {
  right: -60px;
}

@media (max-width: 1279px) {
  .amazon-products-nav--prev {
    left: -40px;
  }

  .amazon-products-nav--next {
    right: -40px;
  }
}

.amazon-products-nav svg {
  width: 20px;
  height: 20px;
}

.amazon-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.amazon-product-arch {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px 200px 0 0;
}

.amazon-product-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px 200px 0 0;
}

.amazon-product-title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #f5f5f1;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.amazon-product-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: auto;
}

.amazon-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 241, 0.8);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #f5f5f1;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.amazon-product-button:hover,
.amazon-product-button:focus-visible {
  background-color: #f5f5f1;
  color: #0f3a2e;
  transform: translateY(-2px);
}

.amazon-product-price {
  font-size: 18px;
  font-weight: 400;
  color: #f5f5f1;
  letter-spacing: 0.05em;
}

.works-section {
  width: 100%;
  max-width: 100vw;
  padding: 60px 52px;
  background-color: #0f2f24;
  color: #f5f5f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}

.works-heading {
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
}

.works-heading-line {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

.works-heading-line svg {
  width: 100%;
  height: 0.6em;
  position: absolute;
  left: 0;
  bottom: -0.26em;
  pointer-events: none;
}

.works-heading-curve,
.works-heading-tail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.works-heading-curve {
  stroke-width: 0.3em;
}

.works-heading-tail {
  stroke-width: 0.34em;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1960px;
  margin: 0 auto;
}

.works-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.works-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.works-image:hover {
  transform: scale(1.02);
}

.works-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-title {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #f5f5f1;
  text-align: left;
  line-height: 1.4;
  padding-left: 8px;
}

.works-description {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(245, 245, 241, 0.75);
  text-align: center;
  line-height: 1.5;
}

.works-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 47, 36, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.works-modal.active {
  display: flex;
  opacity: 1;
}

.works-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.works-modal.active .works-modal-content {
  transform: scale(1);
}

.works-modal-content img {
  width: 100%;
  max-height: calc(90vh - 80px);
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0;
}

.works-modal-title {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #f5f5f1;
  text-align: center;
  padding: 0 20px;
}

.works-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(245, 245, 241, 0.1);
  border: 2px solid rgba(245, 245, 241, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #f5f5f1;
  transition: all 0.3s ease;
  z-index: 10001;
  padding: 0;
}

.works-modal-nav:hover {
  background-color: rgba(245, 245, 241, 0.2);
  border-color: rgba(245, 245, 241, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.works-modal-nav--prev {
  left: 120px;
}

.works-modal-nav--next {
  right: 120px;
}

  @media (max-width: 920px) {
    .works-modal-nav--prev {
      left: 10px;
    }

    .works-modal-nav--next {
      right: 10px;
    }

    .works-modal-nav {
      width: 40px;
      height: 40px;
      background-color: rgba(245, 245, 241, 0.2);
    }

    .works-modal-nav svg {
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 560px) {
    .works-modal-nav--prev {
      left: 5px;
    }

    .works-modal-nav--next {
      right: 5px;
    }

    .works-modal-nav {
      width: 36px;
      height: 36px;
    }

    .works-modal-nav svg {
      width: 18px;
      height: 18px;
    }
  }

.works-modal-nav svg {
  width: 24px;
  height: 24px;
}

.works-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #f5f5f1;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 10001;
}

.works-modal-close:hover {
  transform: scale(1.2);
}

.catalogs-section {
  width: 100%;
  max-width: 100vw;
  padding: 80px 80px;
  background-color: #0f3a2e;
  color: #f5f5f1;
  box-sizing: border-box;
}

.catalogs-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 64px;
  width: 100%;
}

.catalogs-heading {
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
}

.catalogs-heading-line {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
  color: #f5f5f1;
}

.catalogs-heading-line svg {
  width: 100%;
  height: 0.6em;
  position: absolute;
  left: 0;
  bottom: -0.26em;
  pointer-events: none;
}

.catalogs-heading-curve,
.catalogs-heading-tail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalogs-heading-curve {
  stroke-width: 0.3em;
}

.catalogs-heading-tail {
  stroke-width: 0.34em;
}

.catalogs-intro {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: rgba(245, 245, 241, 0.86);
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
}

.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
}

.catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: fit-content;
}

.catalog-image-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 200px;
}

.catalog-image-link:hover {
  transform: scale(1.05);
}

.catalog-image-wrapper {
  width: 200px;
  height: 285px;
  display: block;
}

.catalog-image {
  width: 200px;
  height: 285px;
  object-fit: contain;
  display: block;
}

.catalog-description {
  margin: 0;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #f5f5f1;
  text-align: center;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  border: 1px solid #121212;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #f5f5f1;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.catalog-button:hover,
.catalog-button:focus-visible {
  background-color: #f5f5f1;
  color: #0f3a2e;
  transform: translateY(-2px);
}

.catalogs-empty-state {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #f5f5f1;
  margin: 12px 0 4px;
}

.contact-section {
  width: 100%;
  max-width: 100vw;
  padding: 60px 80px;
  background-color: #0f3a2e;
  color: #f5f5f1;
  box-sizing: border-box;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  align-items: center;
}

.contact-heading {
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
}

.contact-heading-line {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

.contact-heading-line svg {
  width: 100%;
  height: 0.6em;
  position: absolute;
  left: 0;
  bottom: -0.26em;
  pointer-events: none;
}

.contact-heading-curve,
.contact-heading-tail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-heading-curve {
  stroke-width: 0.3em;
}

.contact-heading-tail {
  stroke-width: 0.34em;
}

.contact-intro {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #f5f5f1;
  line-height: 1.6;
  text-align: center;
}

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

.contact-detail {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #f5f5f1;
  line-height: 1.6;
  text-align: center;
}

.contact-label {
  font-weight: 400;
}

.contact-link {
  color: #f5f5f1;
  text-decoration: underline;
  transition: opacity 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.contact-link:hover {
  opacity: 0.7;
}

.contact-value {
  color: #f5f5f1;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #f5f5f1;
  margin: 0;
}

.form-label .required-note {
  font-size: 14px;
  color: rgba(245, 245, 241, 0.7);
  font-weight: 300;
}

.form-input,
.form-textarea {
  background: transparent !important;
  border: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #f5f5f1 !important;
  border-bottom-width: 1px !important;
  border-bottom-style: solid !important;
  border-bottom-color: #f5f5f1 !important;
  color: #f5f5f1 !important;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif !important;
  padding: 0 0 4px 0 !important;
  margin: 0;
  outline: none !important;
  text-decoration: none !important;
  transition: border-bottom-color 0.2s ease;
  width: 100%;
  box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0 !important;
  line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 245, 241, 0.5) !important;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom: 1px solid rgba(245, 245, 241, 0.7) !important;
  border-bottom-width: 1px !important;
  border-bottom-style: solid !important;
  border-bottom-color: rgba(245, 245, 241, 0.7) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  outline: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  color: #f5f5f1 !important;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  overflow: auto;
  padding: 0 0 4px 0 !important;
}

.contact-submit-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  padding: 20px 15px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(245, 245, 241, 0.8) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.1em !important;
  text-transform: none !important;
  color: #f5f5f1 !important;
  background-color: transparent !important;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
  cursor: pointer !important;
  margin-top: 8px !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: auto !important;
  max-width: fit-content !important;
  min-width: auto !important;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
  background-color: #f5f5f1 !important;
  color: #0f3a2e !important;
  transform: translateY(-2px) !important;
  border-color: rgba(245, 245, 241, 0.8) !important;
}

.contact-map-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.contact-map {
  width: 100%;
  height: 495px;
  border: none;
  border-radius: 12px;
  display: block;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  box-sizing: border-box;
}

@media (max-width: 920px) {
  .contact-map {
    height: 400px;
  }
}

@media (max-width: 560px) {
  .contact-map {
    height: 300px;
  }
}

.services-feature {
  width: 100%;
  max-width: 100vw;
  padding: 50px 0;
  background-color: #0f3a2e;
  color: #f5f5f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}

.services-heading {
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
}

.services-heading-line {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

.services-heading-line svg {
  width: 100%;
  height: 0.6em;
  position: absolute;
  left: 0;
  bottom: -0.26em;
  pointer-events: none;
}

.services-heading-curve,
.services-heading-tail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-heading-curve {
  stroke-width: 0.3em;
}

.services-heading-tail {
  stroke-width: 0.34em;
}

.services-feature-inner {
  width: 90%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
  margin-bottom: 75px;
  box-sizing: border-box;
  padding: 0 20px;
}

.services-feature-inner:last-child {
  margin-bottom: 0;
}

.services-feature-inner--reversed {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
}

.services-feature-images {
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  width: 80%;
  max-width: 2500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  box-sizing: border-box;
}

@media (max-width: 1279px) {
  .services-feature-images {
    gap: 80px;
    width: 85%;
  }
}

@media (max-width: 920px) {
  .services-feature-images {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 90%;
  }
}

.services-feature-images .services-feature-media {
  aspect-ratio: auto;
  height: auto;
}

.services-feature-images .services-feature-media img {
  height: auto;
  object-fit: contain;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: -20px;
}

.services-feature-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
  align-items: center;
  text-align: center;
}

.services-feature-copy h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
}

.services-subheading .swoosh-line {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: 'Inter', sans-serif;
}

.services-subheading .swoosh-curve {
  stroke-width: 0.76em;
}

.services-subheading .swoosh-tail {
  stroke-width: 0.76em;
}

.services-feature-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 245, 241, 0.84);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  max-width: 600px;
}

.services-feature-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  aspect-ratio: 19 / 10;
}

.services-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.team-page {
  background-color: #0f3a2e;
  color: #f5f5f1;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.team-page main {
  padding: 140px 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.team-hero {
  text-align: center;
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.team-swoosh-heading {
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.team-swoosh-line {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #f5f5f1;
  font-family: 'Inter', sans-serif;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.team-swoosh-line svg {
  width: 100%;
  max-width: 100%;
  height: 0.55em;
  position: absolute;
  left: 0;
  bottom: -0.24em;
  pointer-events: none;
  overflow: visible;
}

.team-swoosh-curve,
.team-swoosh-tail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-swoosh-curve {
  stroke-width: 0.32em;
}

.team-swoosh-tail {
  stroke-width: 0.32em;
}

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

.team-grid--single {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}

.team-card--single {
  max-width: 450px;
  margin: 0 auto;
  grid-column: 1;
}

.team-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.team-card-body h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.team-role {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 241, 0.7);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.team-card-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 245, 241, 0.82);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.team-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.team-cta .pill-button {
  border-color: rgba(245, 245, 241, 0.8);
}

.swoosh-heading {
  margin: 48px 0 80px;
  font-size: 0;
  display: flex;
  justify-content: center;
}

.swoosh-line {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

.swoosh-line svg {
  width: 100%;
  height: 0.55em;
  position: absolute;
  left: 0%;
  bottom: -0.22em;
  pointer-events: none;
}

.swoosh-curve,
.swoosh-tail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swoosh-curve {
  stroke-width: 0.24em;
}

.swoosh-tail {
  stroke-width: 0.28em;
}
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-media picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.split-content p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.link-inline {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.testimonial blockquote {
  margin: 0;
  max-width: 720px;
  font-size: 28px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial .attribution {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 241, 0.7);
}

.contact-panel {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.contact-details p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: 12px;
  font-size: 16px;
  background-color: #fff;
  color: #121212;
}

/* Removed .contact-form button styles - using .contact-submit-button instead */

.footer-error {
  width: 100%;
  max-width: 100vw;
  padding: 32px 24px;
  background-color: #4b1f1f;
  color: #f5f5f1;
  text-align: center;
  box-sizing: border-box;
}

.footer-shell {
  width: 100%;
  max-width: 100vw;
  padding: 120px 80px 60px;
  background-color: #0f2f24;
  color: #f5f5f1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  box-sizing: border-box;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.2fr);
  gap: 120px;
  align-items: start;
}

.footer-left h2 {
  margin: 0 0 20px;
  font-size: 48px;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.footer-left p {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-form {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-form input {
  flex: 0 0 62.5%;
  max-width: 450px;
  padding: 18px 26px;
  border-radius: 12px;
  border: 1px solid rgba(245, 245, 241, 0.4);
  background-color: #ffffff;
  color: #121212;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.footer-form input::placeholder {
  color: rgba(18, 18, 18, 0.45);
}

.footer-form input:focus {
  outline: none;
  border-color: rgba(18, 18, 18, 0.5);
  background-color: #ffffff;
}

.footer-form button {
  padding: 18px 34px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 241, 0.8);
  background-color: transparent;
  color: #f5f5f1;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-form button:hover,
.footer-form button:focus-visible {
  background-color: #f5f5f1;
  color: #0f2f24;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-hours h3 {
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.footer-hours dl {
  margin: 0;
  display: grid;
  gap: 20px;
}

.hours-row {
  display: grid;
  gap: 6px;
}

.hours-row dt {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.hours-row dd {
  margin: 0;
  font-size: 16px;
  color: rgba(245, 245, 241, 0.75);
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #f5f5f1;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover svg,
.footer-social a:focus-visible svg {
  fill: rgba(245, 245, 241, 0.6);
  transform: translateY(-2px);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-meta a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Reveal Animation */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1279px) {
  .section {
    padding: 100px 60px;
  }

  .hero-overlay {
    padding: 140px 60px;
    padding-bottom: 30vh;
  }

  .section-split {
    gap: 60px;
  }

  .story-section {
    padding: 50px 60px;
  }

  .story-inner {
    gap: 48px;
  }

  .amazon-collection-section {
    padding: 50px 60px 50px;
  }

  .amazon-collection-heading .swoosh-line {
    font-size: 48px;
    white-space: nowrap;
    padding-right: 0;
    padding-left: 0;
    display: inline-block;
  }

  .amazon-collection-heading .swoosh-line svg {
    width: 100%;
    overflow: visible;
    max-width: 100%;
  }

  .amazon-collection-heading {
    padding: 0 30px;
    overflow-x: visible;
  }

  .works-section {
    padding: 50px 39px;
  }

  .works-heading-line {
    font-size: 54px;
  }

  .works-grid {
    gap: 16px;
  }

  .catalogs-section {
    padding: 70px 60px;
  }

  .catalogs-heading-line {
    font-size: 54px;
  }

  .catalogs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .catalog-image-link {
    width: 180px;
  }

  .catalog-image-wrapper {
    width: 180px;
    height: 256px;
  }

  .catalog-image {
    width: 180px;
    height: 256px;
  }

  .contact-section {
    padding: 100px 60px;
  }

  .contact-inner {
    gap: 60px;
  }

  .contact-heading-line {
    font-size: 54px;
  }

  .hero-heading {
    font-size: 68px;
  }

  .story-content p {
    font-size: 16px;
  }

  .amazon-products-wrapper {
    padding: 0 80px;
  }

  .amazon-products-grid {
    gap: 32px;
    padding: 0 20px;
    margin-top: 60px;
  }

  .swoosh-line {
    font-size: 58px;
  }

  .footer-shell {
    padding: 100px 60px 48px;
    gap: 60px;
  }

  .footer-inner {
    gap: 80px;
  }

  .team-page main {
    padding: 160px 60px 80px;
    overflow-x: hidden;
  }

  .services-feature {
    padding: 80px 0;
    gap: 48px;
  }

  .services-heading-line {
    font-size: 54px;
  }

  .services-feature-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 60px;
  }

  .team-grid {
    gap: 40px;
  }
}

@media (max-width: 920px) {
  /* Hero heading mobile/desktop toggle */
  .hero-line--desktop {
    display: none !important;
  }
  
  .hero-line--mobile {
    display: inline-flex !important;
  }

  .site-header {
    padding: 36px 36px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 140px;
    background-color: #0f2f24;
    padding: 120px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .site-nav .nav-cta {
    align-self: stretch;
    justify-content: center;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 80px 32px;
  }

  .hero-overlay {
    padding-bottom: 24vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-heading {
    font-size: 52px;
    gap: 24px;
  }

  .pill-button {
    padding: 20px 60px;
    font-size: 16px;
  }

  .services-cta .pill-button {
    padding: 19.6px 39.2px;
    font-size: 19.6px;
    white-space: nowrap;
    max-width: 392px;
    width: auto;
  }

  .amazon-collection-button {
    padding: 19.6px 39.2px;
    font-size: 19.6px;
    white-space: nowrap;
    max-width: 392px;
  }

  .story-section {
    padding: 40px 32px;
    gap: 48px;
    overflow-x: hidden;
  }

  .story-inner {
    width: 100%;
    padding: 0;
  }

  .amazon-collection-section {
    padding: 40px 24px 40px;
    overflow-x: hidden;
  }

  .amazon-collection-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
  }

  .amazon-collection-heading {
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
  }

  .amazon-collection-heading .swoosh-line {
    font-size: 36px;
    white-space: nowrap;
    padding-right: 0;
    padding-left: 0;
    display: inline-block;
  }

  .amazon-collection-heading .swoosh-line svg {
    width: 100%;
    overflow: visible;
    max-width: 100%;
  }

  .amazon-collection-heading {
    padding: 0 20px;
    overflow-x: visible;
  }

  .amazon-collection-text {
    padding: 0 4px;
  }

  .amazon-collection-text {
    font-size: 16px;
  }

  .works-section {
    padding: 40px 21px;
  }

  .works-heading-line {
    font-size: 46px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .catalogs-section {
    padding: 60px 32px;
    overflow-x: hidden;
  }

  .catalogs-heading-line {
    font-size: 46px;
  }

  .catalogs-intro {
    font-size: 16px;
  }

  .catalogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
  }

  .catalog-image-link {
    width: 160px;
  }

  .catalog-image-wrapper {
    width: 160px;
    height: 228px;
  }

  .catalog-image {
    width: 160px;
    height: 228px;
  }

  .catalog-description {
    font-size: 15px;
  }

  .works-title {
    font-size: 11px;
  }

  .works-description {
    font-size: 13px;
  }

  .contact-section {
    padding: 80px 32px;
    overflow-x: hidden;
  }
  
  .contact-map-wrapper {
    padding: 0 12px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-heading-line {
    font-size: 46px;
  }

  .contact-intro {
    font-size: 16px;
  }

  .contact-detail {
    font-size: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-label {
    font-size: 16px;
  }

  .form-input,
  .form-textarea {
    font-size: 16px;
  }

  .contact-submit-button {
    font-size: 16px;
    padding: 18px 14px;
    letter-spacing: 0.1em;
    font-weight: 400;
  }

  .amazon-products-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    justify-content: center;
    align-items: center;
  }

  .amazon-products-grid .amazon-product-card {
    min-width: 100%;
    max-width: 300px;
    width: 100%;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .amazon-products-grid .amazon-product-arch {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .amazon-products-grid .amazon-product-title {
    font-size: 17px;
    min-height: auto;
    margin-top: 8px;
  }

  .amazon-products-grid .amazon-product-price {
    font-size: 16px;
  }

  .amazon-products-grid .amazon-product-button {
    max-width: 260px;
  }

  .amazon-products-wrapper {
    position: relative;
    padding: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .amazon-products-nav--prev {
    left: 10px;
    z-index: 20;
  }

  .amazon-products-nav--next {
    right: 10px;
    z-index: 20;
  }

  .amazon-products-nav {
    width: 44px;
    height: 44px;
    background-color: rgba(15, 58, 46, 0.95);
    border: 1px solid rgba(245, 245, 241, 0.8);
  }

  .amazon-products-nav svg {
    width: 20px;
    height: 20px;
  }

  .amazon-products-nav:hover {
    background-color: rgba(245, 245, 241, 0.9);
    color: #0f3a2e;
  }


  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 16px;
  }

  .story-media img {
    border-radius: 24px;
  }

  .swoosh-line {
    font-size: 48px;
  }

  .hero-underline {
    bottom: -0.26em;
    height: 0.48em;
  }

  .hero-line--secondary .hero-underline {
    bottom: -0.2em;
    height: 0.44em;
  }

  .hero-curve {
    stroke-width: 0.09em;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    padding: 80px 32px 40px;
    gap: 48px;
    overflow-x: hidden;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
    max-width: 100%;
  }

  .footer-left {
    width: 100%;
  }

  .footer-right {
    width: 100%;
  }

  .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-form input {
    flex-basis: 100%;
    max-width: none;
  }

  .footer-form button {
    width: 100%;
    text-align: center;
  }

  .team-page main {
    padding: 150px 32px 64px;
    overflow-x: hidden;
  }

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

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

  .team-card {
    max-width: none;
  }

  .team-card--single {
    grid-column: 1;
    margin: 0 auto;
  }

  .team-swoosh-line {
    font-size: 48px;
  }

  .services-feature {
    padding: 70px 0;
  }

  .services-feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 95%;
    padding: 0 10px;
  }

  .services-heading-line {
    font-size: 46px;
  }

  .services-feature-copy {
    max-width: none;
  }

  .services-feature-media {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

  .services-feature-images {
    width: 95%;
    padding: 0 10px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 30px 24px;
  }

  .logo span {
    font-size: 14px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-overlay {
    padding-bottom: 28vh;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-heading {
    font-size: 38px;
    gap: 20px;
  }

  .hero-cta-wrap {
    padding: 32px 0 64px;
  }

  .pill-button {
    width: calc(100% - 48px);
    max-width: 320px;
    padding: 18px 0;
    font-size: 16px;
  }

  .services-cta .pill-button {
    width: auto;
    max-width: 336px;
    padding: 16.8px 28px;
    font-size: 16.8px;
    white-space: nowrap;
  }

  .amazon-collection-button {
    padding: 16.8px 28px;
    font-size: 16.8px;
    white-space: nowrap;
    max-width: 336px;
  }

  .story-section {
    padding: 32px 20px;
    gap: 40px;
    overflow-x: hidden;
  }

  .story-inner {
    width: 100%;
    padding: 0;
    gap: 32px;
  }

  .story-content {
    margin-top: 0;
  }

  .story-content p {
    font-size: 15px;
    text-align: left;
  }

  .story-cta {
    padding-bottom: 8px;
  }

  .amazon-collection-section {
    padding: 32px 16px 32px;
    overflow-x: hidden;
  }

  .amazon-collection-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
  }

  .amazon-collection-heading {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .amazon-collection-heading .swoosh-line {
    font-size: 24px;
    white-space: nowrap;
    letter-spacing: -0.03em;
    padding-right: 0;
    padding-left: 0;
    display: inline-block;
  }

  .amazon-collection-heading .swoosh-line svg {
    width: 100%;
    overflow: visible;
    max-width: 100%;
  }

  .amazon-collection-text {
    padding: 0 4px;
    font-size: 14px;
  }

  .amazon-collection-cta {
    padding: 0 4px;
  }

  .amazon-products-grid {
    gap: 40px;
    padding: 0 15px;
    margin-top: 50px;
  }

  .amazon-products-grid .amazon-product-card {
    max-width: 280px;
    padding: 0 5px;
  }

  .amazon-products-grid .amazon-product-arch {
    max-width: 100%;
    width: 100%;
  }

  .amazon-products-grid .amazon-product-title {
    font-size: 16px;
    min-height: auto;
    padding: 0 5px;
  }

  .amazon-products-grid .amazon-product-price {
    font-size: 15px;
  }

  .amazon-products-grid .amazon-product-button {
    padding: 12px 20px;
    font-size: 12px;
    max-width: 240px;
  }

  .amazon-products-wrapper {
    padding: 0;
  }

  .amazon-products-nav--prev {
    left: 5px;
  }

  .amazon-products-nav--next {
    right: 5px;
  }

  .amazon-products-nav {
    width: 40px;
    height: 40px;
    background-color: rgba(15, 58, 46, 0.95);
  }

  .amazon-products-nav svg {
    width: 18px;
    height: 18px;
  }

  .amazon-product-title {
    font-size: 18px;
  }

  .amazon-product-button {
    padding: 12px 24px;
    font-size: 13px;
  }

  .amazon-product-price {
    font-size: 16px;
  }

  .works-section {
    padding: 32px 13px;
  }

  .works-heading-line {
    font-size: 36px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalogs-section {
    padding: 50px 20px;
    overflow-x: hidden;
  }

  .catalogs-inner {
    gap: 48px;
  }

  .catalogs-heading-line {
    font-size: 36px;
  }

  .catalogs-intro {
    font-size: 14px;
  }

  .catalogs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 400px;
  }

  .catalog-item {
    gap: 20px;
  }

  .catalog-image-link {
    width: 140px;
  }

  .catalog-image-wrapper {
    width: 140px;
    height: 199px;
  }

  .catalog-image {
    width: 140px;
    height: 199px;
  }

  .catalog-description {
    font-size: 14px;
  }

  .catalog-button {
    padding: 14px 32px;
    font-size: 14px;
  }

  .works-title {
    font-size: 10px;
  }

  .works-description {
    font-size: 12px;
  }

  .contact-section {
    padding: 32px 20px;
    overflow-x: hidden;
  }
  
  .contact-map-wrapper {
    padding: 0 0;
  }

  .contact-inner {
    gap: 40px;
  }

  .contact-heading-line {
    font-size: 36px;
  }

  .contact-intro {
    font-size: 14px;
  }

  .contact-detail {
    font-size: 14px;
  }

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

  .form-input,
  .form-textarea {
    font-size: 14px;
  }

  .contact-submit-button {
    font-size: 14px;
    padding: 16px 12px;
    letter-spacing: 0.1em;
    font-weight: 400;
    width: auto;
  }

  .swoosh-line {
    font-size: 38px;
  }

  .hero-underline {
    bottom: -0.24em;
    height: 0.5em;
  }

  .hero-line--secondary .hero-underline {
    bottom: -0.18em;
    height: 0.46em;
  }

  .hero-curve {
    stroke-width: 0.085em;
  }

  .section {
    padding: 64px 20px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section h2,
  .split-content h2 {
    font-size: 36px;
  }

  .section-intro,
  .split-content p,
  .contact-details p {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }

  .testimonial blockquote {
    font-size: 22px;
  }

  .footer-shell {
    padding: 64px 24px 32px;
    overflow-x: hidden;
  }

  .footer-inner {
    gap: 40px;
  }

  .footer-left h2 {
    font-size: 32px;
  }

  .footer-left p {
    font-size: 16px;
  }

  .footer-left h2 {
    font-size: 36px;
  }

  .team-page main {
    padding: 180px 20px 56px;
    gap: 40px;
    overflow-x: hidden;
  }

  .team-swoosh-line {
    font-size: 38px;
    overflow: visible;
    max-width: 100%;
  }
  
  .team-hero {
    margin-top: 20px;
  }

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

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

  .team-card {
    gap: 20px;
  }

  .team-card--single {
    margin: 0 auto;
    grid-column: 1;
  }

  .services-feature {
    padding: 60px 0;
  }

  .services-heading-line {
    font-size: 36px;
  }

  .services-feature-copy h3 {
    font-size: 20px;
  }

  .services-subheading .swoosh-line {
    font-size: 20px;
  }

  .services-feature-copy p {
    font-size: 14px;
  }

  .services-feature-media {
    margin: 0 auto;
  }

  .works-modal-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  .works-modal-close {
    top: 15px;
    right: 15px;
    font-size: 28px;
    width: 28px;
    height: 28px;
  }
}

