:root {
  --ink: #111714;
  --ink-soft: #39423e;
  --paper: #f3efe6;
  --paper-strong: #fbf8f1;
  --stone: #d8d0c2;
  --stone-deep: #a99d8d;
  --copper: #9f704c;
  --copper-bright: #d7b389;
  --sage: #2f473c;
  --blue: #6f8288;
  --mist: #e6ebe6;
  --white: #ffffff;

  /* Gölge ölçeği */
  --shadow-sm: 0 8px 24px rgba(17, 23, 20, 0.07);
  --shadow-md: 0 18px 44px rgba(17, 23, 20, 0.12);
  --shadow: 0 28px 72px rgba(17, 23, 20, 0.16);
  --shadow-lg: 0 38px 96px rgba(17, 23, 20, 0.24);

  /* Yarıçap ölçeği */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Boşluk ölçeği */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --section-y: clamp(4rem, 8vw, 7rem);

  /* Geçişler */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms var(--ease);
  --t-med: 320ms var(--ease);
  --t-slow: 600ms var(--ease);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Klavye erişilebilirliği */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 50%;
  padding: 0.7rem 1.2rem;
  color: var(--paper-strong);
  background: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transform: translate(-50%, -120%);
  transition: transform var(--t-fast);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--paper-strong);
  background: var(--copper);
}

.shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow {
  max-width: 860px;
}

.center {
  text-align: center;
}

.site-nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-nav.is-solid,
.site-nav.on-light {
  background: rgba(244, 241, 234, 0.94);
  border-bottom: 1px solid rgba(29, 36, 35, 0.1);
  box-shadow: 0 10px 34px rgba(29, 36, 35, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 84px;
  width: auto;
}

/* Varsayılan (açık/katı nav): renkli logo; koyu hero'da: krem logo */
.brand-logo.light {
  display: none;
}

.site-nav:not(.is-solid):not(.on-light) .brand-logo.dark {
  display: none;
}

.site-nav:not(.is-solid):not(.on-light) .brand-logo.light {
  display: block;
}

.footer-logo {
  display: block;
  height: 96px;
  width: auto;
  margin-bottom: 1rem;
}

.brand strong {
  color: var(--paper-strong);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
}

.brand span {
  color: var(--copper-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

.site-nav.is-solid .brand strong,
.site-nav.on-light .brand strong {
  color: var(--ink);
}

.site-nav.is-solid .brand span,
.site-nav.on-light .brand span {
  color: var(--copper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  position: relative;
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--t-fast);
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width var(--t-fast);
  content: "";
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).is-active::after {
  width: 100%;
}

.nav-cta {
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--copper-bright);
  border-color: var(--copper-bright);
}

.site-nav.is-solid .nav-links a,
.site-nav.on-light .nav-links a {
  color: var(--ink-soft);
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--copper-bright);
}

.site-nav.is-solid .nav-links a.is-active,
.site-nav.on-light .nav-links a.is-active,
.site-nav.is-solid .nav-links a:hover,
.site-nav.on-light .nav-links a:hover {
  color: var(--copper);
}

.nav-cta {
  border: 1px solid rgba(255, 250, 240, 0.5);
  padding: 0.66rem 1.1rem;
}

.site-nav.is-solid .nav-cta,
.site-nav.on-light .nav-cta {
  border-color: rgba(29, 36, 35, 0.22);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 240, 0.45);
  border-radius: var(--radius);
  color: var(--paper-strong);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle {
  gap: 5px;
  flex-direction: column;
}

.site-nav.is-solid .nav-toggle,
.site-nav.on-light .nav-toggle {
  color: var(--ink);
  border-color: rgba(29, 36, 35, 0.18);
}

.mobile-panel {
  position: fixed;
  z-index: 99;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 6rem 2rem 3rem;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.nav-open .mobile-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-panel nav {
  display: grid;
  gap: 1.2rem;
  text-align: center;
}

.mobile-panel a {
  color: var(--paper-strong);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 620px;
  height: 84vh;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--ink);
}

.hero picture,
.hero > img,
.page-hero > img,
.project-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 22, 21, 0.78), rgba(17, 22, 21, 0.38), rgba(17, 22, 21, 0.12)),
    linear-gradient(0deg, rgba(17, 22, 21, 0.62), rgba(17, 22, 21, 0.02) 48%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 5.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  content: "";
}

