:root {
  --bg: #f6f3ef;
  --text: #111111;
  --muted: #666666;
  --line: #e5dfd7;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Times New Roman", Georgia, serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 239, 0.92);
  backdrop-filter: blur(14px);
}

.nav-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 130px;
  height: 92px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.language-switch {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.36);
  font-family: Arial, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  padding: 9px 28px 9px 12px;
}

.subpage {
  padding-top: 76px;
  padding-bottom: 90px;
}

.narrow {
  max-width: 820px;
}

.eyebrow {
  color: #8d857d;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 22px;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.lead {
  max-width: 46rem;
}

.about-page {
  padding-top: 76px;
}

.about-hero {
  padding-bottom: 34px;
  text-align: center;
}

.about-hero h1,
.about-story h2 {
  margin: 12px 0 22px;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.about-media {
  padding-top: 26px;
  padding-bottom: 70px;
}

.about-media img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.about-story {
  padding-top: 24px;
  padding-bottom: 74px;
  border-top: 1px solid var(--line);
}

.about-video {
  padding-top: 10px;
  padding-bottom: 74px;
}

.video-frame {
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(17, 17, 17, 0.25), rgba(17, 17, 17, 0.25)),
    url("./assets/anti-odor-spray.jpg") center / cover;
  color: #fff;
  border: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-product-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-product-pair img {
  aspect-ratio: 4 / 5;
}

.culture-hero h1 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.culture-cover img {
  max-height: 820px;
  object-position: center;
}

.culture-intro {
  padding-top: 44px;
  padding-bottom: 86px;
  text-align: center;
}

.culture-intro p {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
  font-size: 1.08rem;
}

.culture-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 86px;
  border-top: 1px solid var(--line);
}

.culture-section-reverse img {
  order: 2;
}

.culture-section img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.culture-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.culture-copy p {
  max-width: 34rem;
}

.contact-page {
  padding-top: 76px;
  padding-bottom: 90px;
}

.contact-hero {
  max-width: 860px;
  padding-bottom: 54px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-card {
  position: sticky;
  top: 116px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.contact-card h2 {
  margin: 12px 0 18px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}

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

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: 1rem Georgia, "Times New Roman", serif;
  padding: 14px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--muted) !important;
  line-height: 1.6;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.submit-button {
  justify-self: start;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 14px 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.map-section {
  margin-top: 70px;
  border: 1px solid var(--line);
  background: #fff;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.product-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-card h2,
.product-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.product-card h2 {
  margin: 18px 0 0;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 20px;
}

.detail {
  padding-top: 76px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.gallery-main {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  opacity: 0.72;
}

.thumb.is-active {
  opacity: 1;
  border-color: #111;
}

.thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

dd {
  margin: 0;
}

.button,
.email {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer {
  margin-top: 50px;
  padding: 44px 24px 26px;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-brand {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  color: #b7b7b7;
  font-size: 0.94rem;
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding-top: 24px;
  color: #b7b7b7;
  font-size: 0.85rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.socials a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.socials svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 760px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-row {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .nav {
    justify-content: flex-start;
    gap: 14px;
    font-size: 0.74rem;
  }

  .product-grid,
  .detail,
  .about-product-pair,
  .culture-section,
  .contact-layout,
  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
  }

  .culture-section {
    gap: 24px;
  }

  .culture-section-reverse img {
    order: 0;
  }

  .gallery-main {
    min-height: 420px;
  }

  .video-frame {
    min-height: 360px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
