/* ==========================================================================
   ANSH DESIGNS — Architecture · Interiors · Civil
   Clone of sketch-to-space-4.preview.emergentagent.com
   ========================================================================== */

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

/* ── Design Tokens ────────────────────────────────────────────────── */
:root {
  --bg:         #FAF9F6;
  --bg-alt:     #F3F1EC;
  --bg-dark:    #151515;
  --bg-dark-2:  #1A1A1A;
  --card:       #ffffff;
  --card-hover: #F8F6F1;
  --fg:         #1E1E1E;
  --fg-light:   #F5F5F5;
  --muted:      #707070;
  --muted-2:    #999999;
  --border:     #E5E5E5;
  --border-light: rgba(255,255,255,0.12);
  --gold:       #C2A676;
  --gold-dark:  #A8895E;
  --gold-light: #D4BC8E;
  --gold-dim:   rgba(194,166,118,0.12);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:  1200px;
  --radius:     4px;
  --transition: 0.35s cubic-bezier(.25,.8,.25,1);
}

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Shared Typography ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-line::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.italic-accent {
  font-style: italic;
  color: var(--gold);
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 14px; height: 14px; }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194,166,118,0.35);
}
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-text {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.btn-text:hover { color: var(--gold); }
.btn-text svg { width: 14px; height: 14px; }

/* ── Header ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: 1280px;
  width: 100%;
  padding: 0 32px;
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 36px;
  transition: transform var(--transition), opacity var(--transition);
}
.brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.brand-logo {
  height: 52px;
  max-height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
}
.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after { width: 100%; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}
.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 12px 7px 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.lang-dropdown-btn:hover,
.lang-dropdown.open .lang-dropdown-btn {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.lang-dropdown-btn .globe-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}
.lang-dropdown-btn .globe-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.lang-current {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lang-chevron {
  width: 10px;
  height: 10px;
  display: block;
  transition: transform var(--transition);
}
.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 6px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s cubic-bezier(.25,.8,.25,1);
  z-index: 1050;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  width: 100%;
  display: block;
  text-align: left;
  background: transparent;
  border: none;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.lang-option:hover {
  background: var(--bg-alt);
  color: var(--gold);
}
.lang-option.active {
  background: var(--gold-dim);
  color: var(--gold);
  font-weight: 700;
}

.header-cta {
  background: var(--gold);
  color: #fff;
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
  text-align: center;
  border-radius: 2px;
}
.header-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(194, 166, 118, 0.35);
}
.header-cta svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: block;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--fg);
}
.nav-toggle svg { width: 18px; height: 18px; }

/* ── Page Hero Banner ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 60px;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-media {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0;
}
.page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-media::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-hero-content .eyebrow { color: var(--gold-light); margin-bottom: 12px; }
.page-hero-content h1 {
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 14px;
  font-style: italic;
}
.page-hero-content .hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

/* ── Home Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
  margin-top: 72px;
}
.hero-media {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-content .eyebrow {
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-content .eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}
.hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  font-style: italic;
}
.hero-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.scroll-cue {
  position: absolute;
  left: 40px; bottom: 40px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.3);
}
.scroll-cue svg { width: 14px; height: 14px; }

/* ── Section basics ───────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--bg-dark); color: var(--fg-light); }
.section-cream { background: var(--bg-alt); }
.section-head { max-width: 600px; margin-bottom: 50px; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.12;
  font-style: italic;
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.7;
}

/* ── "What are you planning?" ─────────────────────────────────────── */
.planning-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.planning-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.planning-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.planning-card:hover img { transform: scale(1.06); }
.planning-card-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.planning-card-num {
  position: absolute; top: 14px; left: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}
.planning-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
  font-style: italic;
}
.planning-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* ── Selected Work / Portfolio ────────────────────────────────────── */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.filter-row {
  display: flex;
  gap: 6px;
}
.filter-btn {
  padding: 8px 18px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--fg); }
.filter-btn.active {
  color: var(--fg);
  border-bottom: 2px solid var(--gold);
}

