@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg: #f6f1ea;
  --bg-soft: #fbf8f4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffdf9;
  --panel-dark: #201611;
  --panel-dark-soft: #2d1f18;
  --text: #201915;
  --text-soft: #6e6055;
  --line: rgba(74, 53, 40, 0.14);
  --line-strong: rgba(191, 164, 111, 0.28);
  --gold: #b6945c;
  --gold-soft: #d7c39a;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(27, 17, 12, 0.12);
  --shadow-soft: 0 14px 36px rgba(27, 17, 12, 0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --nav-h: 78px;
  --max: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --trans: 0.45s cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

body {
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(182, 148, 92, 0.14), transparent 28%),
    linear-gradient(180deg, #f8f4ee 0%, #f4eee6 45%, #f8f5f0 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(182, 148, 92, 0.22);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
}

::-webkit-scrollbar-thumb {
  background: rgba(89, 67, 52, 0.3);
  border-radius: 999px;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(248, 244, 238, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.nav.scrolled {
  background: rgba(248, 244, 238, 0.88);
  box-shadow: 0 14px 40px rgba(30, 20, 14, 0.08);
  border-color: rgba(74, 53, 40, 0.08);
}

.nav-inner,
.hero-shell,
.catalog-overview,
.section,
.footer-top,
.footer-bottom {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin: 0 auto;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo,
.footer-logo {
  font-family: var(--serif);
  letter-spacing: 0.18em;
  font-size: 1.6rem;
  color: var(--panel-dark);
}

.logo span,
.footer-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  transition: color var(--trans);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--trans);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

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

.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--panel-dark);
  color: #f7efe3 !important;
  box-shadow: 0 12px 30px rgba(32, 22, 17, 0.16);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--panel-dark);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--trans), opacity var(--trans);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding: calc(var(--nav-h) + 36px) 0 36px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(22, 14, 10, 0.76) 0%, rgba(22, 14, 10, 0.4) 42%, rgba(22, 14, 10, 0.2) 70%, rgba(22, 14, 10, 0.58) 100%),
    linear-gradient(180deg, rgba(246, 241, 234, 0) 42%, rgba(246, 241, 234, 0.22) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
}

.hero-copy {
  max-width: 720px;
  color: var(--white);
}

.hero-eyebrow,
.section-label,
.gallery-badge,
.hero-panel-label,
.section-note span,
.footer-col h3,
.catalog-shortcuts a {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow {
  color: rgba(247, 239, 227, 0.85);
  margin-bottom: 20px;
}

.hero-eyebrow .line,
.section-label span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-title,
.section-title,
.hero-panel h2,
.product-copy h3,
.material-body h3,
.care-card h3,
.yascari-quote {
  font-family: var(--serif);
  font-weight: 400;
}

.hero-title {
  font-size: clamp(3rem, 6.4vw, 6.3rem);
  line-height: 0.94;
  max-width: 10ch;
}

.hero-sub {
  max-width: 560px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  margin-top: 22px;
  color: rgba(255, 248, 239, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 248, 239, 0.18);
  color: rgba(255, 248, 239, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform var(--trans), background var(--trans), border-color var(--trans), color var(--trans), box-shadow var(--trans);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #cfb384 100%);
  color: #23170f;
  box-shadow: 0 18px 40px rgba(182, 148, 92, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 248, 239, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.btn-secondary-dark {
  color: var(--panel-dark);
  border-color: rgba(32, 22, 17, 0.16);
  background: rgba(32, 22, 17, 0.04);
}

.btn-secondary-dark:hover,
.btn-secondary-dark:focus-visible {
  background: rgba(32, 22, 17, 0.08);
}

.btn-text {
  padding: 0;
  min-height: auto;
  border-radius: 0;
  color: var(--panel-dark);
  justify-content: flex-start;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.76rem;
  border-bottom: 1px solid var(--gold);
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  color: #fff7ec;
  background: linear-gradient(180deg, rgba(31, 20, 15, 0.78), rgba(31, 20, 15, 0.92));
  border: 1px solid rgba(255, 245, 231, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel-label {
  color: rgba(215, 195, 154, 0.88);
  margin-bottom: 10px;
}

.hero-panel h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 10px;
}

.hero-panel p {
  color: rgba(255, 245, 231, 0.72);
  line-height: 1.75;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.hero-stats div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 245, 231, 0.14);
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 500;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 245, 231, 0.68);
  font-size: 0.82rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 239, 0.5);
}

.scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255, 248, 239, 0), rgba(255, 248, 239, 0.9));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.35;
    transform: scaleY(0.9);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.05);
  }
}

.catalog-overview,
.section {
  padding: clamp(80px, 10vw, 132px) 0;
}

.catalog-overview {
  position: relative;
}

.overview-head {
  max-width: 680px;
}

.section-label {
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  color: var(--panel-dark);
}

.section-title em {
  font-style: italic;
  color: #7a6657;
  font-weight: 300;
}

