:root {
  color-scheme: light;
  --ink: #1f2522;
  --muted: #68716b;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: #ded8cd;
  --olive: #556b54;
  --copper: #b46a3c;
  --charcoal: #171a18;
  --stone: #d8d2c5;
  --mist: #eef0e8;
  --shadow: 0 24px 60px rgba(31, 37, 34, 0.16);
  --font-body: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(31, 37, 34, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: opacity 0.2s ease;
  box-shadow: none;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 56px;
  max-width: 320px;
  display: block;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
  mix-blend-mode: multiply;
  filter: contrast(1.04);
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(10px, 1.4vw, 22px);
  color: currentColor;
  font-size: clamp(0.76rem, 0.68rem + 0.45vw, 0.84rem);
  font-weight: 650;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.language-switch button,
.nav-language button {
  width: 38px;
  height: 30px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-language {
  display: none;
}

.site-header:not(.is-scrolled) .language-switch button.is-active {
  background: #fff;
  color: var(--charcoal);
}

.site-header.is-scrolled .language-switch button.is-active,
.nav-language button.is-active {
  background: var(--charcoal);
  color: var(--paper);
}

.menu-toggle {
  justify-self: end;
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero-media {
  background-image: url("wallpaper.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  background-color: #171a18;
  overflow: hidden;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.hero-media::before {
  z-index: 0;
  background:
    repeating-linear-gradient(
      35deg,
      rgba(183, 120, 76, 0.12) 0 2px,
      transparent 2px 18px
    ),
    repeating-linear-gradient(
      -35deg,
      rgba(205, 141, 94, 0.09) 0 1px,
      transparent 1px 22px
    );
  display: none;
}

.hero-media::after {
  z-index: 1;
  background:
    radial-gradient(circle at 22% 40%, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 7px),
    radial-gradient(circle at 68% 58%, rgba(255, 241, 219, 0.26) 0 2px, transparent 2px 8px);
  background-size: 170px 170px, 210px 210px;
  display: none;
}

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: auto;
  height: 100%;
  max-width: 44%;
  object-fit: contain;
  object-position: right top;
  transform: none;
  opacity: 0.96;
  filter: brightness(1.12) contrast(1.06);
  z-index: 2;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.62) 0%, rgba(18, 14, 12, 0.32) 34%, rgba(18, 14, 12, 0.05) 72%),
    linear-gradient(180deg, rgba(18, 14, 12, 0.38) 0%, rgba(18, 14, 12, 0.08) 28%, rgba(18, 14, 12, 0.42) 100%);
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: -10% -30%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(255, 205, 152, 0) 0%,
    rgba(255, 205, 152, 0.2) 42%,
    rgba(255, 205, 152, 0) 74%
  );
  mix-blend-mode: screen;
  animation: glow-sweep 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 76px);
  padding: 184px 0 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e2a978;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 20ch;
  font-size: 3.9rem;
  font-weight: 620;
  line-height: 1.06;
}

h2 {
  max-width: 18ch;
  font-size: 2.55rem;
  font-weight: 620;
  line-height: 1.12;
}

h3 {
  font-size: 1.02rem;
  font-weight: 710;
  line-height: 1.28;
}

.hero-copy {
  max-width: min(660px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: var(--olive);
  color: #fff;
}

.button-primary:hover {
  background: #455a45;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section-band {
  background: var(--surface);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 0;
}

.two-column,
.network-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.intro p:not(.eyebrow),
.network p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin-bottom: 36px;
}

.split-heading {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  max-width: none;
  align-items: end;
  gap: clamp(28px, 6vw, 86px);
}

.split-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.76;
}

.product-lines {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.product-lines-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.product-lines-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 0 0 auto;
}

.product-lines-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  flex: 1 1 220px;
  justify-content: flex-end;
}

