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

:root {
  /* Color Palette - Warm Architectural Luxury */
  --ink: #141312;
  --ink-soft: #423f3b;
  --ink-muted: #736e67;
  --line: #e6e2db;
  --line-light: #f1eeea;
  --bg: #ffffff;
  --bg-alt: #faf8f5;
  --bg-dark: #121110;
  --bg-card: #ffffff;
  
  --accent: #8a5a34;          /* Warm timber tone */
  --accent-hover: #704727;
  --accent-dark: #1e1b18;
  --accent-light: #f7f1eb;
  --gold: #d4a359;
  --white: #ffffff;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(0, 0, 0, 0.14);
  --shadow-glass: 0 8px 32px 0 rgba(20, 18, 15, 0.08);

  /* Borders & Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Transitions */
  --tr-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast), border-color var(--tr-fast), background-color var(--tr-fast), transform var(--tr-fast);
}

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

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--bg-dark);
  color: #e8e4dc;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar span.highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Header & Glassmorphic Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: background var(--tr-fast), padding var(--tr-fast);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  white-space: nowrap;
}

.brand-logo {
  height: clamp(30px, 7vw, 42px);
  width: auto;
  display: block;
}

nav.links {
  display: flex;
  gap: 24px;
  font-size: 17px;
  font-weight: 700;
  align-items: center;
}

nav.links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

nav.links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-item {
  position: relative;
}

.nav-item > a::after {
  content: "▾";
  font-size: 11px;
  opacity: 0.6;
  transition: transform var(--tr-fast);
}

.nav-item:hover > a::after {
  transform: rotate(180deg);
  color: var(--accent);
  opacity: 1;
}

.nav-item.no-caret > a::after {
  content: "";
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-width: 230px;
  padding: 8px 0;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--tr-fast), transform var(--tr-fast), visibility var(--tr-fast);
  z-index: 950;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav.links .dropdown a {
  display: block;
  padding: 12px 26px;
  font-weight: 500;
  border-bottom: none !important;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-radius: 0;
}

nav.links .dropdown a:hover {
  background: var(--bg-alt);
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14.5px;
  font-weight: 600;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: all var(--tr-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-fast);
}

.nav-cta:hover {
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(138, 90, 52, 0.3);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--tr-fast), opacity var(--tr-fast);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1320px) {
  .nav { padding: 14px 20px; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  nav.links {
    display: none;
    order: 5;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 14px;
    padding-top: 10px;
  }
  nav.links.open { display: flex; }
  nav.links a {
    display: block;
    width: 100%;
    padding: 12px 6px;
    border-bottom: 1px solid var(--line-light);
    font-size: 16px;
  }
  .nav-item { width: 100%; }
  .nav-item > a::after { content: ""; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 6px 16px;
    min-width: 0;
  }
  nav.links .dropdown a { padding: 10px 14px; font-size: 15px; }
}

/* ---------- Global Buttons & Badges ---------- */
section {
  padding: 80px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 16px;
  border: 1px solid rgba(138, 90, 52, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white) !important;
  padding: 15px 32px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: all var(--tr-fast);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 90, 52, 0.28);
}

.btn.outline {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--line);
}

.btn.outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white) !important;
  box-shadow: var(--shadow-md);
}

/* ---------- Section Headings ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-head h3 {
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.65;
  margin-top: 14px;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 82vh;
  min-height: 580px;
  padding: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 14, 12, 0.72) 0%, rgba(16, 14, 12, 0.35) 60%, rgba(16, 14, 12, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  color: var(--white);
}

.hero-content h2 {
  font-size: clamp(38px, 5.2vw, 62px);
  max-width: 15ch;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  margin-top: 22px;
  font-size: 19.5px;
  max-width: 44ch;
  color: #f3f0e8;
  line-height: 1.6;
  font-weight: 400;
}

.hero-btn-wrap {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--tr-fast);
}

.hero-dot.active {
  background: var(--white);
  width: 28px;
}

/* ---------- Stats Section ---------- */
.stats {
  background: var(--bg-alt);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 28px;
}

.stats-card {
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}

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

.stats-grid .num {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-grid .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ---------- Shape Cards (Category Layouts) ---------- */
.shapes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.shape-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.shape-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shape-card:hover img {
  transform: scale(1.08);
}

.shape-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity var(--tr-fast);
}

.shape-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  color: var(--white);
}

.shape-label h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.shape-label span {
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--gold);
}