.section-desc {
  margin-top: 18px;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-soft);
}

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

.overview-card,
.gallery-shell,
.care-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-soft);
}

.overview-card {
  min-height: 220px;
  padding: 26px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}

.overview-card:hover,
.overview-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(182, 148, 92, 0.24);
  box-shadow: var(--shadow);
}

.overview-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.overview-card strong {
  font-size: 1.55rem;
  font-family: var(--serif);
  font-weight: 400;
}

.overview-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.catalog-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.catalog-shortcuts a {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-soft);
  border: 1px solid rgba(74, 53, 40, 0.08);
}

.catalog-shortcuts a:hover,
.catalog-shortcuts a:focus-visible {
  color: var(--panel-dark);
  border-color: var(--line-strong);
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(246, 241, 234, 0.68));
}

.section-dark {
  position: relative;
  width: 100%;
  background:
    radial-gradient(circle at top right, rgba(182, 148, 92, 0.16), transparent 28%),
    linear-gradient(180deg, #241913 0%, #1d140f 100%);
}

.section-dark .section-title,
.section-dark .section-desc,
.section-dark .section-label,
.section-dark .material-body h3,
.section-dark .material-claim,
.section-dark .material-body li,
.section-dark .materials-quote blockquote,
.section-dark .materials-quote cite {
  color: #f6ead8;
}

.section-dark .section-desc {
  color: rgba(246, 234, 216, 0.72);
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-note {
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(74, 53, 40, 0.08);
  color: var(--text-soft);
}

.section-note strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--panel-dark);
  line-height: 1.6;
}

.divider-ornament {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin: 0 auto;
  text-align: center;
  color: rgba(182, 148, 92, 0.7);
  opacity: 0.7;
}

.gallery-shell {
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 22px;
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.gallery-meta p {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.7;
}

.gallery-badge {
  color: var(--gold);
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(74, 53, 40, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--panel-dark);
  transition: transform var(--trans), background var(--trans), color var(--trans), border-color var(--trans);
}

.gallery-btn:hover,
.gallery-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--panel-dark);
  color: #fff7ec;
  border-color: var(--panel-dark);
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 33%);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track-featured {
  grid-auto-columns: minmax(100%, 100%);
}

.product-card {
  scroll-snap-align: start;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(74, 53, 40, 0.08);
  display: flex;
  flex-direction: column;
}