.product-lines-list li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 650;
  background: var(--paper);
  color: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  padding: 22px 22px 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.trust-card h3 {
  font-size: 0.98rem;
  font-weight: 710;
  margin: 0 0 10px;
  line-height: 1.3;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.spaces {
  background: var(--paper);
}

.space-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(240px, auto);
  gap: 14px;
}

.space-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  padding: 24px;
  color: #fff;
  background: var(--charcoal);
}

.space-card::before,
.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.space-card::before {
  background: none;
}

.space-card::after {
  background: linear-gradient(180deg, rgba(18, 21, 19, 0.18), rgba(18, 21, 19, 0.82));
}

.space-card {
  background-image: var(--card-bg, none);
  background-size: cover;
  background-position: var(--card-pos, center);
}

.space-card > * {
  position: relative;
  z-index: 1;
}

.space-card span,
.inspiration-panel span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.space-card h3 {
  max-width: 16ch;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 620;
}

.space-card a {
  width: max-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.76);
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

.space-card-kitchen {
  grid-row: span 2;
  min-height: 534px;
}


.space-card-outdoor {
  grid-column: span 2;
}


.collection-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
}

.collection-feature {
  min-height: 466px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(21, 25, 23, 0.06), rgba(21, 25, 23, 0.84)),
    url("pics2/WhatsApp Image 2026-05-01 at 21.19.18 (3).jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.collection-kicker {
  margin-bottom: 14px;
  color: #e2a978;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-feature h3 {
  max-width: 18ch;
  font-size: 1.85rem;
  font-weight: 620;
  color: #fff;
}

.collection-feature p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.surface-card {
  min-height: 226px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background-size: cover;
  background-position: center;
}

.surface-card span {
  font-size: 1.15rem;
  font-weight: 720;
}

.surface-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.surface-card-vein {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(233, 226, 214, 0.76)),
    repeating-linear-gradient(115deg, transparent 0 26px, rgba(92, 93, 88, 0.2) 27px 29px, transparent 30px 64px);
}

.surface-card-mineral {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.36), transparent 24%),
    linear-gradient(135deg, #8b9088, #d8d8cf);
}

.surface-card-sand {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.52), transparent 22%),
    linear-gradient(135deg, #c8b497, #f0e8db);
}

.surface-card-ink {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #202523, #5c625b);
  color: #fff;
}

.surface-card-ink small {
  color: rgba(255, 255, 255, 0.68);
}

.inspiration {
  background: var(--paper);
}

.inspiration-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 22px;
}

.inspiration-filters button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.inspiration-filters button.is-active {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.inspiration-filters button:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

.inspiration-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(210px, auto));
  gap: 14px;
}

.inspiration-mosaic .inspiration-panel[hidden] {
  display: none;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: 14px;
}

.inspiration-panel {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 24px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.inspiration-panel h3 {
  max-width: 17ch;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 620;
}

.inspiration-mosaic .inspiration-large {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 440px;
}

.inspiration-mosaic .inspiration-stone {
  grid-column: 2;
  grid-row: 1;
}

.inspiration-mosaic .inspiration-bath {
  grid-column: 3;
  grid-row: 1;
}

.inspiration-mosaic .inspiration-dark {
  grid-column: 2;
  grid-row: 2;
}

.inspiration-mosaic .inspiration-outdoor {
  grid-column: 3;
  grid-row: 2;
}

.inspiration-large {
  grid-row: span 2;
  min-height: 474px;
  background:
    linear-gradient(180deg, rgba(19, 22, 20, 0.06), rgba(19, 22, 20, 0.72)),
    url("pics2/WhatsApp Image 2026-05-01 at 21.19.18 (4).jpeg");
  background-size: cover;
  background-position: center;
}

.inspiration-bath {
  background:
    linear-gradient(180deg, rgba(18, 21, 19, 0.08), rgba(18, 21, 19, 0.72)),
    url("pics/WhatsApp Image 2026-05-01 at 20.16.02.jpeg");
  background-size: cover;
  background-position: center;
}

.inspiration-outdoor {
  background:
    linear-gradient(180deg, rgba(12, 14, 13, 0.1), rgba(12, 14, 13, 0.76)),
    url("pics/WhatsApp Image 2026-05-01 at 20.16.03 (1).jpeg");
  background-size: cover;
  background-position: center;
}

.inspiration-stone {
  background:
    linear-gradient(180deg, rgba(12, 14, 13, 0.1), rgba(12, 14, 13, 0.72)),
    url("pics/WhatsApp Image 2026-05-01 at 20.17.28 (2).jpeg");
  background-size: cover;
  background-position: center;
}

.inspiration-dark {
  background:
    linear-gradient(180deg, rgba(12, 14, 13, 0.08), rgba(12, 14, 13, 0.76)),
    url("pics/WhatsApp Image 2026-05-01 at 20.17.29 (6).jpeg");
  background-size: cover;
  background-position: center top;
}

.project-slider {
  background: var(--surface);
}

.gallery-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 72ch;
}

