@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --bg:          #0c0c0c;
  --bg-2:        #111111;
  --bg-3:        #161616;
  --surface:     #1a1a1a;
  --border:      rgba(255,255,255,.08);
  --border-gold: rgba(184,150,62,.4);

  --text:        #f0ece4;
  --text-muted:  rgba(240,236,228,.55);
  --text-dim:    rgba(240,236,228,.28);

  --gold:        #b8963e;
  --gold-bright: #d4af5a;
  --gold-bg:     rgba(184,150,62,.08);

  --white:       #ffffff;
  --light-bg:    #f6f3ee;
  --light-text:  #0c0c0c;
  --light-muted: rgba(12,12,12,.55);
  --light-dim:   rgba(12,12,12,.25);
  --light-border:rgba(12,12,12,.1);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --ease:  cubic-bezier(.22,1,.36,1);
  --ease2: cubic-bezier(.4,0,.2,1);
  --dur:   .45s;

  --max: 1240px;
  --gutter: clamp(1.5rem,5vw,3.5rem);
}

/* ── RESET ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; font-size:16px }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display:block; max-width:100%; height:auto }
a   { text-decoration:none; color:inherit }
ul  { list-style:none }
button { cursor:pointer; font-family:var(--sans); background:none; border:none }

::-webkit-scrollbar { width:4px }
::-webkit-scrollbar-track { background: var(--bg-2) }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius:2px }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.eyebrow {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .85rem;
}
.eyebrow.dark { color: var(--gold) }

h1, .h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
}
h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
}
h3, .h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.18;
}
h4, .h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.body-lg { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted) }
.body    { font-size: .92rem;  line-height: 1.78; color: var(--text-muted) }
.body-sm { font-size: .82rem;  line-height: 1.72; color: var(--text-muted) }

/* On light sections, override text colors */
.on-light .eyebrow { color: var(--gold) }
.on-light .body-lg,
.on-light .body,
.on-light .body-sm { color: var(--light-muted) }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) }
.section   { padding: clamp(5rem,9vw,9rem) 0 }
.section-sm{ padding: clamp(3rem,5vw,5rem) 0 }

/* ── GOLD RULE ─────────────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 36px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--sans); font-size: .72rem;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border: none; transition: all var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold); color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 12px 32px rgba(184,150,62,.35);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  background: transparent;
  color: var(--light-text);
  border: 1px solid var(--light-border);
}
.btn-outline-dark:hover {
  background: var(--light-text);
  color: var(--white);
  border-color: var(--light-text);
}
.btn-wa {
  background: #25D366; color: var(--white);
}
.btn-wa:hover {
  background: #20bd5a;
  box-shadow: 0 12px 32px rgba(37,211,102,.3);
  transform: translateY(-1px);
}
.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.2);
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .5s var(--ease);
}
.nav.transparent { background: transparent }
.nav.scrolled {
  background: rgba(12,12,12,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 var(--gutter);
}
.nav.scrolled .nav-inner { height: 60px }

/* Logo: white version on dark nav, original when scrolled */
.nav-logo { display:flex; align-items:center }
.nav-logo img {
  height: 52px; width: auto;
  transition: opacity .3s;
}
.nav.scrolled .nav-logo img { height: 44px }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white) }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1) }
.nav-cta {
  padding: .55rem 1.4rem !important;
  background: var(--gold) !important;
  color: var(--white) !important;
}
.nav-cta:hover { background: var(--gold-bright) !important }
.nav-cta::after { display: none !important }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: var(--dur);
}

/* Mobile nav */
.mob-nav {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mob-nav.open { opacity: 1; pointer-events: all }
.mob-nav a {
  font-family: var(--serif); font-size: 2.2rem;
  font-weight: 700; color: var(--text);
  transition: color .2s;
}
.mob-nav a:hover { color: var(--gold) }
.mob-close {
  position: absolute; top: 1.5rem; right: var(--gutter);
  color: var(--text); font-size: 2rem;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1) } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,.75) 0%,
    rgba(10,10,10,.5)  40%,
    rgba(10,10,10,.15) 70%,
    rgba(10,10,10,.7)  100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding-bottom: clamp(4rem, 8vh, 7rem);
}
.hero-content .eyebrow {
  opacity: 0; animation: fadeUp .8s .2s var(--ease) forwards;
}
.hero-content h1 {
  color: var(--white); max-width: 900px;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .9s .35s var(--ease) forwards;
}
.hero-content h1 em {
  font-style: italic; color: var(--gold-bright);
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(255,255,255,.65); max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp .9s .5s var(--ease) forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s .65s var(--ease) forwards;
}
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 2;
}
.hero-scroll-bar {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35); writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%,100%{ opacity:1; transform:scaleY(1) }
  50%    { opacity:.3; transform:scaleY(.5) }
}

