/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('/assets/fonts/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* playfair-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/playfair-display-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/playfair-display-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --bg: #f7f5ef;
  --bg-soft: #ffffff99;
  --ink: #1f2933;
  --muted: #667085;
  --brand: #243746;
  --brand-dark: #172632;
  --sage: #557068;
  --sand: #eadfcd;
  --blue-soft: #d9e3e7;
  --line: #ded8cc;
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(36, 55, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.brand img {
  padding-top: 15px;
  padding-bottom: 15px;
  height: 150px;
  width: auto;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 216, 204, 0.8);
  background: rgba(247, 245, 239, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--brand);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #5f6b73;
  font-size: 0.94rem;
}

.main-nav a:hover {
  color: var(--brand);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.header-cta,
.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  color: var(--brand);
}

.btn-light {
  background: var(--white);
  color: var(--brand);
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.85;
}

.hero-glow-one {
  top: -150px;
  right: -130px;
  background: var(--blue-soft);
}

.hero-glow-two {
  bottom: -170px;
  left: -160px;
  background: var(--sand);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  margin-bottom: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--brand);
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-text,
.lead,
.page-hero p {
  color: #61707a;
  font-size: 1.15rem;
  line-height: 1.85;
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.centered {
  justify-content: center;
}

.small-note {
  margin-top: 18px;
  color: #7b858c;
  font-size: 0.92rem;
}

.hero-card {
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 42px;
  background: rgba(255,255,255,0.52);
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.product-visual {
  min-height: 520px;
  border-radius: 32px;
  background: linear-gradient(135deg, #dce7ea, #f8f5ec 48%, #e9dcc8);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-top {
  align-self: flex-end;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  padding: 10px 16px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.visual-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  padding: 28px;
  box-shadow: 0 18px 55px rgba(36,55,70,0.12);
}

.visual-card p,
.info-card p,
.text-block p,
.notice-box p,
.contact-card p {
  color: #61707a;
}

.icon-leaf,
.check,
.icon {
  color: var(--sage);
  font-size: 1.6rem;
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.soft-section {
  background: rgba(255,255,255,0.48);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.text-block {
  font-size: 1.08rem;
}

.text-block p + p {
  margin-top: 22px;
}

.center {
  text-align: center;
}

.center .lead {
  max-width: 780px;
  margin: 22px auto 0;
}

.cards {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  padding: 30px;
  box-shadow: 0 10px 32px rgba(36, 55, 70, 0.055);
}

.info-card h3 {
  margin-top: 16px;
}

.notice-box {
  max-width: 900px;
  margin: 44px auto 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 42px rgba(36,55,70,0.07);
}

.notice-box .btn {
  margin-top: 14px;
}

.approach-cards {
  margin-top: 0;
}

.cta-section {
  background: var(--brand);
  color: var(--white);
  padding: 92px 0;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
}

.page-hero {
  padding: 96px 0 78px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 227, 231, 0.85), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(234, 223, 205, 0.85), transparent 35%);
}

.page-hero h1 {
  margin-inline: auto;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px auto 0;
}

.page-hero .eyebrow {
  display: inline-block;
  margin: 0 auto 30px auto;
}

.product-page-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 227, 231, 0.95), transparent 35%),
    radial-gradient(circle at 80% 5%, rgba(234, 223, 205, 0.95), transparent 40%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  min-height: 320px;
}

.contact-card.soft {
  background: rgba(255,255,255,0.52);
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
}

.clean-list {
  padding-left: 20px;
  color: #61707a;
}

.clean-list li + li {
  margin-top: 12px;
}

.site-footer {
  background: #1a2934;
  color: rgba(255,255,255,0.72);
  padding: 38px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-inner strong {
  color: var(--white);
  letter-spacing: 0.08em;
}

.footer-inner p {
  margin: 8px 0 0;
  max-width: 460px;
}

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

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .main-nav a {
    width: 100%;
    padding: 13px 12px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 58px 0 74px;
  }

  .product-visual {
    min-height: 420px;
  }

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

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .product-visual {
    min-height: 360px;
    padding: 22px;
  }

  .visual-card,
  .info-card,
  .contact-card,
  .notice-box {
    padding: 24px;
  }

  .section {
    padding: 68px 0;
  }
}
