:root {
  --ink: #161514;
  --coal: #1d1b19;
  --paper: #f8f6f2;
  --soft: #eee8df;
  --line: rgba(22, 21, 20, 0.12);
  --gold: #b7925e;
  --gold-dark: #8c6a3e;
  --green: #44bd73;
  --white: #ffffff;
  --muted: #6f6a63;
  --shadow: 0 18px 45px rgba(24, 20, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 16px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: rgba(20, 19, 18, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: min-height 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(20, 19, 18, 0.95);
}

.brand {
  display: grid;
  line-height: 0.82;
}

.brand-main {
  color: #f3ede2;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-sub {
  margin-left: 42px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.86;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.header-cta {
  max-width: 214px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, #c7a06b, #a77b45);
}

.header-cta span,
.btn span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 150px clamp(18px, 6vw, 78px) 76px;
  color: var(--white);
  background: url("assets/hero-curtains.png") center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 15, 14, 0.92) 0%, rgba(16, 15, 14, 0.72) 35%, rgba(16, 15, 14, 0.2) 68%, rgba(16, 15, 14, 0.14) 100%),
    linear-gradient(0deg, rgba(16, 15, 14, 0.28), rgba(16, 15, 14, 0.04));
}

.hero-content {
  position: relative;
  width: min(650px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.eyebrow:not(.center)::after {
  display: none;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 590px;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.98;
}

h1::first-line {
  color: #f3ede2;
}

.hero h1 {
  color: var(--gold);
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.btn {
  min-width: 220px;
  padding: 0 22px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #c8a36f, #9e7544);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.btn-primary span,
.floating-whatsapp {
  background: var(--green);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(199, 160, 107, 0.7);
  background: rgba(20, 19, 18, 0.48);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-features article {
  padding-right: 16px;
}

.hero-features span {
  display: block;
  color: var(--gold);
  font-size: 28px;
  font-family: "Playfair Display", Georgia, serif;
}

.hero-features strong {
  display: block;
  margin: 6px 0 7px;
  font-size: 13px;
  text-transform: uppercase;
}

.hero-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 62px clamp(18px, 6vw, 74px);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.center {
  justify-content: center;
}

.section-heading h2,
.tailor-content h2,
.contact-info h2 {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow) {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 34px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.model-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 22, 20, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.model-image {
  height: 205px;
  background-image: url("assets/models-collage.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
}

.crop-1 {
  background-position: 0 0;
}

.crop-2 {
  background-position: 50% 0;
}

.crop-3 {
  background-position: 100% 0;
}

.crop-4 {
  background-position: 0 100%;
}

.crop-5 {
  background-position: 50% 100%;
}

.crop-6 {
  background-position: 100% 100%;
}

.model-body {
  padding: 24px 24px 26px;
  text-align: center;
}

.model-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-body p {
  min-height: 55px;
  margin: 0 0 18px;
  color: #4f4b46;
  font-size: 14px;
  line-height: 1.45;
}

.model-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 34px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tailor-band {
  position: relative;
  padding: 78px clamp(18px, 6vw, 74px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(19, 18, 17, 0.95) 0%, rgba(19, 18, 17, 0.82) 48%, rgba(19, 18, 17, 0.52) 100%),
    url("assets/tul-detay-2.jpg") center 42% / cover no-repeat;
}

.tailor-content {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.tailor-content h2 {
  color: var(--white);
}

.tailor-content > p:not(.eyebrow) {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.process-list article {
  padding: 22px 20px;
  border-left: 1px solid rgba(199, 160, 107, 0.32);
  background: rgba(255, 255, 255, 0.035);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border: 1px solid rgba(199, 160, 107, 0.65);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.process-list strong,
.value-grid strong {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-list p,
.value-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.quality {
  background: #fffaf3;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.75fr 0.75fr;
  gap: 10px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.gallery img:first-child {
  object-position: center;
}

.gallery img:nth-child(2) {
  object-position: 50% 50%;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1160px, 100%);
  margin: 34px auto 0;
}

.value-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-grid p {
  color: var(--muted);
}

.contact-section {
  padding: 58px clamp(18px, 6vw, 74px);
  color: var(--white);
  background: radial-gradient(circle at 80% 10%, rgba(183, 146, 94, 0.18), transparent 34%), var(--coal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.4fr;
  gap: 36px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-info h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
}

.contact-info ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.contact-info li span {
  color: var(--gold);
  font-weight: 800;
}

.contact-cta {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 0 0 0 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-cta p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.full {
  width: 100%;
}

.map-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    linear-gradient(135deg, #e8edf0, #f7f2e9);
  background-size: 62px 62px, 62px 62px, cover;
}

.map-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(34deg, transparent 35%, rgba(127, 151, 149, 0.45) 36%, rgba(127, 151, 149, 0.45) 39%, transparent 40%),
    linear-gradient(135deg, transparent 25%, rgba(181, 151, 98, 0.4) 26%, rgba(181, 151, 98, 0.4) 29%, transparent 30%),
    linear-gradient(106deg, transparent 52%, rgba(118, 130, 145, 0.32) 53%, rgba(118, 130, 145, 0.32) 56%, transparent 57%);
}

.pin {
  position: absolute;
  top: 45%;
  left: 47%;
  width: 38px;
  height: 38px;
  transform: rotate(45deg);
  border-radius: 50% 50% 50% 6px;
  background: #c9553f;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--white);
}

.map-label {
  position: absolute;
  right: 28px;
  bottom: 34px;
  max-width: 230px;
  padding: 18px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label span {
  margin-top: 5px;
  color: #5c5750;
  font-size: 13px;
  line-height: 1.45;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: none;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 74px);
  color: rgba(255, 255, 255, 0.58);
  background: #151413;
  font-size: 13px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 20px;
    background: rgba(20, 19, 18, 0.98);
  }

  .nav.is-open a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

  .map-card {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand-main {
    font-size: 31px;
  }

  .brand-sub {
    margin-left: 30px;
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 118px 18px 46px;
    background-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(16, 15, 14, 0.94), rgba(16, 15, 14, 0.68));
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-features,
  .model-grid,
  .process-list,
  .gallery,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    gap: 14px;
  }

  .hero-features article {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .section,
  .tailor-band,
  .contact-section {
    padding: 46px 18px;
  }

  .model-image {
    height: 190px;
  }

  .model-body p {
    min-height: 0;
  }

  .contact-cta {
    padding: 0;
    border-left: 0;
  }

  .map-label {
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: none;
  }

  .floating-whatsapp {
    display: grid;
  }

  footer {
    display: grid;
  }
}