/* ── STATS ─────────────────────────────────────────────────── */
.stats { background: var(--bg-2); border-top: 1px solid var(--border) }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 3rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--dur);
}
.stat:last-child { border-right: none }
.stat:hover { background: var(--surface) }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem,3.5vw,3rem);
  font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: .4rem;
}
.stat-label {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim);
}

/* ── INTRO ─────────────────────────────────────────────────── */
.intro { background: var(--bg-3) }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,7rem); align-items: center;
}
.intro-img-wrap { position: relative }
.intro-img-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block;
}
.intro-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--white);
  padding: 1.6rem 2rem; text-align: center;
  box-shadow: 0 16px 48px rgba(184,150,62,.3);
}
.intro-badge-num {
  font-family: var(--serif); font-size: 2.5rem;
  font-weight: 700; line-height: 1; display: block;
}
.intro-badge-txt {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  opacity: .9; margin-top: .2rem;
}
.intro-text h2 { color: var(--text); margin-bottom: 1.2rem }
.intro-text p  { margin-bottom: .9rem }
.intro-list    { margin: 1.5rem 0 2.5rem }
.intro-list li {
  display: flex; align-items: center; gap: .8rem;
  font-size: .88rem; color: var(--text-muted);
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
}
.intro-list li:last-child { border-bottom: none }
.intro-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services { background: var(--bg) }
.services-header { margin-bottom: 4rem }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--bg); padding: 2.8rem 2.5rem;
  transition: background var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover { background: var(--surface) }
.svc-card:hover::before { transform: scaleX(1) }
.svc-num {
  font-family: var(--serif); font-style: italic;
  font-size: 3rem; font-weight: 400;
  color: var(--border); line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--dur);
}
.svc-card:hover .svc-num { color: rgba(255,255,255,.06) }
.svc-icon {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--dur);
}
.svc-icon svg { width: 20px; height: 20px; color: var(--gold); stroke-width: 1.6 }
.svc-card:hover .svc-icon { background: rgba(184,150,62,.15) }
.svc-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  color: var(--text); margin-bottom: .65rem;
}
.svc-body { font-size: .84rem; line-height: 1.75; color: var(--text-muted) }

/* ── CARPET TYPES ──────────────────────────────────────────── */
.carpet-section { background: var(--bg-2) }
.carpet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: var(--border);
}
.cp-card {
  position: relative; overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.cp-card:nth-child(1) { grid-column: span 2 }
.cp-img { aspect-ratio: 1/1; overflow: hidden }
.cp-card:nth-child(1) .cp-img { aspect-ratio: 16/9 }
.cp-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
  display: block;
}
.cp-card:hover .cp-img img { transform: scale(1.08) }
.cp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,.9)  0%,
    rgba(8,8,8,.2)  50%,
    rgba(8,8,8,.0)  100%
  );
  transition: opacity var(--dur);
}
.cp-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.75rem;
}
.cp-name {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 700; color: var(--white); margin-bottom: .2rem;
}
.cp-sub {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.cp-arrow {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 34px; height: 34px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px);
  transition: all .35s var(--ease);
}
.cp-arrow svg { width: 14px; height: 14px; color: var(--white); stroke-width: 2 }
.cp-card:hover .cp-arrow { opacity: 1; transform: translateY(0) }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery { background: var(--bg) }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5px; background: var(--border);
}
.gl { position: relative; overflow: hidden; cursor: pointer }
.gl:nth-child(1) { grid-column: span 2 }
.gl:nth-child(5) { grid-column: span 2 }
.gl-img { aspect-ratio: 4/3; overflow: hidden }
.gl:nth-child(1) .gl-img,
.gl:nth-child(5) .gl-img { aspect-ratio: 16/7 }
.gl-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.gl:hover .gl-img img { transform: scale(1.06) }
.gl-cap {
  position: absolute; inset: 0;
  background: rgba(8,8,8,.72);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity .3s;
}
.gl:hover .gl-cap { opacity: 1 }
.gl-cap span {
  font-family: var(--serif); font-size: .92rem;
  font-weight: 700; color: var(--white);
}

