:root {
  --ink: #1c2a24;
  --ink-soft: #3d4f46;
  --mist: #e7efe9;
  --foam: #f4f8f5;
  --sage: #6f8f7a;
  --sage-deep: #3f5f4c;
  --leaf: #2f6b4f;
  --sand: #d8cfc0;
  --line: rgba(28, 42, 36, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(28, 42, 36, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.site-page[hidden] {
  display: none !important;
}

.site-page.is-active {
  display: block;
}

.page-section {
  min-height: calc(100vh - 8rem);
  padding-top: clamp(5.5rem, 10vw, 7rem);
}

.nav a.is-current {
  color: var(--sage-deep);
}

.nav a.is-current::after {
  transform: scaleX(1);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(111, 143, 122, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(216, 207, 192, 0.35), transparent 50%),
    linear-gradient(180deg, #eef4f0 0%, #f4f8f5 40%, #ebe6db 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='none' stroke='%233f5f4c' stroke-opacity='0.06' d='M0 60h120M60 0v120'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem clamp(0.85rem, 3vw, 3rem);
  padding-top: max(0.75rem, env(safe-area-inset-top));
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 248, 245, 0.88);
  backdrop-filter: blur(10px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.lang-switch select,
.dealer-login-link,
.cart-toggle,
.header-cta,
.menu-toggle {
  min-height: 2.4rem;
  border: 1px solid rgba(28, 42, 36, 0.14);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    color 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.lang-switch select {
  min-width: 6.75rem;
  max-width: 9.5rem;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%233d4f46' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  padding-right: 1.45rem;
}

.lang-switch select:hover,
.dealer-login-link:hover,
.cart-toggle:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(63, 95, 76, 0.45);
  color: var(--sage-deep);
}

.lang-switch select:focus {
  outline: 2px solid rgba(111, 143, 122, 0.35);
  outline-offset: 2px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  min-height: 2.4rem;
  padding: 0.45rem;
  cursor: pointer;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(63, 95, 76, 0.45);
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgba(12, 18, 15, 0.4);
}

.nav-backdrop[hidden] {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html[dir="rtl"] .nav a::after {
  left: auto;
  right: 0;
  transform-origin: right;
}

html[dir="rtl"] .timeline {
  border-left: 0;
  border-right: 1px solid var(--line);
}

html[dir="rtl"] .timeline li {
  padding: 1.1rem 1.5rem 1.1rem 0;
}

html[dir="rtl"] .timeline li::before {
  left: auto;
  right: -5px;
}

html[dir="rtl"] .about-points li {
  padding-left: 0;
  padding-right: 1.1rem;
}

html[dir="rtl"] .about-points li::before {
  left: auto;
  right: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-width: 0;
}

.nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.nav.is-open {
  display: flex;
  position: fixed;
  top: calc(3.6rem + env(safe-area-inset-top));
  left: 0.75rem;
  right: 0.75rem;
  z-index: 19;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem;
  background: rgba(244, 248, 245, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav.is-open a {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.nav.is-open a:last-child {
  border-bottom: 0;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.05rem;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(63, 95, 76, 0.18);
}

.header-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(28, 42, 36, 0.2);
}

.dealer-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.cart-toggle-label {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.4s var(--ease), transform 8s linear;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 18, 16, 0.18) 0%, rgba(12, 18, 16, 0.22) 40%, rgba(12, 18, 16, 0.48) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 3rem));
  margin-inline: auto;
  padding: clamp(5.5rem, 12vh, 7rem) 0 clamp(4rem, 10vh, 6rem);
  text-align: center;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 4px 28px rgba(0, 0, 0, 0.45);
}

.hero-eyebrow {
  margin: 0 0 1rem;
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

.hero h1 {
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  max-width: 16ch;
  color: #fff;
}

.hero-lead {
  margin: 0 auto 1.75rem;
  max-width: 42ch;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 400;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-actions .btn-primary {
  background: var(--white);
  color: var(--ink);
  border: 0;
  min-width: 12rem;
}

.hero-actions .btn-primary:hover {
  background: var(--mist);
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 2;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--mist);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section-intro {
  width: min(640px, 100%);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-intro h2,
.calc-copy h2,
.closing h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 550;
  line-height: 1.1;
}

.section-intro p,
.calc-copy p,
.closing p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
}

.plans,
.compare,
.calculator,
.schedule,
.terms,
.closing {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.plan-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.plan:hover,
.plan.is-selected {
  transform: translateY(-4px);
  border-color: rgba(63, 95, 76, 0.35);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.plan-featured {
  background: linear-gradient(160deg, rgba(63, 95, 76, 0.1), rgba(255, 255, 255, 0.75));
  border-color: rgba(63, 95, 76, 0.28);
}

.plan-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.plan h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
}

.plan-tag {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.plan-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 300;
}

.plan-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin: 0.25rem 0 0;
}

.plan-facts div {
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.plan-facts dt {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
}

.plan-facts dd {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
  font-weight: 500;
}

.plan-select {
  margin-top: auto;
  width: 100%;
  min-height: 2.7rem;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.plan-select:hover,
.plan.is-selected .plan-select {
  background: var(--ink);
  color: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

thead th {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(231, 239, 233, 0.7);
}

tbody th {
  font-weight: 500;
}

.row-featured {
  background: rgba(63, 95, 76, 0.08);
}

.calculator {
  background:
    linear-gradient(135deg, rgba(63, 95, 76, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.4);
}

.calc-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.calc-form {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field > span,
.field legend {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.field input[type="number"] {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--foam);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field input[type="number"]:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(111, 143, 122, 0.2);
}

.field-radios {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radio-row label {
  flex: 1 1 calc(50% - 0.5rem);
  justify-content: center;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--foam);
  cursor: pointer;
  font-size: 0.92rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.radio-row label:has(input:checked) {
  border-color: var(--sage-deep);
  background: rgba(63, 95, 76, 0.1);
}

.radio-row input {
  accent-color: var(--leaf);
}

.calc-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.calc-result-simple {
  grid-template-columns: 1fr 1fr;
}

.calc-result span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
}

.calc-result strong {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
}

.calc-hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.invoice-block {
  gap: 0.85rem;
}

.invoice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.invoice-grid .field-full {
  grid-column: 1 / -1;
}

.invoice-grid textarea,
.invoice-grid input[type="text"],
.invoice-grid input[type="tel"],
.invoice-grid input[type="email"],
.field textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--foam);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.invoice-grid textarea,
.field textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.calc-submit {
  width: 100%;
  justify-content: center;
}

.calc-order-error {
  margin: 0;
  color: #8a2f2f;
  font-size: 0.9rem;
}

.dealer {
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad);
}

.radio-row-methods label {
  flex: 1 1 calc(33.333% - 0.5rem);
  min-width: 7.5rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-left: 1px solid var(--line);
}

.timeline li {
  position: relative;
  padding: 1.1rem 0 1.1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(-8px);
  animation: slide-in 0.6s var(--ease) forwards;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 1.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 0 0 4px var(--foam);
}

.timeline .when {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.timeline .what {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  font-size: 1.05rem;
}

.timeline .amount {
  font-weight: 500;
}

.terms-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.terms-list li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.terms-list h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.terms-list p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 62ch;
}

.closing {
  padding-bottom: clamp(5rem, 12vw, 8rem);
}

.closing-inner {
  width: min(640px, 100%);
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.closing .brand-mark {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  animation: none;
  opacity: 1;
}

.closing .btn-primary {
  margin-top: 1.5rem;
  background: var(--ink);
  color: var(--white);
}

.closing .btn-primary:hover {
  background: var(--sage-deep);
}

.site-footer {
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.social-follow {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  margin: 0.5rem 0 1.75rem;
  text-align: center;
}

.social-follow-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500;
  color: var(--ink);
}

.social-links {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.social-link:hover {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
}

.social-link.is-pending {
  opacity: 0.7;
  cursor: default;
}

.social-link.is-pending:hover {
  border-color: var(--line);
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

/* —— Slider (hero background) —— */
.slider-section.slider-hero {
  padding: clamp(4.5rem, 9vw, 5.5rem) clamp(1.5rem, 8vw, 5rem) 0;
}

.slider-hero .slider {
  position: relative;
  width: 100%;
  max-width: min(1100px, 100%);
  margin-inline: auto;
}

.slider-hero .slider-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f1a15;
  direction: ltr;
  aspect-ratio: 21 / 9;
  height: clamp(240px, 42vh, 420px);
  max-height: none;
}

.slider-hero .slide-caption {
  display: none;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--white);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 26, 21, 0.15) 0%, rgba(15, 26, 21, 0.55) 55%, rgba(15, 26, 21, 0.82) 100%);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.slider-overlay .brand-mark {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
  opacity: 1;
  animation: none;
}

.slider-overlay h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 500;
}

.slider-overlay p {
  margin: 0;
  max-width: 42ch;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.slider-hero .slider-controls {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  margin: 0;
  background: rgba(15, 26, 21, 0.35);
  padding: 0.35rem 0.5rem;
  gap: 0.5rem;
}

.slider-hero .slider-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.slider-hero .slider-dot {
  background: rgba(255, 255, 255, 0.35);
}

.slider-hero .slider-dot.is-active {
  background: #fff;
}

.slider {
  position: relative;
  width: min(1080px, 100%);
  margin-inline: auto;
}

.slider-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f1a15;
  direction: ltr;
  aspect-ratio: 16 / 9;
  max-height: min(380px, 46vw);
}

html[dir="rtl"] .slide-caption {
  direction: rtl;
  text-align: right;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  min-height: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}

.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.15rem;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(15, 26, 21, 0.78));
}

.slide-caption h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 600;
}

.slide-caption p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.slider-btn {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.slider-btn:hover {
  background: var(--white);
  border-color: var(--sage-deep);
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
}

.slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(28, 42, 36, 0.25);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--sage-deep);
}

/* —— Gallery —— */
.gallery {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.gallery-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.25rem;
}

.gallery-filters .filter-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.filter-btn {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-card.is-hidden {
  display: none;
}

.gallery-item {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
  color: inherit;
}

.gallery-frame {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: #dfe8e2;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.gallery-item:hover .gallery-frame img,
.gallery-item:focus-visible .gallery-frame img {
  transform: scale(1.12);
}

.product-meta {
  display: grid;
  gap: 0.35rem;
}

.gallery-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.product-price {
  font-size: 1.05rem;
  font-weight: 500;
}

.add-cart {
  width: 100%;
  min-height: 2.4rem;
  margin-top: 0.15rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.add-cart:hover {
  background: var(--ink);
  color: var(--white);
}

.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 500;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 0.35rem;
  background: var(--sage-deep);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cart-badge[hidden] {
  display: none;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(12, 18, 15, 0.45);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: min(380px, 92vw);
  height: 100%;
  padding: 1.25rem;
  background: var(--foam);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 40px rgba(28, 42, 36, 0.12);
}

html[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  border-left: 0;
  border-right: 1px solid var(--line);
  box-shadow: 12px 0 40px rgba(28, 42, 36, 0.12);
}

.cart-drawer[hidden],
.cart-backdrop[hidden] {
  display: none;
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-drawer-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.cart-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.cart-list {
  flex: 1;
  overflow: auto;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.cart-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.cart-row img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.cart-row-info {
  display: grid;
  gap: 0.2rem;
}

.cart-row-info strong {
  font-size: 0.92rem;
  font-weight: 500;
}

.cart-row-info span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.cart-row-actions {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.cart-qty button {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--sage-deep);
  cursor: pointer;
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-empty {
  margin: 1rem 0;
  color: var(--ink-soft);
  font-weight: 300;
}

.cart-empty[hidden],
.cart-footer[hidden] {
  display: none;
}

.cart-footer {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.05rem;
}

.cart-totals {
  display: grid;
  gap: 0.35rem;
}

.cart-total-muted {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.cart-total-muted strong {
  font-size: 1.05rem;
}

.cart-total-grand {
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.cart-total-row strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.whatsapp-fab {
  position: fixed !important;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 9999 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem 0.85rem 0.95rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(20, 40, 30, 0.28);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  pointer-events: auto;
}

.whatsapp-fab:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.whatsapp-fab svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

@media (max-width: 640px) {
  .whatsapp-fab span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .whatsapp-fab {
    width: 3.6rem;
    height: 3.6rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

.cart-checkout {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: 0;
}

.cart-clear {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  z-index: 60;
  transform: translateX(-50%);
  padding: 0.7rem 1.1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.cart-toast.is-visible {
  opacity: 1;
}

body.cart-open {
  overflow: hidden;
}

/* —— About / Contact / KVKK —— */
.about,
.contact,
.kvkk {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.about {
  background: rgba(255, 255, 255, 0.35);
}

.about-body {
  width: min(720px, 100%);
}

.about-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}

.about-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.about-points li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--sage-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
}

.contact-card a:hover {
  color: var(--sage-deep);
}

.contact-form {
  display: grid;
  gap: 1rem;
  width: min(640px, 100%);
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.contact-form textarea,
.contact-form input[type="text"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--foam);
  color: var(--ink);
  outline: none;
  resize: vertical;
}

.contact-form textarea:focus,
.contact-form input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(111, 143, 122, 0.2);
}

.contact-submit {
  justify-self: start;
  background: var(--ink);
  color: var(--white);
  border: 0;
}

.contact-submit:hover {
  background: var(--sage-deep);
}

.contact-note {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.92rem;
  color: var(--sage-deep);
}

.kvkk-body {
  width: min(760px, 100%);
}

.kvkk-body h3 {
  margin: 1.5rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.kvkk-body h3:first-child {
  margin-top: 0;
}

.kvkk-body p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
}

.kvkk-body a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(12, 18, 15, 0.92);
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  max-height: 78vh;
  width: 100%;
  grid-row: 2;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 68vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 300;
  padding: 0 0.5rem;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s var(--ease);
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top));
  right: 0.75rem;
  z-index: 2;
}

html[dir="rtl"] .lightbox-close {
  right: auto;
  left: 0.75rem;
}

.lightbox-prev {
  grid-row: 3;
  justify-self: start;
}

.lightbox-next {
  grid-row: 3;
  justify-self: end;
  margin-top: -2.75rem;
}

body.lightbox-open,
body.nav-open {
  overflow: hidden;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 719px) {
  .calc-result strong {
    font-size: 1.3rem;
  }

  .cart-drawer {
    width: min(100vw, 100%);
  }

  .cart-row {
    grid-template-columns: 56px 1fr;
  }

  .cart-row-actions {
    grid-column: 1 / -1;
    justify-items: start;
    grid-auto-flow: column;
    justify-content: space-between;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .invoice-grid {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    margin-inline: -0.25rem;
  }

  .slider-dots {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 70%;
  }
}

@media (min-width: 720px) {
  .menu-toggle,
  .nav-backdrop {
    display: none !important;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav.is-open {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav.is-open a,
  .nav a {
    padding: 0;
    border-bottom: 0;
    font-size: 0.92rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .terms-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .gallery-filters {
    flex-wrap: wrap;
    overflow: visible;
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .field-full,
  .contact-submit,
  .contact-note {
    grid-column: 1 / -1;
  }

  .radio-row label {
    flex: 0 0 auto;
  }

  .lightbox {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;
    padding: 1rem;
  }

  .lightbox-figure {
    grid-row: auto;
    max-height: 92vh;
  }

  .lightbox-figure img {
    max-width: min(96vw, 1100px);
    max-height: 82vh;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: auto;
    justify-self: auto;
    margin-top: 0;
  }
}

@media (min-width: 1080px) {
  .plan-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .plan {
    min-height: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .brand-mark,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .timeline li,
  .slider-track,
  .gallery-frame img {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