.gallery-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #f5f2eb;
}

.gallery-viewport {
  position: relative;
  min-height: clamp(260px, 42vw, 520px);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: none;
  transition: opacity 1.2s ease;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: none;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(12, 14, 13, 0.42);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.gallery-nav.prev {
  left: 14px;
}

.gallery-nav.next {
  right: 14px;
}

.gallery-dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.gallery-dot.is-active {
  background: #fff;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.material-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(85, 107, 84, 0.08), transparent 44%),
    var(--surface);
}

.material-chip {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: #e9dfd3;
  color: var(--copper);
  font-weight: 720;
}

.material-card p,
.timeline p,
.network-panel span {
  color: var(--muted);
  line-height: 1.65;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 250px;
  padding: 26px;
  background: var(--surface);
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  font-weight: 720;
}

.network {
  background: #eef0e8;
}

.network-panel {
  display: grid;
  gap: 12px;
}

.network-panel div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-left: 4px solid var(--olive);
  background: rgba(255, 255, 255, 0.62);
}

.network-panel strong {
  font-size: 1.18rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-form label,
.contact-form label span {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 680;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbc4b8;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

.contact-form textarea,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-weight: 680;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(85, 107, 84, 0.16);
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(0, 2fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.footer-mark {
  display: block;
  color: #fff;
  font-weight: 720;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.footer-tagline {
  margin: 0;
  max-width: 40ch;
  line-height: 1.65;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 32px);
}

.footer-links strong {
  display: block;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 720;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.92rem;
  opacity: 0.88;
  transition: opacity 150ms ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-phone {
  display: block;
  padding: 5px 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  opacity: 0.9;
  transition: opacity 150ms ease;
}

.footer-phone:hover {
  opacity: 1;
}

.footer-mail,
.footer-web {
  display: block;
  padding: 4px 0;
  font-size: 0.88rem;
  color: inherit;
  opacity: 0.65;
  text-decoration: none;
  transition: opacity 150ms ease;
  word-break: break-all;
}

.footer-mail:hover,
.footer-web:hover {
  opacity: 1;
}

.footer-address {
  margin-top: 10px;
  padding: 5px 0;
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-map-link {
  opacity: 0.65;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
  transition: opacity 150ms ease;
}

.footer-map-link:hover {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.footer-base {
  margin: 0;
  padding: 20px clamp(18px, 5vw, 64px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer-logo-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 6px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow-x: auto;
}

.footer-logo-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: max-content;
}

.footer-logo-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    display: grid;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-language {
    display: none;
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-content {
    padding-top: 140px;
  }

  h1 {
    max-width: 18ch;
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .two-column,
  .network-layout,
  .contact-layout,
  .split-heading,
  .collection-layout {
    grid-template-columns: 1fr;
  }

  .material-grid,
  .timeline,
  .surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .space-grid,
  .inspiration-grid,
  .inspiration-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inspiration-mosaic .inspiration-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 300px;
  }

  .inspiration-mosaic .inspiration-stone,
  .inspiration-mosaic .inspiration-bath,
  .inspiration-mosaic .inspiration-dark,
  .inspiration-mosaic .inspiration-outdoor {
    grid-column: auto;
    grid-row: auto;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

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

  .footer-logo-band {
    padding-bottom: 18px;
  }

  .product-lines-list {
    justify-content: flex-start;
  }

  .space-card-kitchen,
  .inspiration-large {
    grid-row: auto;
    min-height: 300px;
  }

  .space-card-outdoor {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 14px 16px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand-logo {
    width: auto;
    height: 46px;
    max-width: 260px;
  }

  .brand small {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .nav-language {
    display: inline-flex;
    gap: 4px;
    width: max-content;
    margin-top: 8px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
  }

  .menu-toggle,
  .site-header > button {
    position: fixed;
    top: 14px;
    right: auto;
    left: calc(100dvw - 58px);
    z-index: 80;
    display: grid !important;
    background: rgba(12, 14, 13, 0.22);
    backdrop-filter: blur(8px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 14, 13, 0.88), rgba(12, 14, 13, 0.5)),
      linear-gradient(180deg, rgba(12, 14, 13, 0.55), rgba(12, 14, 13, 0.74));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 148px 0 240px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    max-width: 15ch;
    font-size: 2.35rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.82rem;
  }

  h3 {
    font-size: 1rem;
  }

  .section-inner {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .material-grid,
  .timeline,
  .contact-form,
  .space-grid,
  .surface-grid,
  .inspiration-grid,
  .inspiration-mosaic {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo-list span {
    font-size: 0.8rem;
    min-height: 30px;
  }

  .space-card,
  .space-card-kitchen,
  .space-card-outdoor,
  .collection-feature,
  .inspiration-large {
    grid-column: auto;
    min-height: 260px;
  }

  .material-card,
  .timeline article {
    min-height: 220px;
  }
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */

/* -- Keyframes -------------------------------- */
@keyframes wipe-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

@keyframes global-pan {
  from { transform: translate3d(-20px, 14px, 0) scale(1); }
  to   { transform: translate3d(120px, -70px, 0) scale(1.05); }
}

@keyframes global-pulse {
  0%, 100% { opacity: 0.58; transform: scale(1); filter: brightness(1); }
  50% { opacity: 0.9; transform: scale(1.09); filter: brightness(1.18); }
}

@keyframes glow-sweep {
  0%, 100% { transform: translateX(-28%) skewX(-10deg); opacity: 0.35; }
  50% { transform: translateX(24%) skewX(-10deg); opacity: 1; }
}

/* -- Hero: sayfa açılışında staggered reveal -- */

.hero-content .eyebrow {
  animation: wipe-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-content h1 {
  animation: wipe-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-content .hero-copy {
  animation: wipe-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.hero-content .hero-actions {
  animation: wipe-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

/* -- Scroll reveal: tekil elementler ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* -- Scroll reveal: grid çocukları stagger ---- */
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }

/* -- Kart hover: görsel zoom ----------------- */
.space-card::before {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.space-card:hover::before {
  transform: scale(1.08);
}

/* -- İlham paneli hover: yukarı kalk --------- */
.inspiration-panel {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.inspiration-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(31, 37, 34, 0.22);
}

/* -- Trust kart hover: hafif kalk ------------ */
.trust-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 37, 34, 0.13);
}

/* -- Buton micro-interaction ----------------- */
.button {
  transition: transform 0.2s ease, background 0.25s ease,
              color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.button:hover  { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

/* -- Lightbox --------------------------------- */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lb-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.lb-img {
  width: min(92vw, 1280px);
  height: min(88vh, 900px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 6px;
  transform: scale(0.88);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lb-overlay.is-open .lb-img {
  transform: scale(1);
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.lb-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.22);
}

/* Tıklanabilir kartlara zoom imleci */
.space-card,
.inspiration-panel {
  cursor: zoom-in;
}

/* -- Hareket azaltma (erişilebilirlik) -------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