/* ── TRUST ─────────────────────────────────────────────────── */
.trust { background: var(--gold) }
.trust-inner {
  display: grid; grid-template-columns: auto 1px 1fr;
  gap: 3.5rem; align-items: center;
  padding: 4rem 0;
}
.trust-num {
  font-family: var(--serif); font-size: 4rem;
  font-weight: 900; color: rgba(255,255,255,.15);
  line-height: 1;
}
.trust-num span {
  display: block;
  font-size: 3.5rem; color: var(--white); line-height: 1;
}
.trust-num small {
  display: block; font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: .3rem;
  font-family: var(--sans);
}
.trust-line { width: 1px; height: 70px; background: rgba(255,255,255,.25) }
.trust-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: .65rem;
}
.trust-body { font-size: .92rem; line-height: 1.78; color: rgba(255,255,255,.75) }

/* ── WHY ─────────────────────────────────────────────────────── */
.why { background: var(--light-bg) }
.why-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; border: 1px solid var(--light-border);
}
.why-card {
  padding: 2.5rem 1.5rem; text-align: center;
  border-right: 1px solid var(--light-border);
  transition: background var(--dur);
}
.why-card:last-child { border-right: none }
.why-card:hover { background: var(--white); box-shadow: 0 8px 32px rgba(12,12,12,.08) }
.why-icon { width: 44px; height: 44px; margin: 0 auto 1.1rem; color: var(--gold) }
.why-icon svg { width: 100%; height: 100%; stroke-width: 1.5 }
.why-card h4 {
  font-family: var(--serif); font-size: .92rem; font-weight: 700;
  color: var(--light-text); margin-bottom: .55rem;
}
.why-card p { font-size: .8rem; line-height: 1.68; color: var(--light-muted) }

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem;
  padding: 5rem 0; flex-wrap: wrap;
}
.cta-band h2 { color: var(--text); margin-bottom: .75rem }
.cta-band p  { color: var(--text-muted); font-size: .95rem }
.cta-band-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border) }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 4rem; padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo { height: 56px; width: auto; margin-bottom: 1.5rem }
.footer-desc { font-size: .84rem; line-height: 1.82; color: var(--text-dim); max-width: 260px; margin-bottom: 1.5rem }
.footer-social { display: flex; gap: .5rem }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: .72rem;
  transition: all .25s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold) }

.footer-col h5 {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem }
.footer-col ul li a {
  font-size: .85rem; color: var(--text-dim);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text) }

.footer-contact { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .85rem }
.footer-contact svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; margin-top: 2px; stroke-width: 2 }
.footer-contact span { font-size: .82rem; color: var(--text-dim); line-height: 1.65 }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: .72rem; color: var(--text-dim) }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  background: var(--bg);
  padding: 10rem 0 5.5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .07; z-index: 0;
}
.page-hero-content { position: relative; z-index: 1 }
.page-hero h1 { color: var(--text); max-width: 700px; margin: .75rem 0 1rem }
.page-hero p  { color: var(--text-muted); font-size: 1rem; max-width: 520px; line-height: 1.8 }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.founder-block {
  display: grid; grid-template-columns: auto 1fr;
  gap: 2.5rem; align-items: start;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 1.5px;
}
.founder-avatar {
  width: 72px; height: 72px;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.founder-avatar span {
  font-family: var(--serif); font-size: 1.6rem;
  font-weight: 700; color: var(--gold);
}
.founder-name {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 700; color: var(--text); margin-bottom: .2rem;
}
.founder-role {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.founder-bio { font-size: .88rem; color: var(--text-muted); line-height: 1.8 }

/* Values on light background */
.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 2px solid var(--gold);
  border: 1px solid var(--light-border);
  border-top: 2px solid var(--gold);
  transition: box-shadow var(--dur);
}
.value-card:hover { box-shadow: 0 8px 32px rgba(12,12,12,.1) }
.value-card h4 { color: var(--light-text); margin-bottom: .6rem }
.value-card p  { font-size: .84rem; color: var(--light-muted); line-height: 1.75 }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; max-width: 680px }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.tl-item { position: relative; padding: 0 0 2.5rem 3rem }
.tl-item::before {
  content: ''; position: absolute; left: -5px; top: 6px;
  width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
}
.tl-period {
  font-size: .62rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .3rem;
}
.tl-title {
  font-family: var(--serif); font-size: 1rem;
  font-weight: 700; color: var(--text); margin-bottom: .3rem;
}
.tl-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.7 }