.product-card img {
  aspect-ratio: 4 / 3.6;
  object-fit: contain;
  background:
    radial-gradient(circle at top, rgba(182, 148, 92, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f1e8 0%, #fdfaf6 100%);
  padding: 18px 18px 0;
  transition: transform 0.9s var(--trans);
}

.product-card:hover img {
  transform: scale(1.02);
}

.product-card-full {
  min-width: 100%;
}

.product-copy {
  padding: 18px 18px 20px;
}

.product-copy h3 {
  font-size: 1.55rem;
  color: var(--panel-dark);
}

.product-copy p {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.72;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.material-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.material-img-wrap {
  position: relative;
}

.material-img-wrap img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.material-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(29, 20, 15, 0.64);
  color: #f6ead8;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.material-body {
  padding: 28px;
}

.material-body h3 {
  font-size: 2rem;
}

.material-claim {
  margin-top: 10px;
  color: rgba(246, 234, 216, 0.8);
  line-height: 1.7;
}

.material-body ul {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.material-body li {
  display: flex;
  gap: 12px;
  align-items: start;
  color: rgba(246, 234, 216, 0.72);
  line-height: 1.7;
}

.material-body li::before {
  content: "";
  width: 18px;
  height: 1px;
  margin-top: 11px;
  background: var(--gold-soft);
  flex: 0 0 auto;
}

.materials-quote {
  max-width: 780px;
  margin: 34px auto 0;
  padding-top: 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.materials-quote blockquote {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.38;
  font-style: italic;
}

.materials-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 234, 216, 0.62);
  font-style: normal;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.care-card {
  padding: 26px;
  border-radius: var(--radius-md);
}

.care-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(182, 148, 92, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.care-card h3 {
  margin-top: 18px;
  font-size: 1.55rem;
}

.care-card p {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.8;
}

.testimonials {
  padding-top: 88px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card,
.cta-band-inner {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.testimonial-card {
  padding: 24px;
  border-radius: 26px;
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.8;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--panel-dark);
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.section-yascari {
  padding-inline: 0;
}

.yascari-layout {
  width: min(100%, calc(var(--max) + (var(--pad) * 2)));
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.yascari-portrait {
  position: relative;
  min-height: 680px;
}

.yascari-portrait img,
.yascari-img-overlay {
  position: absolute;
  inset: 0;
}

.yascari-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(18%);
}

.yascari-img-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(32, 22, 17, 0.34));
}

.yascari-content {
  padding: clamp(38px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yascari-quote {
  margin-top: 18px;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.26;
  color: var(--panel-dark);
}

.yascari-body {
  margin-top: 18px;
  max-width: 60ch;
  color: var(--text-soft);
  line-height: 1.9;
}

.yascari-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(74, 53, 40, 0.1);
}

.yascari-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
}

.yascari-stats span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  line-height: 1.6;
}

.cta-band {
  padding-top: 20px;
}

.cta-band-inner {
  border-radius: 32px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer {
  margin-top: 34px;
  padding: 0 0 28px;
  background: linear-gradient(180deg, #221812 0%, #19110d 100%);
  color: #f6ead8;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 28px;
  padding: 76px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline,
.footer-copy,
.footer-col li,
.footer-col a,
.footer-bottom p {
  color: rgba(246, 234, 216, 0.68);
}

.footer-tagline {
  margin-top: 10px;
  line-height: 1.8;
}

.footer-copy {
  margin-top: 18px;
  max-width: 34ch;
  line-height: 1.85;
}

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--gold-soft);
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff7ec;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.footer-social a,
.float-btn {
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.float-btns {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  color: white;
  box-shadow: 0 16px 36px rgba(31, 20, 15, 0.18);
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-2px);
}

.float-btn span {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.float-wa {
  background: #25c660;
}

.float-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

@media (max-width: 1080px) {
  .hero-shell,
  .yascari-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 480px;
  }

  .overview-grid,
  .material-grid,
  .care-grid,
  .footer-top,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-track {
    grid-auto-columns: minmax(300px, 44%);
  }

  .yascari-portrait {
    min-height: 540px;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-h: 68px;
    --pad: 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + 10px);
    right: var(--pad);
    width: min(320px, calc(100vw - (var(--pad) * 2)));
    padding: 18px;
    border-radius: 26px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(34, 24, 18, 0.95);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans), transform var(--trans);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 16px;
    color: rgba(246, 234, 216, 0.8);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin-top: 6px;
    text-align: center;
    background: var(--gold);
    color: #24170f !important;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 20px;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-shell {
    gap: 18px;
  }

  .hero-panel {
    max-width: none;
    padding: 22px;
  }

  .hero-stats {
    gap: 10px;
  }

  .scroll-hint,
  .section-note {
    display: none;
  }

  .overview-grid,
  .material-grid,
  .care-grid,
  .footer-top,
  .yascari-stats,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header,
  .section-top,
  .footer-bottom,
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-track {
    grid-auto-columns: minmax(280px, 82%);
    scroll-padding-left: 6px;
  }

  .catalog-shortcuts {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .catalog-shortcuts::-webkit-scrollbar {
    display: none;
  }

  .catalog-shortcuts a {
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: calc(var(--nav-h) + 22px);
    padding-bottom: 12px;
  }

  .nav-inner,
  .hero-shell,
  .catalog-overview,
  .section,
  .footer-top,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-panel,
  .gallery-shell,
  .yascari-layout,
  .overview-card,
  .care-card,
  .material-card {
    border-radius: 22px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust {
    gap: 8px;
  }

  .hero-trust span {
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-panel h2 {
    font-size: 1.85rem;
  }

  .hero-panel p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats strong {
    font-size: 1.05rem;
  }

  .hero-stats span {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .btn {
    width: 100%;
  }

  .catalog-overview,
  .section {
    padding: 68px 0;
  }

  .overview-grid {
    gap: 14px;
    margin-top: 26px;
  }

  .overview-card,
  .care-card,
  .material-body,
  .yascari-content,
  .testimonial-card {
    padding: 20px;
  }

  .section-title {
    font-size: clamp(2rem, 11vw, 2.6rem);
  }

  .section-desc,
  .gallery-meta p,
  .product-copy p,
  .care-card p,
  .yascari-body,
  .footer-copy {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .gallery-shell {
    padding: 16px;
  }

  .gallery-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .gallery-controls {
    display: none;
  }

  .gallery-track {
    grid-auto-columns: 92%;
    gap: 14px;
    scroll-padding-left: 2px;
  }

  .product-card img {
    aspect-ratio: 4 / 4;
    padding: 14px 14px 0;
  }

  .product-copy {
    padding: 16px;
  }

  .product-copy h3 {
    font-size: 1.35rem;
  }

  .material-grid,
  .care-grid {
    gap: 16px;
  }

  .testimonial-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .cta-band-inner {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .cta-band-actions {
    width: 100%;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  .material-body h3,
  .care-card h3 {
    font-size: 1.6rem;
  }

  .yascari-layout {
    border-radius: 22px;
  }

  .yascari-portrait {
    min-height: 360px;
  }

  .yascari-quote {
    font-size: 1.85rem;
  }

  .footer-top {
    padding-top: 58px;
    gap: 20px;
  }

  .float-btn span {
    display: none;
  }

  .float-btn {
    width: 48px;
    justify-content: center;
    padding: 0;
  }
}
