:root {
  --bg: #f6efe6;
  --bg-soft: #efe3d4;
  --surface: rgba(255, 249, 242, 0.78);
  --surface-strong: #f8f1e7;
  --surface-dark: #241712;
  --text: #1b120e;
  --text-soft: #5f4d42;
  --line: rgba(51, 31, 22, 0.12);
  --brown-900: #21130d;
  --brown-800: #352118;
  --brown-700: #533729;
  --tan-500: #b9895f;
  --tan-400: #d8b18a;
  --cream: #fff8ef;
  --gold: #b8863b;
  --shadow-lg: 0 24px 60px rgba(40, 23, 12, 0.14);
  --shadow-md: 0 18px 40px rgba(50, 28, 14, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 177, 138, 0.28), transparent 30%),
    radial-gradient(circle at bottom right, rgba(95, 59, 35, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf6f0 0%, var(--bg) 40%, #f2e7da 100%);
  color: var(--text);
  font-family: "Jost", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(80, 47, 30, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 47, 30, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
}

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

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

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 120px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-top: 16px;
  background: rgba(245, 235, 222, 0.74);
  border: 1px solid rgba(83, 55, 41, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark__logo {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: linear-gradient(160deg, #3a2418 0%, #21130d 100%);
  border: none;
  box-shadow:
    inset 0 1px 2px rgba(255, 248, 239, 0.12),
    0 2px 8px rgba(33, 19, 13, 0.22),
    0 0 0 1px rgba(83, 55, 41, 0.3);
  padding: 3px;
  filter: saturate(0.85) contrast(1.05);
}

.topbar__nav {
  display: none;
  align-items: center;
  gap: 20px;
  color: var(--text-soft);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 250, 244, 0.6);
  border: 1px solid rgba(184, 134, 59, 0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: var(--text-soft);
  white-space: nowrap;
}

.lang-toggle:hover {
  background: rgba(255, 250, 244, 0.9);
  border-color: var(--gold);
}

.lang-toggle__sep {
  opacity: 0.4;
  font-weight: 400;
}

/* Highlight active language */
.lang-toggle[data-lang="sq"] .lang-toggle__sq,
.lang-toggle[data-lang="en"] .lang-toggle__en {
  color: var(--gold);
}

.lang-toggle[data-lang="sq"] .lang-toggle__en,
.lang-toggle[data-lang="en"] .lang-toggle__sq {
  opacity: 0.45;
}

.topbar__nav a {
  transition: color 200ms ease;
}

.topbar__nav a:hover {
  color: var(--gold);
}

.topbar__nav a,
.category-card,
.button,
.sticky-cta {
  cursor: pointer;
}

.section {
  padding: 72px 0;
}

.section--warm {
  position: relative;
}

.section--warm::before {
  content: "";
  position: absolute;
  inset: 40px -16px;
  z-index: -1;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.54), rgba(233, 217, 199, 0.34));
  border: 1px solid rgba(92, 57, 38, 0.08);
}

.section--dark {
  position: relative;
  border-radius: 40px;
  padding-block: clamp(28px, 5vw, 48px);
  padding-inline: clamp(20px, 3vw, 40px);
  background:
    linear-gradient(160deg, rgba(23, 14, 10, 0.96), rgba(57, 36, 26, 0.94)),
    radial-gradient(circle at top left, rgba(184, 134, 59, 0.18), transparent 26%);
  color: var(--cream);
  overflow: hidden;
}

.section--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0%, rgba(255, 240, 220, 0.04) 46%, transparent 100%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brown-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.9rem, 7vw, 6.1rem);
  line-height: 0.95;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.02;
  max-width: 13ch;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.08;
}

p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.hero__lede {
  max-width: 56ch;
  margin-top: 22px;
  font-size: 1.08rem;
}

.hero__actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.button:hover,
.button:focus-visible,
.category-card:hover,
.category-card:focus-visible,
.sticky-cta:hover,
.sticky-cta:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.category-card:focus-visible,
.sticky-cta:focus-visible,
.topbar__nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 134, 59, 0.35);
}