.portfolio-note {
  font-size: 13px;
  color: var(--muted-2);
  font-style: italic;
  margin-bottom: 30px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item.tall img { aspect-ratio: 2/3; }
.portfolio-item.item-center {
  grid-row: span 2;
}
.portfolio-item.item-center img {
  aspect-ratio: auto;
  height: 100%;
}
.portfolio-label {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: #fff;
}
.portfolio-label.arch { background: var(--gold); }
.portfolio-label.int { background: var(--bg-dark); }
.portfolio-label.civil-label { background: var(--muted); }
.portfolio-info {
  margin-top: 10px;
}
.portfolio-info .meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}
.portfolio-info .meta span { margin: 0 4px; }
.portfolio-info h4 {
  font-size: 18px;
  font-style: italic;
}
.portfolio-num {
  position: absolute;
  bottom: 10px; right: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted-2);
}
.portfolio-cta {
  text-align: center;
  margin-top: 50px;
}

/* ── "What We Do" (3-column services) ─────────────────────────────── */
.services-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
}
.section-dark .services-cols { border-color: rgba(255,255,255,0.1); }
.service-col {
  padding: 50px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.service-col:last-child { border-right: none; }
.service-col .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-col h3 {
  font-size: 26px;
  font-style: italic;
  margin-bottom: 6px;
  color: #fff;
}
.service-col .tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.service-col ul {
  margin-bottom: 30px;
}
.service-col ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-col .btn-text { color: #fff; }
.service-col .btn-text:hover { color: var(--gold); }

/* ── "From Sketch to Space" Tabs ──────────────────────────────────── */
.sketch-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sketch-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sketch-tab {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  width: 100%;
}
.sketch-tab .tab-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted-2);
  min-width: 28px;
  transition: color var(--transition);
}
.sketch-tab .tab-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.sketch-tab .tab-desc {
  display: none;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.sketch-tab.active {
  border-bottom-color: var(--gold);
}
.sketch-tab.active .tab-num { color: var(--gold); }
.sketch-tab.active .tab-label { color: var(--fg); }
.sketch-tab.active .tab-desc { display: block; }
.sketch-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.sketch-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.sketch-panel { display: none; }
.sketch-panel.active { display: block; }

/* ── "How We Work" Process Steps ──────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.process-step {
  padding: 32px 20px 0;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }
.process-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.process-step h3 {
  font-size: 17px;
  font-style: italic;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── "Why ANSH DESIGNS?" Grid ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.why-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.why-card:last-child { border-right: none; }
.why-card:hover { background: var(--bg-alt); }
.why-card .card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-card .card-icon {
  width: 28px; height: 28px;
  color: var(--gold);
  margin-bottom: 18px;
}
.why-card .card-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-size: 19px;
  font-style: italic;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── About Section (on home) ──────────────────────────────────────── */
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-home-images {
  position: relative;
}
.about-home-images .img-main {
  width: 70%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-home-images .img-secondary {
  position: absolute;
  right: 0; bottom: -30px;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 6px solid var(--bg);
}
.about-home-images .est-badge {
  position: absolute;
  left: 0; bottom: -10px;
  background: var(--gold);
  color: #fff;
  padding: 16px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.4;
}
.about-home-images .est-badge .year {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  display: block;
  letter-spacing: 0;
  text-transform: none;
}
.about-home-copy .eyebrow { margin-bottom: 14px; }
.about-home-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-home-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-home-copy p strong { color: var(--fg); }

/* ── Banner / Full-width Quote ────────────────────────────────────── */
.banner-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg-dark);
}
.banner-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
}
.banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.banner-content {
  position: relative;
  z-index: 1;
}
.banner-content .eyebrow {
  color: var(--gold-light);
  margin-bottom: 16px;
}
.banner-content h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-style: italic;
  line-height: 1.1;
  color: #fff;
}
.banner-content h2 .gold { color: var(--gold); }