.eyebrow.light {
  color: var(--copper-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  letter-spacing: -0.01em;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.5rem;
  color: var(--ink);
  background: var(--paper-strong);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast),
    border-color var(--t-fast), box-shadow var(--t-fast);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  color: var(--ink);
  background: var(--paper-strong);
}

.btn.primary:hover {
  background: var(--copper-bright);
}

.btn.ghost {
  color: var(--ink);
  border-color: rgba(29, 36, 35, 0.24);
  background: transparent;
}

.btn.ghost.light {
  color: var(--paper-strong);
  border-color: rgba(255, 250, 240, 0.4);
}

.btn.dark {
  color: var(--paper-strong);
  background: var(--ink);
}

.btn.dark:hover {
  background: var(--copper);
}

.hero-meter {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  transform: translateX(-50%);
}

.hero-meter i {
  display: block;
  width: 1px;
  height: 34px;
  background: currentColor;
  animation: cue 2.2s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% {
    opacity: 0.9;
    transform: translateY(0);
  }
  50% {
    opacity: 0.36;
    transform: translateY(8px);
  }
}

.intro-band,
.section,
.split-section,
.cta-band {
  padding: var(--section-y) 0;
}

.intro-band h2,
.section h2,
.copy-block h2,
.plain-header h1,
.page-hero h1,
.project-hero h1,
.cta-inner h2 {
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  letter-spacing: -0.01em;
}

.intro-band h2 {
  color: var(--ink);
  font-weight: 500;
}

.stats-band {
  padding: 4.5rem 0;
  color: var(--paper-strong);
  background: var(--ink);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--paper-strong);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat span {
  display: block;
  margin-top: 0.9rem;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section.alt {
  background: var(--mist);
}

.section.dark {
  color: var(--paper-strong);
  background: var(--ink);
}

.section.compact {
  padding-top: 2.5rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-head h2,
.copy-block h2 {
  margin-bottom: 0;
}

.section-head > p {
  max-width: 460px;
  color: var(--ink-soft);
}

.dark .section-head > p,
.section.dark p {
  color: rgba(255, 250, 240, 0.66);
}

.center-head {
  justify-content: center;
  text-align: center;
}

.finder {
  overflow: hidden;
  border: 1px solid rgba(29, 36, 35, 0.12);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.finder-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(29, 36, 35, 0.12);
}

.finder-tabs button,
.filters button {
  min-height: 50px;
  border: 0;
  border-right: 1px solid rgba(29, 36, 35, 0.12);
  color: var(--ink-soft);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.finder-tabs button:last-child {
  border-right: 0;
}

.finder-tabs button.is-active,
.filters button.is-active {
  color: var(--paper-strong);
  background: var(--ink);
}

.finder-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
}

.finder-body > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.2rem;
}

.finder-body h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.finder-body p {
  color: var(--ink-soft);
}

.finder-body img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: opacity var(--t-med);
}

.finder-body img.is-swapping {
  opacity: 0;
}

.finder-body > div > * {
  transition: opacity var(--t-med), transform var(--t-med);
}

.finder-body.is-swapping > div > * {
  opacity: 0;
  transform: translateY(8px);
}

.finder-tabs button {
  transition: color var(--t-fast), background var(--t-fast);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  color: var(--copper);
  font-weight: 800;
  text-decoration: none;
  transition: gap var(--t-fast), color var(--t-fast);
}

.text-link::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform var(--t-fast);
}

.text-link:hover {
  gap: 0.75rem;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.project-grid.wide {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  position: relative;
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.card-link {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-med), transform var(--t-med);
}

.project-card:hover .project-media {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.project-card:hover .project-media img {
  transform: scale(1.06);
}

.project-card h3 {
  transition: color var(--t-fast);
}

.project-card:hover h3 {
  color: var(--copper);
}

.project-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(17, 22, 21, 0.68), rgba(17, 22, 21, 0));
  content: "";
}

.badge-row {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  pointer-events: none;
}

.badge {
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
}

.badge.status {
  color: var(--paper-strong);
  background: var(--copper);
}

.project-bottom {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 250, 240, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
  pointer-events: none;
}

.project-card h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.65rem;
}

.project-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: center;
}

.text-first {
  align-items: start;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-main {
  width: 78%;
  height: 580px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  height: 290px;
  border: 8px solid var(--paper);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.copy-block p,
.long-copy p,
.info-panel p {
  color: var(--ink-soft);
}

.mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone);
}