/* ── CATALOGUE ──────────────────────────────────────────────── */
.cat-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3.5rem; overflow-x: auto;
}
.cat-tab {
  padding: .9rem 1.75rem;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; white-space: nowrap;
  transition: all .25s; cursor: pointer;
}
.cat-tab.active, .cat-tab:hover {
  color: var(--text); border-bottom-color: var(--gold);
}
.cat-panel { display: none }
.cat-panel.active { display: block }
.cat-header { margin-bottom: 2.5rem }
.cat-header h3 { color: var(--text); margin-bottom: .5rem }
.cat-header p  { color: var(--text-muted); font-size: .9rem; line-height: 1.75; max-width: 600px }

.swatches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px,1fr));
  gap: 1.5rem;
}
.swatch-card { cursor: pointer; transition: transform var(--dur) var(--ease) }
.swatch-card:hover { transform: translateY(-4px) }
.swatch-img { aspect-ratio: 1; overflow: hidden; background: var(--surface) }
.swatch-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.swatch-card:hover .swatch-img img { transform: scale(1.07) }
.swatch-name {
  padding: .65rem .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
}
.swatch-name span {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); display: block; text-align: center;
}
.cat-cta {
  background: var(--surface); border: 1px solid var(--border);
  padding: 2.5rem; text-align: center; margin-top: 3rem;
}
.cat-cta p { color: var(--text-muted); font-size: .88rem; margin-bottom: 1rem }

.designer-cta-section {
  background: var(--surface); border: 1px solid var(--border);
  padding: 3.5rem; text-align: center; margin-bottom: 3rem;
}
.designer-cta-section h3 { color: var(--text); margin-bottom: .75rem }
.designer-cta-section p  { color: var(--text-muted); font-size: .9rem; max-width: 480px; margin: 0 auto 2rem; line-height: 1.75 }
.designer-examples {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr));
  gap: 1rem; margin-bottom: 2.5rem; text-align: left;
}
.designer-ex { aspect-ratio: 4/3; background: var(--surface); overflow: hidden }
.designer-ex img { width: 100%; height: 100%; object-fit: cover }
.grass-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem }
.grass-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--surface) }
.grass-img-wrap img { width: 100%; height: 100%; object-fit: cover }

.caution-info {
  background: var(--gold-bg); border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem; margin-bottom: 2.5rem;
}
.caution-info h4 { color: var(--text); margin-bottom: .5rem }
.caution-info p  { color: var(--text-muted); font-size: .88rem; line-height: 1.78 }
.caution-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px;
  background: var(--border); margin-bottom: 2.5rem;
}
.caution-card {
  background: var(--surface); padding: 2rem;
  border-left: 2px solid var(--gold);
}
.caution-card h4 { color: var(--text); margin-bottom: .5rem; font-size: .9rem }
.caution-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.7 }