/* ── Testimonials ─────────────────────────────────────────────────── */
.testimonials-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.testimonials-section .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 500px;
}
.testimonial-card {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin: 0 0 24px;
}
.testimonial-card .author {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.testimonial-card .author-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-card .review-note {
  font-size: 13px;
  color: var(--muted-2);
  font-style: italic;
  margin-top: 14px;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.testimonial-nav button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  cursor: pointer;
  transition: all var(--transition);
}
.testimonial-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.testimonial-nav button svg { width: 14px; height: 14px; }
.testimonial-nav .counter {
  font-size: 13px;
  color: var(--muted);
}

/* ── CTA Section (Start a Conversation) ───────────────────────────── */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg-dark);
}
.cta-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content .eyebrow {
  color: var(--gold-light);
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(30px, 5vw, 56px);
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
}
.cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cta-phone {
  font-size: 14px;
  color: var(--gold);
  margin-top: 6px;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 70px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .footer-brand-link {
  display: inline-block;
  text-decoration: none;
}
.footer-brand .brand-logo,
.footer-brand .footer-logo {
  height: 56px;
  max-height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.footer-brand .brand-logo:hover,
.footer-brand .footer-logo:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.footer-brand .brand-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.footer-brand .brand-est {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-lang {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-lang a { color: rgba(255,255,255,0.4); }
.footer-lang a:hover { color: var(--gold); }
.footer-privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-privacy:hover { color: var(--gold); }

/* ── Service Page (Architecture/Interiors/Civil) ──────────────────── */
.service-page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-page-left .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-page-left h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 18px;
}
.service-page-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Scope of Work Box */
.scope-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.scope-box h3 {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scope-box h3 .scope-icon {
  width: 24px; height: 24px;
  color: var(--gold);
}
.scope-box h3 .scope-icon svg { width: 100%; height: 100%; }
.scope-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg);
}
.scope-list li:last-child { border-bottom: none; }
.scope-list .check {
  color: var(--gold);
  flex-shrink: 0;
}
.scope-list .check svg { width: 16px; height: 16px; }

/* ── Contact Page ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-left .eyebrow { margin-bottom: 14px; }
.contact-left h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-left > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--fg);
}
.contact-info-item .ic {
  width: 18px; height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}
.contact-info-item .ic svg { width: 100%; height: 100%; }

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.map-placeholder .map-icon {
  width: 18px; height: 18px;
  color: var(--muted);
}
.map-placeholder .map-icon svg { width: 100%; height: 100%; }

/* Contact Form */
.contact-form {
  background: transparent;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 10px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}
.field input:focus,
.field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn {
  width: 100%;
  padding: 16px;
}

/* ── About Page ───────────────────────────────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content .left-text .est {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.about-content .left-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-content .left-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* ── Scroll Reveal ────────────────────────────────────────────────── */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Back to Top ──────────────────────────────────────────────────── */
.back-to-top {
  position: fixed; right: 28px; bottom: 28px; z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 16px; height: 16px; }

/* ── WhatsApp FAB ─────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  right: 28px; bottom: 80px;
  z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37,211,102,0.3);
  transition: transform var(--transition);
  border: none;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 24px; height: 24px; }

/* ── Mobile Nav Drawer ────────────────────────────────────────────── */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1100;
  background: #fff;
  display: flex; flex-direction: column;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.25,.8,.25,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.mobile-nav a.active { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 28px; right: 28px;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close svg { width: 16px; height: 16px; }
.mobile-nav .btn { margin-top: 30px; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .planning-cards { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-cols { grid-template-columns: 1fr; }
  .service-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .service-col:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step { border-bottom: 1px solid var(--border); padding-bottom: 28px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { border-bottom: 1px solid var(--border); }
  .about-home-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-page-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .sketch-section { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 1180px) {
  .brand { margin-right: 20px; }
  .brand-logo { height: 46px; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 11px; }
  .site-header .container { padding: 0 20px; }
  .header-cta { padding: 10px 16px; font-size: 10.5px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .lang-dropdown { display: none; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .site-header .container { height: 68px; }
  .brand-logo { height: 42px; }
  .footer-brand .brand-logo { height: 96px; }
  .section { padding: 70px 0; }
  .planning-cards { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 100px 0 60px; }
  .page-hero { min-height: 40vh; }
  .scroll-cue { display: none; }
  .about-home-images .img-secondary { display: none; }
}
@media (max-width: 480px) {
  .brand-logo { height: 36px; }
}