.mini-specs span {
  min-width: 160px;
}

.mini-specs strong {
  display: block;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.14);
}

.process-item {
  padding: 2rem;
  background: var(--ink);
}

.process-item span,
.feature-box span {
  color: var(--copper-bright);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.process-item h3 {
  margin: 1.2rem 0 0.7rem;
  font-size: 1.55rem;
}

.docs-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.doc-list {
  display: grid;
  border-top: 1px solid rgba(29, 36, 35, 0.16);
}

.dark .doc-list {
  border-color: rgba(255, 250, 240, 0.16);
}

.doc-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(29, 36, 35, 0.16);
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.doc-list a::after {
  color: var(--copper);
  content: "→";
}

.dark .doc-list a {
  border-color: rgba(255, 250, 240, 0.16);
}

.cta-band {
  color: var(--paper-strong);
  background: linear-gradient(135deg, var(--sage), var(--blue));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.cta-inner p {
  color: rgba(255, 250, 240, 0.82);
}

.site-footer {
  padding: 5rem 0 2rem;
  color: var(--paper-strong);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
}

.footer-brand span,
.footer-title {
  color: var(--copper-bright);
  font-weight: 800;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 250, 240, 0.66);
}

.footer-grid a {
  display: block;
  margin-bottom: 0.6rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--copper-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.7rem;
  font-size: 0.86rem;
}

.page-hero,
.project-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--ink);
}

.page-hero-inner,
.project-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.plain-header {
  padding-top: 10rem;
  padding-bottom: 3.5rem;
}

.plain-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.plain-header h1 {
  max-width: 740px;
  margin-bottom: 0;
}

.plain-header p {
  max-width: 520px;
  color: var(--ink-soft);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(29, 36, 35, 0.14);
}

.filters button {
  border: 1px solid rgba(29, 36, 35, 0.15);
  border-radius: 999px;
  padding: 0 1.15rem;
}

.empty-state {
  display: none;
  padding: 4rem 0;
  color: var(--ink-soft);
  text-align: center;
}

.info-panel {
  padding: 3rem;
  border: 1px solid rgba(29, 36, 35, 0.12);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.two-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.timeline {
  max-width: 980px;
  margin: 0 auto;
}

.timeline article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  padding: 1.7rem 0;
  border-top: 1px solid rgba(29, 36, 35, 0.14);
}

.timeline strong {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.timeline h3 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  object-fit: cover;
}

.team-card h3 {
  margin: 1rem 0 0.2rem;
  font-size: 1.45rem;
}

.team-card p {
  color: rgba(255, 250, 240, 0.64);
}

.project-hero {
  min-height: 610px;
}

.back-link {
  width: fit-content;
  margin-bottom: 1.5rem;
  color: rgba(255, 250, 240, 0.82);
  font-weight: 800;
  text-decoration: none;
}

.back-link::before {
  margin-right: 0.4rem;
  content: "←";
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.meta-row span {
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
}

.meta-row strong {
  color: var(--copper-bright);
}

.spec-bar {
  padding: 2.5rem 0;
  color: var(--paper-strong);
  background: var(--ink);
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}

.spec-grid article {
  text-align: center;
}

.spec-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.spec-grid span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding-bottom: 6rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery .large {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery .tall {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery img:not(.large):not(.tall) {
  grid-column: span 2;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(29, 36, 35, 0.12);
  background: rgba(29, 36, 35, 0.12);
}

.feature-box {
  padding: 2rem;
  background: var(--paper-strong);
}

.feature-box h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.45rem;
}

.feature-box p {
  color: var(--ink-soft);
}

.plan-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 92px);
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(29, 36, 35, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(29, 36, 35, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29, 36, 35, 0.06) 1px, transparent 1px),
    var(--paper-strong);
  background-size: 46px 46px;
}

.room {
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 36, 35, 0.14);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(102, 129, 117, 0.16);
  font-weight: 800;
}

.living {
  grid-column: 1 / 5;
  grid-row: 1 / 4;
}

.kitchen {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
}

.master {
  grid-column: 1 / 3;
  grid-row: 4 / 6;
}

.bed {
  grid-column: 3 / 5;
  grid-row: 4 / 6;
}

.bath {
  grid-column: 5 / 7;
  grid-row: 3 / 5;
}

.balcony {
  grid-column: 5 / 7;
  grid-row: 5 / 6;
}

