:root {
  --bg: #f4f1ea;
  --bg-strong: #ece6dc;
  --surface: #fffdf8;
  --ink: #1f1d1a;
  --muted: #5e584f;
  --line: #d8d0c2;
  --accent: #a9783f;
  --accent-strong: #8f5e23;
  --footer-bg: #e4ddd2;
  --shadow-soft: 0 16px 38px rgba(45, 33, 16, 0.1);
  --shadow-deep: 0 30px 56px rgba(45, 33, 16, 0.16);
  --radius: 18px;
  --container: min(1200px, calc(100% - 48px));
  --header-height: 78px;
  --hero-stage-height: calc(100svh - var(--header-height));
  --hero-zoom-scroll: clamp(140px, 20vh, 260px);
  --hero-overlay-slot: 0px;
  --hero-total-height: calc(var(--hero-stage-height) + var(--hero-zoom-scroll) + var(--hero-overlay-slot));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(169, 120, 63, 0.14), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(143, 94, 35, 0.1), transparent 38%),
    linear-gradient(180deg, var(--bg-strong) 0%, var(--bg) 280px, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

img[data-hd] {
  transition: opacity 0.4s ease;
}

img.hd-ready {
  animation: hd-fade 0.4s ease;
}

@keyframes hd-fade {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 243, 235, 0.98);
  border-bottom: 1px solid rgba(216, 208, 194, 0.7);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(92px, 11vw, 132px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 0;
  transition: color 0.28s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-main {
  width: 100%;
}

.page-intro {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0 clamp(18px, 3vw, 30px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero {
  position: relative;
  width: 100%;
  height: var(--hero-total-height);
  overflow: visible;
  min-height: 0;
}

.hero-title,
.section-title,
.page-title,
.contact-card h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #181612;
}

.hero-title {
  font-size: clamp(2.2rem, 5.1vw, 4.15rem);
  margin: 18px 0;
  max-width: 14ch;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  max-width: 62ch;
  margin: 0;
}

.hero-visual {
  position: sticky;
  /* top: var(--header-height); */
  width: 100%;
  height: var(--hero-stage-height);
  min-height: 520px;
  max-height: 860px;
  overflow: hidden;
  margin: 0;
  background: var(--bg-strong);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.06) 100%);
}

.hero-visual>img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16730 / 10851;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  transition: transform 8s ease;
}

.hero-visual:hover>img {
  transform: scale(1.05);
}

.hero-content {
  position: absolute;
  bottom: var(--hero-zoom-scroll);
  left: 0;
  right: 0;
  z-index: 5;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.hero .kicker {
  color: rgba(255, 253, 248, 0.88);
}

.hero .kicker::before {
  background: rgba(255, 253, 248, 0.5);
}

.hero .hero-title {
  color: #fffdf8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero .hero-text {
  max-width: 44ch;
  color: rgba(255, 253, 248, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.hero-overlay {
  --hero-overlay-x: 0px;
  --hero-overlay-scale: 1;
  --hero-overlay-y: 0px;
  --hero-overlay-opacity: 1;
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 3.5vw, 44px);
  z-index: 3;
  width: clamp(170px, 16vw, 278px);
  border-radius: 16px;
  border: 3px solid rgba(255, 253, 248, 0.7);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  transform-origin: right bottom;
  transform: translate3d(var(--hero-overlay-x), var(--hero-overlay-y), 0) scale(var(--hero-overlay-scale));
  opacity: var(--hero-overlay-opacity);
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-overlay img {
  width: 100%;
  height: auto;
  aspect-ratio: 5330 / 7036;
  object-fit: contain;
}

.js-enabled .page-about .hero-overlay {
  transition: transform 0.16s linear, opacity 0.18s linear;
}

.floating-pair {
  width: var(--container);
  margin: clamp(16px, 2vw, 24px) auto clamp(52px, 8vw, 88px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  position: relative;
  z-index: 4;
}

.float-card {
  border-radius: var(--radius);
  border: 1px solid rgba(216, 208, 194, 0.8);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--surface);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.float-card img {
  width: 100%;
  height: clamp(160px, 24vw, 320px);
  object-fit: cover;
}

.float-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.content-wrap {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 40px);
  padding-bottom: clamp(60px, 8vw, 96px);
}

.content-panel {
  background: var(--surface);
  border: 1px solid rgba(216, 208, 194, 0.9);
  border-radius: var(--radius);
  padding: clamp(22px, 3.8vw, 42px);
  box-shadow: var(--shadow-soft);
}

.section-title {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  margin: 0 0 16px;
}

.section-text {
  margin: 0;
  color: var(--muted);
  max-width: 76ch;
}

.advantage-list {
  list-style: none;
  padding: 0;
  margin: clamp(22px, 4vw, 30px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.advantage-list li {
  position: relative;
  border-radius: 14px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(169, 120, 63, 0.22);
  background: linear-gradient(120deg, rgba(169, 120, 63, 0.07), rgba(169, 120, 63, 0.02));
  color: #2e2922;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.advantage-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(169, 120, 63, 0.14);
}

.advantage-title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.advantage-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}

.compare-panel {
  position: relative;
  width: 100%;
  padding-bottom: clamp(56px, 8vw, 96px);
  padding-top: clamp(48px, 6vw, 72px);
  background: var(--bg-strong);
}

.compare-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 2px;
}

.compare-panel>.content-panel {
  width: var(--container);
  margin: 0 auto;
}

.compare-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.compare-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 208, 194, 0.85);
  background: var(--surface);
}

.compare-card img {
  width: 100%;
  height: clamp(220px, 32vw, 420px);
  object-fit: cover;
}

/* ── Stats Band ── */

.stats-band {
  position: relative;
  background: var(--bg-strong);
  padding: clamp(48px, 6vw, 72px) 0;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.stats-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 2px;
}

.stats-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--accent-strong);
  line-height: 1.1;
}

