:root {
  --ink: #0b0c10;
  --panel: #14161a;
  --panel-2: #1f2229;
  --ivory: #f7f5f0;
  --white: #ffffff;
  --gold: #c5a059;
  --gold-light: #e0c48f;
  --grey-on-dark: #a8abb3;
  --grey-on-light: #6a6e75;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(11, 12, 16, 0.08);
  --radius: 4px;
}

/* ===== BASE & RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

ul {
  list-style: none;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== TYPOGRAPHY & BUTTONS ===== */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11.5px;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: all 0.35s ease;
  cursor: pointer;
  background: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost-light {
  color: var(--white);
}

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

.btn-ghost-dark {
  color: var(--ink);
}

.btn-ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* ===== VEIN SPINE (Signature Element) ===== */
.vein-spine {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.vein-spine svg {
  width: 100%;
  height: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.topbar {
  background: var(--ink);
  color: var(--grey-on-dark);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}

.topbar-links {
  display: flex;
  gap: 28px;
}

.topbar-links a:hover {
  color: var(--gold-light);
}

.topbar-social {
  display: flex;
  gap: 16px;
}

.topbar-social a {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 11px;
  transition: all 0.3s ease;
}

.topbar-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

header.main-nav {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.3s ease;
}

header.main-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  transition: height 0.3s ease;
}

header.main-nav.shrink .wrap {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text b {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.logo-text span {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

nav.primary {
  display: flex;
  gap: 40px;
}

nav.primary a {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  font-weight: 400;
}

nav.primary a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav.primary a:hover::after,
nav.primary a.active::after {
  width: 100%;
}

nav.primary a.active {
  color: var(--gold-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 26px;
}

.burger span {
  height: 1px;
  background: var(--white);
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  height: 100vh;
  background: var(--panel);
  z-index: 200;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  border-left: 1px solid var(--line-dark);
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
}

.mobile-close {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}

.scrim.open {
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-texture .base {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(140% 90% at 20% 15%, rgba(176, 141, 79, 0.20), transparent 55%),
    radial-gradient(120% 90% at 85% 90%, rgba(217, 189, 132, 0.12), transparent 55%),
    linear-gradient(160deg, rgba(16, 13, 9, 0.55) 0%, rgba(23, 20, 15, 0.72) 55%, rgba(15, 12, 9, 0.9) 100%),
    url('https://images.unsplash.com/photo-1639405069836-f82aa6dcb900?fm=jpg&q=80&w=2400&auto=format&fit=crop');
  background-size: auto, auto, auto, cover;
  background-position: 0 0, 0 0, 0 0, center 30%;
  background-repeat: no-repeat;
}

.hero-texture svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 42%, rgba(23, 20, 15, 0.35), rgba(15, 12, 9, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 840px;
  padding: 0 24px;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: 26px;
}

.hero .eyebrow::before,
.hero .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 74px);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.005em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p.lead {
  max-width: 560px;
  margin: 0 auto 38px;
  color: var(--grey-on-dark);
  font-size: 16px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.hero-tags div {
  padding: 0 30px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}

.hero-tags div:last-child {
  border-right: none;
}

.hero-tags b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold-light);
  font-weight: 600;
}

.hero-tags span {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-on-dark);
}





@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== ABOUT ===== */
.about {
  padding: 130px 0 110px;
  position: relative;
  background: var(--ivory);
}

.about .wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 70px;
  align-items: start;
}

.about-figure {
  border: 1px solid var(--line-light);
  padding: 34px 26px;
  text-align: center;
  position: relative;
}

.about-figure::before,
.about-figure::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
}

.about-figure::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.about-figure::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.about-figure b {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.about-figure span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-on-light);
  margin-top: 12px;
}

.about-body h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
  margin: 22px 0 24px;
}

.about-body p {
  color: var(--grey-on-light);
  max-width: 580px;
  margin-bottom: 30px;
  font-size: 15.5px;
}

/* ===== COLLECTIONS ===== */
.collections {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
  color: var(--white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  margin-top: 16px;
  max-width: 520px;
}

.section-head p {
  color: var(--grey-on-dark);
  max-width: 340px;
  font-size: 14.5px;
  padding-bottom: 6px;
}

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

.stone-card {
  position: relative;
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 22px;
  border: 1px solid var(--line-dark);
}

.stone-card .tex {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s ease;
}

.stone-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 7, 0.86) 0%, rgba(10, 9, 7, 0.15) 55%, rgba(10, 9, 7, 0.05) 100%);
  z-index: 1;
}