.process-detailed {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(29, 36, 35, 0.12);
  background: rgba(29, 36, 35, 0.12);
}

.process-detailed article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2.2rem;
  background: var(--paper-strong);
}

.process-detailed span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.process-detailed h2 {
  margin-bottom: 0.55rem;
  font-size: 2rem;
}

.process-detailed p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  padding: 3rem;
  border: 1px solid rgba(29, 36, 35, 0.12);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 2.2rem;
}

.contact-form form {
  display: grid;
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--stone-deep);
  border-radius: 0;
  padding: 0.8rem 0;
  color: var(--ink);
  background: transparent;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--copper);
}

textarea {
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: none;
}

.consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  padding: 0;
  border: 0;
  accent-color: var(--copper);
}

.consent a {
  color: var(--copper);
  font-weight: 700;
}

.success-message {
  display: none;
  padding: 2rem 0;
  text-align: center;
}

.success-message h3 {
  color: var(--copper);
  font-size: 2.2rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(29, 36, 35, 0.14);
}

.contact-row span {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-row strong {
  font-weight: 700;
}

.map-visual {
  position: relative;
  display: grid;
  min-height: 320px;
  margin-top: 2rem;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(29, 36, 35, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29, 36, 35, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #dce7e2, #c9d5dc);
  background-size: 48px 48px, 48px 48px, auto;
}

.map-visual::before {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 8px solid var(--copper);
  border-radius: 50%;
  background: var(--paper-strong);
  box-shadow: 0 12px 34px rgba(29, 36, 35, 0.28);
  content: "";
}

.map-visual span {
  position: relative;
  top: 48px;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  color: var(--paper-strong);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.14);
}

.office-card {
  padding: 2.2rem;
  background: var(--ink);
}

.office-card h2 {
  font-size: 1.7rem;
}

/* Proje karşılaştırma */
.compare-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(29, 36, 35, 0.18);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.compare-toggle::before {
  display: inline-flex;
  width: 1.05rem;
  height: 1.05rem;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
  line-height: 1;
  content: "+";
}

.compare-toggle:hover {
  color: var(--copper);
  border-color: var(--copper);
}

.compare-toggle.is-selected {
  color: var(--paper-strong);
  background: var(--copper);
  border-color: var(--copper);
}

.compare-toggle.is-selected::before {
  content: "✓";
}

/* Seçim tepsisi */
.compare-tray {
  position: fixed;
  z-index: 95;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: calc(100% - 2rem);
  padding: 0.7rem 0.7rem 0.7rem 1.4rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: var(--radius-pill);
  color: var(--paper-strong);
  background: rgba(29, 36, 35, 0.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  transform: translate(-50%, 160%);
  transition: transform var(--t-med);
}

.compare-tray.is-visible {
  transform: translate(-50%, 0);
}

.compare-tray-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 250, 240, 0.7);
}

.compare-tray-count strong {
  color: var(--copper-bright);
}

.compare-tray-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-tray button {
  min-height: 44px;
  padding: 0 1.15rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.compare-tray .clear {
  color: rgba(255, 250, 240, 0.72);
  background: transparent;
}

.compare-tray .clear:hover {
  color: var(--paper-strong);
}

.compare-tray .open {
  color: var(--ink);
  background: var(--copper-bright);
  transition: background var(--t-fast);
}

.compare-tray .open:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Karşılaştırma modalı */
.compare-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: none;
  padding: 1.5rem;
  place-items: center;
  background: rgba(17, 22, 21, 0.72);
  backdrop-filter: blur(6px);
}

.compare-modal.is-open {
  display: grid;
}

.compare-panel {
  width: 100%;
  max-width: 900px;
  max-height: 86vh;
  overflow: auto;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: var(--shadow-lg);
}

.compare-panel-head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid rgba(29, 36, 35, 0.12);
  background: var(--paper-strong);
}

.compare-panel-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

.compare-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 36, 35, 0.18);
  border-radius: 50%;
  background: transparent;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}

.compare-close:hover {
  color: var(--paper-strong);
  background: var(--ink);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(29, 36, 35, 0.1);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  position: sticky;
  top: 78px;
  background: var(--mist);
}