.stat-label {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── CTA Section ── */

.cta-section {
  width: var(--container);
  margin: 0 auto;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.cta-card {
  background: var(--surface);
  border: 1px solid rgba(216, 208, 194, 0.9);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.cta-card .section-title {
  max-width: 24ch;
  margin: 0 auto 16px;
}

.cta-card .section-text {
  max-width: 52ch;
  margin: 0 auto 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fffdf8;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(169, 120, 63, 0.3);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(169, 120, 63, 0.4);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

/* ── Product Features Strip ── */

.features-strip {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 6vw, 72px);
}

.features-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 28px);
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(169, 120, 63, 0.22);
  background: linear-gradient(120deg, rgba(169, 120, 63, 0.08), rgba(169, 120, 63, 0.02));
  font-weight: 600;
  font-size: 0.9rem;
  color: #2e2922;
}

.feature-tag svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.page-title {
  margin: 12px 0 16px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 14ch;
}

.page-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.gallery-wrap {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(48px, 6vw, 72px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(216, 208, 194, 0.9);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 51 / 76;
  object-fit: cover;
  transition: transform 0.48s ease;
}

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

.gallery-caption {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.contact-wrap {
  width: var(--container);
  margin: 0 auto;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 98px);
}

.contact-intro {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(216, 208, 194, 0.9);
  background: var(--surface);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-soft);
}

.contact-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-label {
  margin: 22px 0 6px;
  font-weight: 700;
  color: #2e2922;
}

.contact-lines {
  margin: 0;
  color: var(--muted);
}

.contact-lines a {
  color: var(--accent-strong);
  text-decoration-thickness: 1.2px;
  text-underline-offset: 3px;
}

/* ── Footer ── */

.site-footer {
  background: var(--footer-bg, #e4ddd2);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), var(--accent-strong)) 1;
}

.footer-main {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
}

.footer-logo {
  width: clamp(80px, 10vw, 120px);
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.6);
  color: var(--muted);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
  color: var(--accent-strong);
  background: rgba(255, 253, 248, 0.95);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-nav {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.footer-nav-group {
  min-width: 0;
}

.footer-heading {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.22s ease;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.footer-contact {
  min-width: 0;
}

.footer-address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-address p {
  margin: 0 0 10px;
}

.footer-address a {
  color: var(--accent-strong);
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-address a:hover {
  color: var(--accent);
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(216, 208, 194, 0.7);
  color: #8a8279;
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  will-change: opacity, transform;
  transition: opacity 0.56s ease, transform 0.56s ease;
  transition-delay: var(--delay, 0s);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.js-enabled .page-about [data-reveal="soft"] {
  opacity: 0.92;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-enabled .page-about [data-reveal="soft"].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
  .advantage-list {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 10px 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(1200px, calc(100% - 32px));
    --header-height: 70px;
    --hero-zoom-scroll: clamp(120px, 17vh, 185px);
    --hero-overlay-slot: calc((clamp(220px, 60vw, 320px) * 1.62) + 36px);
  }

  .header-inner {
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    align-content: center;
    gap: 4px;
    padding: 10px 0;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    row-gap: 8px;
  }

  .floating-pair,
  .gallery-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    overflow: hidden;
  }

  .hero-visual {
    min-height: 410px;
    max-height: none;
    overflow: visible;
  }

  .hero-visual>img {
    object-position: center 95%;
    transform: scale(1);
    transform-origin: center bottom;
  }

  .hero-visual:hover>img {
    transform: scale(1.16);
  }

  .hero-overlay {
    --hero-overlay-x: -50%;
    left: 50%;
    right: auto;
    top: calc(100% + 12px);
    bottom: auto;
    width: clamp(220px, 60vw, 320px);
    border-radius: 14px;
    transform-origin: center top;
  }

  .hero-content {
    bottom: calc(var(--hero-overlay-slot) + var(--hero-zoom-scroll) + clamp(220px, 3.6vh, 250px));
    padding-bottom: clamp(20px, 4vw, 40px);
  }

  .floating-pair {
    margin-top: clamp(42px, 8vw, 64px);
  }

  .hero .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .page-title {
    max-width: 100%;
  }

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

  .footer-nav {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

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

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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}