.button--primary {
  background: linear-gradient(145deg, #3a2419, #1d120c);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(39, 21, 12, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 18px 34px rgba(39, 21, 12, 0.32);
}

.button--secondary,
.button--secondary-dark {
  border-color: rgba(46, 27, 18, 0.14);
  background: rgba(255, 248, 241, 0.7);
  color: var(--brown-900);
}

.button--secondary-dark {
  background: rgba(34, 21, 15, 0.08);
}

.button--sm {
  min-height: 46px;
  padding-inline: 18px;
}

.button--large {
  min-height: 58px;
  padding-inline: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero__trust li,
.craftsmanship__notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.68);
  border: 1px solid rgba(71, 43, 29, 0.08);
  color: var(--brown-800);
  font-size: 0.95rem;
}

.hero__visual {
  display: grid;
  gap: 16px;
}

.visual-card,
.stat-card,
.category-card,
.feature-card,
.step-card,
.atelier-card,
.corporate__panel,
.gallery-card,
.final-cta__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.visual-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(255, 247, 238, 0.96), rgba(232, 215, 194, 0.76)),
    linear-gradient(130deg, rgba(255, 255, 255, 0.12), transparent);
}

.visual-card::before,
.category-card__image::before,
.gallery-card__image::before,
.atelier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(86, 54, 38, 0.07) 1px, transparent 0);
  background-size: 12px 12px;
  opacity: 0.18;
  pointer-events: none;
}

.visual-card__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brown-700);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-profile-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(71, 43, 29, 0.08);
  box-shadow: 0 12px 24px rgba(43, 24, 16, 0.08);
}

.hero-profile {
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 239, 0.8);
  box-shadow: 0 10px 18px rgba(43, 24, 16, 0.12);
  filter: saturate(0.72) sepia(0.12) contrast(1.03);
}

.hero-profile-card__meta {
  display: grid;
  gap: 2px;
}

.hero-profile-card__meta strong {
  color: var(--brown-900);
  font-size: 0.95rem;
  line-height: 1.1;
}

.hero-profile-card__meta span {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.2;
}

.hero-product-photo {
  display: block;
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  margin: 18px auto 18px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 28px 44px rgba(43, 24, 16, 0.26);
}

.wallet-mock {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1.1;
  margin: 26px auto 18px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, #6a422d, #3f2418 62%, #29170f),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -6px 12px rgba(18, 10, 7, 0.18),
    0 28px 44px rgba(43, 24, 16, 0.26);
}

.wallet-mock::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 241, 229, 0.12);
}

.wallet-mock__strap {
  position: absolute;
  top: 16%;
  left: -8%;
  width: 120%;
  height: 16%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 18, 11, 0.2), rgba(255, 255, 255, 0.08), rgba(36, 18, 11, 0.24));
  transform: rotate(-12deg);
}

.wallet-mock__stamp,
.folio-mock__mark {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  font-family: "Bodoni Moda", Georgia, serif;
  color: rgba(255, 226, 184, 0.9);
  letter-spacing: 0.15em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.7);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.4rem;
  color: var(--brown-900);
}

.stat-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 64ch;
}

.category-grid,
.customization__features,
.steps-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.category-grid {
  grid-template-columns: repeat(2, 1fr);
}

.category-card {
  border-radius: 24px;
  padding: 14px;
  background: rgba(255, 250, 245, 0.7);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(83, 55, 41, 0.24);
  box-shadow: 0 24px 42px rgba(50, 28, 14, 0.14);
}

.category-card span {
  display: block;
  margin-top: 12px;
  color: var(--brown-900);
  font-weight: 600;
}