.compare-table thead img {
  width: 100%;
  height: 110px;
  margin-bottom: 0.7rem;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.compare-table thead strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.compare-table tbody th {
  width: 150px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table td {
  font-weight: 600;
}

/* Gerçek harita */
.map-embed {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Referanslar */
.ref-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ref-chip {
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(29, 36, 35, 0.14);
  border-radius: var(--radius-pill);
  background: var(--paper-strong);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.ref-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.ref-logo {
  display: grid;
  height: 92px;
  padding: 0.9rem 1rem;
  place-items: center;
  border: 1px solid rgba(29, 36, 35, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.ref-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter var(--t-fast), opacity var(--t-fast);
}

.ref-logo:hover img {
  filter: none;
  opacity: 1;
}

.ref-cols {
  columns: 3 260px;
  column-gap: 2.4rem;
}

.ref-city {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.ref-city h4 {
  margin: 0 0 0.5rem;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ref-city ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: none;
}

.ref-city li {
  position: relative;
  margin-bottom: 0.32rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.ref-city li::before {
  position: absolute;
  left: -1.1rem;
  color: var(--copper);
  content: "—";
}

/* Ürünler */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(29, 36, 35, 0.1);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-med), transform var(--t-med);
}

.product-card h3 {
  transition: color var(--t-fast);
}

.product-card:hover h3 {
  color: var(--copper);
}

/* Ürün detay sayfası */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--stone);
  box-shadow: var(--shadow);
}

.product-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail-info .product-brand {
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-info h1 {
  margin: 0.5rem 0 0.3rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.product-detail-info .product-type {
  margin-bottom: 1.3rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.pd-desc {
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.pd-cat-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.34rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--mist);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

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

.product-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  border-radius: var(--radius-pill);
  padding: 0.34rem 0.75rem;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  font-size: 0.72rem;
  font-weight: 800;
}

/* Kartta renk sayısı rozeti */
.product-colors {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
  color: var(--paper-strong);
  background: rgba(29, 36, 35, 0.82);
  backdrop-filter: blur(4px);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ---- Renk / desen kataloğu ---- */
.colors-count {
  align-self: center;
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1.1rem;
}

.swatch {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid rgba(29, 36, 35, 0.09);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.swatch:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.swatch img,
.swatch .swatch-chip {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* RAL gibi görselsiz kartelalarda düz renk bloğu */
.swatch .swatch-chip {
  box-shadow: inset 0 0 0 1px rgba(29, 36, 35, 0.12);
}

.colors-note {
  margin: -0.4rem 0 1.4rem;
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.6;
}

.swatch.no-img::before {
  content: "";
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--mist);
}

.swatch figcaption {
  padding: 0.6rem 0.7rem 0.7rem;
}

.swatch figcaption strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.swatch figcaption span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .swatch-grid { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 0.8rem; }
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem;
}

.product-brand {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0.35rem 0 0.15rem;
  font-size: 1.5rem;
}

.product-type {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-desc {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-specs {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(29, 36, 35, 0.12);
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(29, 36, 35, 0.1);
  font-size: 0.86rem;
}

.product-specs li span {
  color: var(--ink-soft);
}

.product-specs li strong {
  text-align: right;
  font-weight: 700;
}

.product-body .text-link {
  margin-top: auto;
}

/* Medya sayfası */
.media-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.media-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.media-head span {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.media-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.media-item:hover img {
  transform: scale(1.06);
}

.media-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.media-video {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  background: #0c100f;
  box-shadow: var(--shadow-sm);
}

.media-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0c100f;
}

/* Lightbox */
.lightbox {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: none;
  padding: 1.5rem;
  place-items: center;
  background: rgba(17, 22, 21, 0.9);
  backdrop-filter: blur(6px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox .lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--paper-strong);
  background: rgba(255, 250, 240, 0.16);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t-fast);
}

.lightbox .lb-close:hover {
  background: rgba(255, 250, 240, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Okuma ilerleme çubuğu */
.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--copper), var(--copper-bright));
  pointer-events: none;
}

/* Sabit mobil aksiyon çubuğu */
.mobile-cta {
  position: fixed;
  z-index: 90;
  inset: auto 0 0;
  display: none;
  gap: 1px;
  padding: 0.55rem;
  padding-bottom: max(0.55rem, env(safe-area-inset-bottom));
  background: rgba(29, 36, 35, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  transform: translateY(120%);
  transition: transform var(--t-med);
}

.mobile-cta.is-visible {
  transform: none;
}

.mobile-cta a {
  display: inline-flex;
  flex: 1;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius-sm);
  color: var(--paper-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta a.call {
  background: rgba(255, 250, 240, 0.12);
}

.mobile-cta a.wa {
  background: #1fa855;
}

.mobile-cta a.quote {
  color: var(--ink);
  background: var(--copper-bright);
}

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

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

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

@media (max-width: 1120px) {
  .project-grid,
  .project-grid.wide,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .process-grid,
  .feature-grid,
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section-head,
  .plain-header-row,
  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .split,
  .docs-layout,
  .finder-body,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .finder-body img {
    min-height: 320px;
  }

  .image-stack {
    min-height: 520px;
  }

  .image-main {
    width: 86%;
    height: 480px;
  }

  .image-float {
    height: 230px;
  }

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

  .gallery .large,
  .gallery .tall,
  .gallery img:not(.large):not(.tall) {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .shell {
    padding: 0 1.25rem;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-logo {
    height: 66px;
  }

  .nav-shell {
    min-height: 88px;
  }

  .hero {
    min-height: 560px;
    height: 80vh;
  }

  .hero-inner {
    justify-content: flex-end;
    padding-bottom: 5rem;
  }

  .intro-band,
  .section,
  .split-section,
  .cta-band {
    padding: 4.4rem 0;
  }

  .plain-header {
    padding-top: 8.5rem;
    padding-bottom: 2.4rem;
  }

  .project-grid,
  .project-grid.wide,
  .stats-grid,
  .process-grid,
  .feature-grid,
  .spec-grid,
  .team-grid,
  .two-cards,
  .office-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .finder-tabs {
    grid-template-columns: 1fr;
  }

  .finder-tabs button {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 36, 35, 0.12);
  }

  .finder-body > div,
  .contact-form,
  .info-panel {
    padding: 1.4rem;
  }

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

  .form-grid,
  .timeline article,
  .process-detailed article,
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .timeline strong,
  .process-detailed span {
    font-size: 2.2rem;
  }

  .image-stack {
    min-height: 440px;
  }

  .image-main {
    width: 100%;
    height: 410px;
  }

  .image-float {
    display: none;
  }

  .plan-visual {
    grid-template-rows: repeat(5, 68px);
    overflow-x: auto;
  }

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

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .compare-tray {
    bottom: 4.75rem;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-lg);
  }

  .compare-table thead th {
    top: 72px;
    min-width: 150px;
  }
}

/* ============================================================
   Premium redesign layer
============================================================ */
body {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.72), rgba(243, 239, 230, 0.96) 34rem),
    var(--paper);
}

.shell {
  max-width: 1320px;
}

.site-nav {
  border-top: 3px solid var(--copper);
}

.site-nav.is-solid,
.site-nav.on-light {
  background: rgba(251, 248, 241, 0.9);
  border-bottom-color: rgba(17, 23, 20, 0.08);
}

.brand strong,
.footer-brand strong {
  letter-spacing: 0.02em;
}

.nav-links {
  gap: 1.35rem;
}

.nav-links a {
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.nav-cta,
.btn,
.filters button,
.finder-tabs button {
  letter-spacing: 0.01em;
}

.hero {
  min-height: 680px;
  height: 86vh;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 24%, rgba(215, 179, 137, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(8, 13, 11, 0.86), rgba(8, 13, 11, 0.54) 42%, rgba(8, 13, 11, 0.18)),
    linear-gradient(0deg, rgba(8, 13, 11, 0.72), rgba(8, 13, 11, 0.06) 52%);
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(3.1rem, 6.8vw, 6.2rem);
}

.hero-copy {
  max-width: 680px;
  color: rgba(251, 248, 241, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.btn.primary {
  color: var(--ink);
  background: var(--copper-bright);
}

.btn.primary:hover {
  background: var(--paper-strong);
}

.btn.ghost.light:hover {
  color: var(--ink);
  background: var(--paper-strong);
  border-color: var(--paper-strong);
}

.eyebrow {
  letter-spacing: 0.16em;
}

.intro-band {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.intro-band h2 {
  max-width: 980px;
  margin: 0 auto;
  color: #151a17;
}

.stats-band {
  background:
    linear-gradient(90deg, rgba(215, 179, 137, 0.08), transparent 34%, rgba(111, 130, 136, 0.08)),
    var(--ink);
}

.stat strong {
  color: var(--copper-bright);
}

.stat span {
  color: rgba(251, 248, 241, 0.7);
  letter-spacing: 0.06em;
}

.section.alt {
  background: #e7ece7;
}

.finder {
  border: 1px solid rgba(17, 23, 20, 0.1);
  background: var(--paper-strong);
  box-shadow: 0 30px 70px rgba(17, 23, 20, 0.1);
}

.finder-tabs {
  background: rgba(17, 23, 20, 0.03);
}

.finder-tabs button {
  color: #46514b;
}

.finder-tabs button.is-active,
.filters button.is-active {
  background: var(--sage);
}

.finder-body > div {
  padding: clamp(2rem, 4vw, 4.2rem);
}

.finder-body img,
.project-media img,
.gallery img,
.image-main,
.image-float,
.team-card img {
  filter: saturate(0.92) contrast(1.04);
}

.project-grid {
  gap: clamp(1.2rem, 2vw, 2rem);
}

.project-media {
  border-radius: var(--radius);
  background: #d2cbc0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, var(--shadow-sm);
}

.project-media::after {
  height: 54%;
  background:
    linear-gradient(0deg, rgba(6, 11, 9, 0.78), rgba(6, 11, 9, 0.24) 58%, rgba(6, 11, 9, 0));
}

.project-card h3 {
  margin-top: 1.1rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.project-card p {
  color: #59645f;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--ink);
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(8px);
}

.badge.status {
  color: #fff9ee;
  background: rgba(159, 112, 76, 0.92);
}

.split {
  gap: clamp(3rem, 6vw, 6rem);
}

.image-stack {
  min-height: 660px;
}

.image-main {
  width: 82%;
  height: 610px;
}

.image-float {
  border-color: var(--paper);
}

.mini-specs {
  border-top-color: rgba(17, 23, 20, 0.14);
}

.process-grid,
.feature-grid,
.process-detailed {
  border-color: rgba(251, 248, 241, 0.12);
}

.process-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    var(--ink);
}

.docs-section {
  background: var(--paper-strong);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(215, 179, 137, 0.18), rgba(47, 71, 60, 0.88)),
    var(--sage);
}

.page-hero,
.project-hero {
  min-height: 560px;
}

.page-hero .hero-shade,
.project-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 11, 0.86), rgba(8, 13, 11, 0.46), rgba(8, 13, 11, 0.14)),
    linear-gradient(0deg, rgba(8, 13, 11, 0.74), rgba(8, 13, 11, 0.03) 55%);
}

.plain-header {
  padding-top: 11rem;
  padding-bottom: 4rem;
}

.filters {
  gap: 0.8rem;
}

.filters button {
  min-height: 46px;
  border-color: rgba(17, 23, 20, 0.12);
  background: rgba(251, 248, 241, 0.54);
}

.info-panel,
.contact-form,
.feature-box,
.process-detailed article,
.mini-card,
.compare-panel {
  background: rgba(251, 248, 241, 0.84);
  box-shadow: 0 14px 40px rgba(17, 23, 20, 0.06);
}

.contact-form {
  border-color: rgba(17, 23, 20, 0.1);
}

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

.map-embed {
  border: 1px solid rgba(17, 23, 20, 0.08);
}

.gallery {
  gap: 1.2rem;
}

.gallery img {
  background: #d2cbc0;
}

.plan-visual {
  background:
    linear-gradient(90deg, rgba(17, 23, 20, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 23, 20, 0.055) 1px, transparent 1px),
    rgba(251, 248, 241, 0.88);
}

.room {
  background: rgba(47, 71, 60, 0.12);
}

.media-item,
.media-video {
  border-radius: var(--radius);
  background: #d4cdc2;
}

.media-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.process-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.process-proof img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.9) contrast(1.04);
}

.process-proof h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.process-proof p:last-child {
  color: var(--ink-soft);
}

.reveal {
  transform: translateY(16px);
}

@media (max-width: 920px) {
  .process-proof {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: 520px;
  }

  .image-main {
    width: 88%;
    height: 480px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 640px;
    height: 86vh;
  }

  .hero-inner {
    padding-bottom: 4.25rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .plain-header {
    padding-top: 8.2rem;
  }

  .intro-band h2,
  .section h2,
  .copy-block h2,
  .plain-header h1,
  .page-hero h1,
  .project-hero h1,
  .cta-inner h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .project-media {
    aspect-ratio: 4 / 4.8;
  }

  .process-proof img {
    aspect-ratio: 4 / 3;
  }
}