.stone-card .body {
  position: relative;
  z-index: 2;
}

.stone-card .idx {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}

.stone-card h3 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 6px;
}

.stone-card .origin {
  font-size: 12px;
  color: var(--grey-on-dark);
  margin-bottom: 16px;
}

.stone-card .more {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s ease;
}

.stone-card:hover .more {
  opacity: 1;
  transform: translateY(0);
}

.stone-card:hover .tex {
  transform: scale(1.06);
}

/* Textures Overlay Setup */
.tex-carrara::after,
.tex-emperador::after,
.tex-nero::after,
.tex-calacatta::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* --- Koleksiyon Kartları Görselleri --- */
.tex-carrara {
  background: 
    linear-gradient(180deg, rgba(23, 20, 15, 0.1) 0%, rgba(23, 20, 15, 0.7) 100%),
    url('https://image.pollinations.ai/prompt/high%20quality%20photorealistic%20macro%20close-up%20texture%20shot%20of%20premium%20Bianco%20Carrara%20marble%20slab,%20pure%20white%20background%20with%20subtle%20soft%20grey%20veins,%20polished%20smooth%20surface,%20luxurious%20architectural%20finish?width=1200&height=1600&nologo=true') center/cover no-repeat !important;
}

.tex-emperador {
  background: 
    linear-gradient(180deg, rgba(23, 20, 15, 0.1) 0%, rgba(23, 20, 15, 0.7) 100%),
    url('https://image.pollinations.ai/prompt/high%20quality%20photorealistic%20macro%20close-up%20texture%20shot%20of%20rich%20Emperador%20Chestnut%20marble%20slab,%20deep%20warm%20brown%20background%20with%20fine%20crystal%20and%20beige%20spiderweb%20veins,%20polished%20glossy%20surface?width=1200&height=1600&nologo=true') center/cover no-repeat !important;
}

.tex-nero {
  background: 
    linear-gradient(180deg, rgba(23, 20, 15, 0.1) 0%, rgba(23, 20, 15, 0.7) 100%),
    url('https://image.pollinations.ai/prompt/high%20quality%20photorealistic%20macro%20close-up%20texture%20shot%20of%20Nero%20Marquina%20black%20marble%20slab,%20deep%20intense%20black%20background%20with%20sharp%20striking%20pure%20white%20and%20gold%20veins,%20polished%20mirror-like%20surface?width=1200&height=1600&nologo=true') center/cover no-repeat !important;
}

.tex-calacatta {
  background: 
    linear-gradient(180deg, rgba(23, 20, 15, 0.1) 0%, rgba(23, 20, 15, 0.7) 100%),
    url('https://image.pollinations.ai/prompt/high%20quality%20photorealistic%20macro%20close-up%20texture%20shot%20of%20Calacatta%20Oro%20marble%20slab,%20cream%20white%20background%20with%20bold%20dramatic%20golden%20and%20warm%20amber%20veins,%20polished%20luxury%20finish?width=1200&height=1600&nologo=true') center/cover no-repeat !important;
}

/* --- Projeler Bölümü Özel Görselleri --- */
.project-card:nth-child(1) .tex {
  background:
    linear-gradient(180deg, rgba(23, 20, 15, 0.12) 0%, rgba(23, 20, 15, 0.75) 100%),
    url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat !important;
}

.project-card:nth-child(2) .tex {
  background:
    linear-gradient(180deg, rgba(23, 20, 15, 0.14) 0%, rgba(23, 20, 15, 0.8) 100%),
    url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat !important;
}

.project-card:nth-child(3) .tex {
  background:
    linear-gradient(180deg, rgba(23, 20, 15, 0.12) 0%, rgba(23, 20, 15, 0.75) 100%),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat !important;
}