/* ── BLOG ───────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--border) }
.blog-card {
  background: var(--bg-2); overflow: hidden;
  transition: background var(--dur);
}
.blog-card:hover { background: var(--surface) }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--surface) }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease) }
.blog-card:hover .blog-thumb img { transform: scale(1.05) }
.blog-body { padding: 1.75rem }
.blog-meta {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.blog-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: .6rem; line-height: 1.35;
}
.blog-excerpt { font-size: .82rem; color: var(--text-muted); line-height: 1.75 }

.admin-toggle { text-align: center; padding-top: 3rem; margin-top: 3rem; border-top: 1px solid var(--border) }
.admin-panel  { background: var(--surface); border: 1px solid var(--border); padding: 2.5rem; margin-top: 1.5rem; display: none }
.admin-panel.open { display: block }
.admin-panel h3 { color: var(--text); margin-bottom: 1.25rem; font-size: 1.1rem }
.admin-notice {
  font-size: .8rem; color: var(--text-muted); line-height: 1.72;
  background: var(--gold-bg); border-left: 3px solid var(--gold);
  padding: .85rem 1.1rem; margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem }
.form-full { grid-column: span 2 }
.fg { display: flex; flex-direction: column; gap: .35rem }
.fg label {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted);
}
.fg input, .fg textarea {
  padding: .75rem 1rem; background: var(--bg);
  border: 1px solid var(--border); color: var(--text);
  font-family: var(--sans); font-size: .88rem;
  outline: none; transition: border-color .25s;
}
.fg input:focus, .fg textarea:focus { border-color: var(--gold) }
.fg textarea { height: 90px; resize: vertical }
.admin-hidden { display: none }
.no-posts { text-align: center; padding: 4rem; color: var(--text-muted); font-size: .9rem }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 6rem; align-items: start;
}
.contact-info h2 { color: var(--text); margin-bottom: 1rem }
.contact-info p  { color: var(--text-muted); font-size: .9rem; line-height: 1.82; margin-bottom: 2rem }
.ci { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem }
.ci-icon {
  width: 40px; height: 40px; background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 16px; height: 16px; color: var(--gold); stroke-width: 2 }
.ci strong { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin-bottom: .25rem }
.ci span   { font-size: .87rem; color: var(--text-muted); line-height: 1.65 }

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  padding: 3rem;
}
.contact-form h3 { color: var(--text); font-family: var(--serif); font-size: 1.25rem; margin-bottom: 1.5rem }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem }
.cf-full { grid-column: span 2 }
.cf { display: flex; flex-direction: column; gap: .35rem }
.cf label { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted) }
.cf input, .cf textarea, .cf select {
  padding: .8rem 1rem; background: var(--bg);
  border: 1px solid var(--border); color: var(--text);
  font-family: var(--sans); font-size: .88rem;
  outline: none; transition: border-color .25s;
  appearance: none; -webkit-appearance: none;
}
.cf input:focus, .cf textarea:focus, .cf select:focus { border-color: var(--gold) }
.cf textarea { height: 100px; resize: vertical }
.cf select option { background: var(--bg) }
.map-wrap { height: 360px; overflow: hidden; margin-top: 4rem; border: 1px solid var(--border) }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%) invert(90%) }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px) }
  to   { opacity: 1; transform: translateY(0) }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0) }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem }
  .intro-badge { right: 0 }
  .stats-grid  { grid-template-columns: repeat(2,1fr) }
  .stat:nth-child(2) { border-right: none }
  .why-grid    { grid-template-columns: repeat(3,1fr) }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem }
  .cta-band-inner { flex-direction: column }
  .trust-inner { grid-template-columns: auto 1fr; gap: 2rem }
  .trust-line  { display: none }
  .carpet-grid { grid-template-columns: 1fr 1fr }
  .cp-card:nth-child(1) { grid-column: span 2 }
}
@media (max-width: 768px) {
  :root { --gutter: 1.25rem }
  .nav-links { display: none }
  .hamburger { display: flex }
  .mob-nav   { display: flex }
  .services-grid { grid-template-columns: 1fr 1fr }
  .gallery-grid  { grid-template-columns: 1fr 1fr }
  .gl:nth-child(1), .gl:nth-child(5) { grid-column: span 2 }
  .blog-grid     { grid-template-columns: 1fr }
  .why-grid      { grid-template-columns: repeat(2,1fr) }
  .why-card      { border-right: none; border-bottom: 1px solid var(--light-border) }
  .carpet-grid   { grid-template-columns: 1fr }
  .cp-card:nth-child(1) { grid-column: span 1 }
  .footer-main   { grid-template-columns: 1fr; gap: 2.5rem }
  .cf-row        { grid-template-columns: 1fr }
  .cf-full       { grid-column: span 1 }
  .form-row      { grid-template-columns: 1fr }
  .form-full     { grid-column: span 1 }
  .caution-cards { grid-template-columns: 1fr }
  .grass-grid-2  { grid-template-columns: 1fr }
  .trust-inner   { grid-template-columns: 1fr }
  .values-grid   { grid-template-columns: 1fr }
  .founder-block { grid-template-columns: 1fr }
}