.category-card__photo,
.gallery-card__photo {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.category-card__photo {
  aspect-ratio: 1 / 1.08;
}

.category-card__image,
.gallery-card__image {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(145deg, #dfc4a5, #83573b 65%, #2f190f);
}

.category-card__image {
  aspect-ratio: 1 / 1.08;
}

.category-card__image--wallet {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 234, 211, 0.26), transparent 20%),
    linear-gradient(145deg, #d7b089, #8f6040 60%, #3a2418);
}

.category-card__image--bag {
  background:
    radial-gradient(circle at 40% 20%, rgba(255, 230, 199, 0.24), transparent 20%),
    linear-gradient(160deg, #d9bd9d, #a06a48 58%, #3c2519);
}

.category-card__image--belt {
  background:
    linear-gradient(135deg, #e2c39f, #ab714c 55%, #382115);
}

.category-card__image--small {
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 237, 218, 0.22), transparent 18%),
    linear-gradient(140deg, #ceb69a, #7d553b 60%, #2c170f);
}

.category-card__image--gift {
  background:
    linear-gradient(145deg, #d4ae88, #98643f 55%, #311c12);
}

.customization__layout,
.craftsmanship,
.corporate,
.final-cta {
  display: grid;
  gap: 24px;
}

.customization__showcase {
  border-radius: 28px;
  padding: 20px;
  background: rgba(255, 250, 243, 0.65);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.comparison-note {
  margin-bottom: 16px;
  color: var(--brown-700);
  font-size: 0.95rem;
  line-height: 1.55;
}

.before-after {
  display: grid;
  gap: 16px;
}

.before-after__panel {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 238, 226, 0.95), rgba(231, 215, 195, 0.72));
}

.before-after__panel--after {
  background: linear-gradient(180deg, rgba(244, 226, 203, 0.95), rgba(198, 159, 123, 0.38));
}

.before-after__label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brown-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-after__photo {
  display: block;
  width: 100%;
  min-height: 220px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 32px rgba(56, 32, 18, 0.18);
}

.folio-mock {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, #6f4a33, #3a2317 62%, #26150e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 32px rgba(56, 32, 18, 0.18);
}

.folio-mock::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 243, 228, 0.14);
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.74);
}

.feature-card p,
.step-card p,
.gallery-card p {
  margin-top: 10px;
}

.step-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 249, 242, 0.07);
  backdrop-filter: blur(10px);
}

#si-funksionon .section-heading {
  margin-bottom: 34px;
}

#si-funksionon .section-heading h2 {
  max-width: 15ch;
}

#si-funksionon .steps-grid {
  gap: 18px;
  margin-top: 8px;
}

#si-funksionon .step-card {
  min-height: 100%;
  padding: 28px 24px;
}