.project-card:nth-child(4) .tex {
  background:
    linear-gradient(180deg, rgba(23, 20, 15, 0.12) 0%, rgba(23, 20, 15, 0.75) 100%),
    url('https://images.unsplash.com/photo-1523217582562-09d0def993a6?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat !important;
}

.project-card:nth-child(5) .tex {
  background:
    linear-gradient(180deg, rgba(23, 20, 15, 0.12) 0%, rgba(23, 20, 15, 0.75) 100%),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat !important;
}

.project-card:nth-child(6) .tex {
  background:
    linear-gradient(180deg, rgba(23, 20, 15, 0.12) 0%, rgba(23, 20, 15, 0.8) 100%),
    url('https://i.pinimg.com/736x/2e/e4/41/2ee441988b80b37e686bc978d5d4a25e.jpg') center/cover no-repeat !important;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0 130px;
  background: var(--ivory);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-item {
  position: relative;
  padding: 0 30px 0 0;
}

.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 0;
  width: calc(100% - 60px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.process-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-item p {
  font-size: 13.5px;
  color: var(--grey-on-light);
  max-width: 240px;
}

/* ===== PROJECTS ===== */
.projects {
  background: var(--ink);
  padding: 0 0 120px;
  color: var(--white);
}

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

.project-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.project-card .tex {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s ease;
}

.project-card .shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10, 9, 7, 0.82) 0%, rgba(10, 9, 7, 0.1) 60%);
}

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

.project-card .body {
  position: relative;
  z-index: 2;
}

.project-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-card span {
  font-size: 11.5px;
  color: var(--grey-on-dark);
  letter-spacing: 0.03em;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0 130px;
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  margin-top: 56px;
}

.contact-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact-item span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-on-light);
  margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
  font-size: 15px;
  color: var(--ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line-light);
  background: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  padding: 12px 2px;
  outline: none;
  color: var(--ink);
  resize: none;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--grey-on-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
}

/* ===== WHY US ===== */
.whyus {
  padding: 130px 0;
  background: var(--ivory);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line-light);
}

.why-item {
  padding: 44px 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.why-item:last-child {
  border-right: none;
}

.why-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--gold);
}

.why-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 600;
}

.why-item p {
  font-size: 13.5px;
  color: var(--grey-on-light);
}

/* ===== PROMO ===== */
.promo {
  position: relative;
  min-height: 520px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.promo-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 90% at 80% 30%, rgba(176, 141, 79, 0.14), transparent 60%),
    linear-gradient(120deg, #100D09, #221D16 60%, #171310);
}

.promo .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.promo-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.promo-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  animation: ring 2.4s ease-out infinite;
}

@keyframes ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.promo-play svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  margin-left: 3px;
}

.promo-left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.promo-left span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-on-dark);
  display: block;
  margin-bottom: 10px;
}

.promo-left h2 {
  font-size: clamp(26px, 3vw, 36px);
  max-width: 320px;
}

.promo-stats {
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.promo-stats div b {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.promo-stats div span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-on-dark);
}

/* ===== TESTIMONIAL ===== */
.testi {
  padding: 110px 0;
  background: var(--ivory);
  text-align: center;
}

.testi blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  max-width: 760px;
  margin: 30px auto 26px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.testi cite {
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-on-light);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--gold);
  color: var(--ink);
  padding: 60px 0;
}

.cta-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ivory);
  color: var(--grey-on-light);
  padding: 100px 0 0;
  position: relative;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-light);
}

.foot-logo {
  color: var(--ink);
  margin-bottom: 18px;
}

footer p {
  font-size: 13.5px;
  max-width: 280px;
  margin-bottom: 22px;
}

.foot-social {
  display: flex;
  gap: 14px;
}

.foot-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.foot-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

footer h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}

footer .foot-links li {
  margin-bottom: 13px;
  font-size: 13.5px;
}

footer .foot-links a:hover {
  color: var(--gold-light);
}

.foot-form {
  display: flex;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 10px;
  margin-top: 6px;
}

.foot-form input {
  background: none;
  border: none;
  flex: 1;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  outline: none;
}

.foot-form input::placeholder {
  color: var(--grey-on-light);
}

.foot-form button {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 16px;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom a {
  color: var(--grey-on-light);
}

.foot-bottom a:hover {
  color: var(--gold-light);
}

/* ===== UTILITIES ===== */
.to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

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

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1080px) {
  .wrap {
    padding: 0 26px;
  }
  .about .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-figure {
    width: 180px;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-item:nth-child(2n) {
    border-right: none;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }
  .process-item:nth-child(2)::after {
    display: none;
  }
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 800px) {
  nav.primary {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-tags {
    gap: 6px;
  }
  .hero-tags div {
    padding: 0 16px;
  }
  .promo .wrap {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .promo-stats {
    justify-content: flex-start;
  }
  .cta-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .process {
    display: none;
  }
  .promo-texture {
    display: none;
  }
  footer {
    padding: 30px 0 0;
  }
  .foot-grid {
    display: none;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-item {
    border-right: none;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-figure {
    width: 100%;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-item::after {
    display: none;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation: none !important;
    transition: none !important;
  }
}