@media (max-width: 760px) {
  .shapes-grid { grid-template-columns: 1fr; }
}

/* ---------- Catalog & Filter Tabs ---------- */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.tab {
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 24px;
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
  color: var(--ink-soft);
  transition: all var(--tr-fast);
  border-radius: var(--radius-pill);
}

.tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

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

@media (max-width: 1080px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr-smooth), box-shadow var(--tr-smooth), border-color var(--tr-smooth);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}

.card .img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}

.card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

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

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 18, 15, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-body {
  padding: 20px;
}

.card-body h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.card-body .price {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
}

.enquire-btn {
  margin-top: 16px;
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  padding: 12px 0;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--tr-fast);
  border-radius: var(--radius-sm);
  color: var(--ink);
}

.enquire-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ---------- How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.step {
  background: var(--white);
  padding: 28px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr-fast);
}

.step:hover {
  transform: translateY(-4px);
}

.step img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--white);
}

.step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Why Choose Us ---------- */
.why-wrap {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-grid img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(138, 90, 52, 0.2);
}

.why-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid img { height: 320px; }
}

/* ---------- Finishes Swatches ---------- */
.finishes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.finish-card {
  text-align: center;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr-fast);
}

.finish-card:hover {
  transform: translateY(-4px);
}

.finish-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.finish-card .name {
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
}

.finish-card .tag {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}

@media (max-width: 900px) { .finishes { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .finishes { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Gallery & Lightbox ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .cap {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(16, 14, 12, 0.85) 0%, rgba(16, 14, 12, 0.2) 60%, rgba(16, 14, 12, 0) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--tr-smooth);
}

.gallery-item:hover .cap {
  opacity: 1;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-empty { text-align: center; color: var(--ink-soft); font-size: 17.5px; padding: 40px 0; grid-column: 1 / -1; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; } .gallery-item.tall { grid-row: span 1; } }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 28px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox .lb-cap {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--white);
  font-size: 16.5px;
  font-weight: 500;
  padding: 0 20px;
}

.lightbox .lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 36px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform var(--tr-fast);
}

.lightbox .lb-close:hover {
  transform: scale(1.15);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--bg-dark);
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 16, 0.6) 0%, rgba(18, 17, 16, 0.85) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.cta-content h3 {
  font-size: clamp(28px, 4vw, 42px);
  color: #ffffff !important;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.cta-content p {
  margin-top: 14px;
  font-size: 18.5px;
  color: #f1ede5;
  max-width: 48ch;
}

.cta-content .btn {
  margin-top: 28px;
  background: var(--white);
  color: var(--ink) !important;
  border-color: var(--white);
}

.cta-content .btn:hover {
  background: var(--accent);
  color: var(--white) !important;
  border-color: var(--accent);
}

/* ---------- Page Hero (Subpages) ---------- */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white) !important;
  padding: 64px 24px;
}

.page-hero-content h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 4px 24px rgba(0, 0, 0, 0.95);
  letter-spacing: -0.02em;
}

.page-hero-content p {
  font-size: 19.5px;
  color: #ffffff !important;
  margin-top: 16px;
  max-width: 52ch;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 4px 16px rgba(0, 0, 0, 0.9);
}

/* ---------- Forms & Inputs ---------- */
form.gform {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form.gform label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: -10px;
}

form.gform input,
form.gform textarea,
form.gform select {
  font-family: inherit;
  font-size: 16px;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

form.gform input:focus,
form.gform textarea:focus,
form.gform select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(138, 90, 52, 0.12);
}

form.gform textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-grid h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-grid p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.contact-list {
  margin-top: 32px;
  font-size: 16px;
}

.contact-list .row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-list .row span:first-child {
  color: var(--ink-soft);
  width: 90px;
  flex-shrink: 0;
  font-weight: 700;
}

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Quick Enquiry Modal Dialog ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 10, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--line);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-fast);
}

.modal-close:hover {
  background: var(--ink);
  color: var(--white);
}

.modal h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.modal .modal-sub {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-dark);
  color: #cfcbc0;
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

footer h5 {
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

footer .brand-foot {
  font-size: 26px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

footer p {
  font-size: 15px;
  line-height: 1.7;
  color: #b8b3a7;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

footer ul a {
  color: #b8b3a7;
  transition: color var(--tr-fast);
}

footer ul a:hover {
  color: var(--white);
}

.foot-bottom {
  border-top: 1px solid #2e2b26;
  margin-top: 56px;
  padding-top: 28px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: #928b7e;
}

@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