.step-card__index {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(245, 228, 204, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section--dark p,
.section--dark .eyebrow,
.section--dark .step-card__index {
  color: rgba(255, 241, 225, 0.75);
}

.craftsmanship__content {
  display: grid;
  gap: 18px;
}

.craftsmanship__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.craftsmanship__visual {
  min-height: 360px;
}

.atelier-photo {
  display: block;
  width: 100%;
  min-height: 360px;
  border-radius: 32px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.atelier-card {
  min-height: 100%;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(44, 26, 18, 0.12), rgba(44, 26, 18, 0.22)),
    linear-gradient(145deg, #edd7bc, #c39064 60%, #654129);
}

.atelier-card__tool,
.atelier-card__strip,
.atelier-card__hide {
  position: absolute;
  border-radius: 999px;
}

.atelier-card__tool {
  width: 58%;
  height: 28px;
  left: 12%;
  top: 22%;
  background: linear-gradient(90deg, #1f130d, #6f4934 55%, #f4debe);
  transform: rotate(-18deg);
}

.atelier-card__hide {
  width: 38%;
  height: 120px;
  right: 12%;
  top: 16%;
  border-radius: 24px;
  background: linear-gradient(145deg, #764e35, #381f14);
}

.atelier-card__strip {
  width: 70%;
  height: 60px;
  left: 16%;
  bottom: 16%;
  background: linear-gradient(90deg, #5f3b25, #c08a5c, #6b432d);
}

.corporate__panel {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(255, 250, 244, 0.8), rgba(228, 207, 186, 0.66));
}

.corporate__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 24px;
}

.corporate__image-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(83, 55, 41, 0.12);
  box-shadow: 0 18px 32px rgba(50, 28, 14, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.corporate__image-card:hover,
.corporate__image-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(50, 28, 14, 0.16);
}

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

.corporate__list {
  padding-left: 18px;
  margin: 22px 0 28px;
  color: var(--text-soft);
}

.corporate__list li + li {
  margin-top: 10px;
}

.corporate__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}

.corporate__spec-item {
  background: rgba(255, 250, 244, 0.55);
  border: 1px solid rgba(184, 134, 59, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.corporate__spec-item strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.corporate__spec-item span {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.4;
}

.corporate__email {
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.8;
}
.corporate__email a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.craftsmanship__heritage {
  font-size: 1.05rem;
  color: var(--text-soft);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 0 0 18px;
  line-height: 1.65;
}

.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-card {
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 250, 244, 0.76);
}

.gallery-card__image {
  min-height: 160px;
}

.gallery-card__photo {
  aspect-ratio: 4 / 5;
}

.gallery-card__image--1 {
  background: linear-gradient(160deg, #c89b74, #5d3a27 65%, #2a170f);
}

.gallery-card__image--2 {
  background: linear-gradient(155deg, #d8b690, #875d40 58%, #332117);
}

.gallery-card__image--3 {
  background: linear-gradient(145deg, #e0c5a1, #986847 52%, #3a2318);
}

.gallery-card__image--4 {
  background: linear-gradient(150deg, #d6b697, #765039 56%, #2d1a11);
}

.gallery-card__image--5 {
  background: linear-gradient(155deg, #dfc9ad, #a16f4f 54%, #43271a);
}

.gallery-card__image--6 {
  background: linear-gradient(150deg, #bf8d62, #6d482f 58%, #28150d);
}


.final-cta__panel {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(216, 177, 138, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.84), rgba(237, 220, 199, 0.84));
  text-align: center;
}

.final-cta__panel h2 {
  margin-inline: auto;
}

.final-cta__panel p {
  max-width: 58ch;
  margin: 18px auto 0;
}

.final-cta__panel .button {
  margin-top: 28px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;
  z-index: 24;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 22px;
  background: linear-gradient(145deg, #2c1b12, #120b08);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(22, 12, 8, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease;
  font-size: 0.85rem;
}

.sticky-cta small {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal--delay-2 {
  transition-delay: 220ms;
}

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 300ms ease;
}

@media (min-width: 768px) {
  .page-shell {
    padding-bottom: 80px;
  }

  .topbar__nav {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 38px;
  }

  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .customization__layout,
  .craftsmanship {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .customization__features,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #si-funksionon {
    padding-inline: clamp(28px, 4vw, 44px);
  }

  #si-funksionon .steps-grid {
    gap: 20px;
  }

  .before-after {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sticky-cta {
    right: 24px;
    bottom: 24px;
    padding: 0 18px;
    min-height: 52px;
    font-size: 0.92rem;
    gap: 12px;
  }

  .sticky-cta small {
    display: inline;
    color: rgba(255, 238, 215, 0.7);
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .hero__stats {
    gap: 14px;
  }

  .visual-card {
    min-height: 520px;
    padding: 28px;
  }

  .wallet-mock {
    margin-top: 40px;
  }

  .gallery-card__image {
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  .topbar {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .topbar .button--sm {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .brand-mark__logo {
    height: 42px;
    width: 42px;
  }

  .hero-profile-card {
    width: 100%;
  }

  #si-funksionon {
    border-radius: 28px;
    padding-block: 26px;
    padding-inline: 18px;
  }

  #si-funksionon .section-heading {
    margin-bottom: 24px;
  }

  #si-funksionon .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #si-funksionon .step-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

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

  .category-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ─── Hamburger ──────────────────────────────────────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown-800);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile nav overlay ─────────────────────────────────────────────────── */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(246, 239, 230, 0.97);
  backdrop-filter: blur(18px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

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

.mobile-nav a {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-900);
  letter-spacing: -0.02em;
  transition: color 200ms ease;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .button--primary {
  color: #fff;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */

.testimonials-grid {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  margin: 0;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.testimonial-card__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
}

.testimonial-card__author strong {
  color: var(--brown-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-card__author span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 32px;
}

.footer__tagline {
  margin-top: 14px;
  max-width: 36ch;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 10px;
}

.footer__links h4,
.footer__contact h4 {
  margin: 0 0 4px;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__links a,
.footer__contact a {
  font-size: 0.92rem;
  color: var(--text-soft);
  transition: color 200ms ease;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--brown-900);
}

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 250, 244, 0.68);
  border: 1px solid rgba(71, 43, 29, 0.08);
  color: var(--brown-700);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.footer__social a:hover {
  background: var(--brown-900);
  color: var(--cream);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-soft);
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

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

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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