/*
Theme Name: Arkastone Realty
Theme URI: 
Author: You
Description: Arkastone Realty Custom Theme
Version: 1.0
Text Domain: arkastone-realty
*/

:root {
  --forest: #0B2A26;
  --forest-mid: #123531;
  --moss: #1A3C36;
  --sage: #245047;
  --sage-light: #DCD4C3;
  --earth: #B9882F;
  --sand: #C9A24E;
  --sand-light: #E7D7B4;
  --cream: #F4F1EA;
  --warm-white: #FFFCF7;
  --stone: #8C8F8A;
  --charcoal: #0B2A26;
  --text-dark: #101815;
  --text-mid: #32403A;
  --text-light: #6B736F;
  --font-sans: 'Outfit', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --nav-height: 110px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  background: rgba(8, 34, 30, 0.72);
  backdrop-filter: blur(14px);
  transition: background 0.4s, box-shadow 0.4s, height 0.2s ease;
}

nav.scrolled {
  background: rgba(252, 250, 250, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  align-items: center;
  background: transparent;
}

.nav-logo-img {
  margin-top: 20px;
  height: 125px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.03);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  transition: color 0.4s;
  line-height: 1;
}

.nav-subsidiary {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.6);
  transition: color 0.4s;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.nav-subsidiary span {
  color: var(--sand);
  opacity: 0.9;
}

nav.scrolled .nav-logo {
  color: var(--text-dark);
}

nav.scrolled .nav-subsidiary {
  color: rgba(58, 58, 58, 0.6);
}

nav.scrolled .nav-subsidiary span {
  color: var(--earth);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.82);
  text-decoration: none;
  transition: color 0.3s;
}

nav.scrolled .nav-links a {
  color: var(--text-mid);
}

.nav-links a:hover {
  color: var(--sand) !important;
}

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest) !important;
  background: var(--sand);
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--sand-light) !important;
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10, 34, 30, 0.88) 0%, rgba(14, 44, 38, 0.62) 55%, rgba(18, 56, 48, 0.78) 100%),
    url('assets/corporate_hero.png') center/cover no-repeat;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(199, 168, 106, 0.18) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 2% 0;
  max-width: 780px;
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--warm-white);
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--sand-light);
}

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.75);
  max-width: 540px;
  margin-bottom: 48px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn-primary {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sand);
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.85);
  border: 1px solid rgba(245, 240, 230, 0.3);
  padding: 15px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--sand-light);
  color: var(--sand-light);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 240, 230, 0.45);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroIn 1.6s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(245, 240, 230, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--sand);
  animation: scrollSlide 2s 1s ease-in-out infinite;
}

@keyframes scrollSlide {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

/* ─── SECTION SHARED ─── */
section {
  padding: 80px 8%;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 24px;
}

.section-title em {
  font-style: normal;
  color: var(--moss);
}

/* ─── WHO WE ARE ─── */
.about-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {}

.about-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-item {
  border-top: 1px solid var(--sand-light);
  padding-top: 16px;
}

.value-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
}

.value-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

.about-right {
  position: relative;
}

.about-image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background:
    linear-gradient(135deg, rgba(10, 34, 30, 0.45) 0%, rgba(18, 56, 48, 0.22) 100%),
    url('assets/luxury_office.png') center/cover;
  border-radius: 4px;
  position: relative;
}

.about-image-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--sand);
  padding: 24px 28px;
  border-radius: 3px;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}

.badge-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin-top: 4px;
}

/* ─── PROJECTS ─── */
.projects-section {
  background: var(--warm-white);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--sand-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(17, 19, 24, 0.18);
}

.project-card-image {
  aspect-ratio: 4/3;
  background:
    linear-gradient(180deg, transparent 40%, rgba(10, 34, 30, 0.85) 100%),
    url('assets/premium_architecture.png') center/cover;
  position: relative;
  min-height: 360px;
}

.project-card-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--sand);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.project-card-content {
  padding: 48px 48px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.project-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 16px;
}

.project-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 8px;
}

.project-location {
  font-size: 13px;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--sand-light);
  padding-top: 28px;
  margin-bottom: 36px;
}

.stat-item {
  padding-right: 16px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}

.stat-unit {
  font-size: 11px;
  color: var(--earth);
  display: inline;
}

.stat-label {
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ─── TRUST ─── */
.trust-section {
  background: var(--forest);
  padding: 80px 8%;
}

.trust-header {
  text-align: center;
  margin-bottom: 72px;
}

.trust-header .section-eyebrow {
  color: var(--sand);
  justify-content: center;
}

.trust-header .section-eyebrow::before {
  background: var(--sand);
}

.trust-header .section-title {
  color: var(--warm-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.trust-item {
  background: rgba(12, 40, 34, 0.62);
  padding: 48px 40px;
  transition: background 0.3s;
}

.trust-item:hover {
  background: rgba(12, 40, 34, 0.82);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sand);
  fill: none;
  stroke-width: 1.5;
}

.trust-item-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.trust-item-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.65);
}

.trust-colliers {
  margin-top: 64px;
  text-align: center;
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  padding-top: 48px;
}

.colliers-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.4);
  margin-bottom: 12px;
}

.colliers-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--sand-light);
  font-style: normal;
}

/* ─── ENQUIRY ─── */
.enquiry-section {
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--sand-light);
}

.enquiry-left {}

.enquiry-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 2px;
}

.contact-val {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
}

/* ─── FORM ─── */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--warm-white);
  border: 1px solid var(--sand-light);
  border-radius: 2px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(199, 168, 106, 0.18);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--stone);
}

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

.form-submit {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--forest);
  border: none;
  padding: 18px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--forest);
  padding: 72px 8% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 2.1fr) repeat(3, minmax(160px, 1fr));
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 230, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-subline {
  margin-top: 14px;
  font-style: italic;
  color: rgba(245, 240, 230, 0.28);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 230, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-social {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 230, 0.55);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--sand-light);
  transform: translateX(2px);
}

.footer-social-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 230, 0.6);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.3);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(245, 240, 230, 0.25);
  max-width: 620px;
  text-align: right;
  line-height: 1.6;
}

/* ─── WHATSAPP FAB ─── */
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fabIn 1s 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fabIn {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── SERVICES ─── */
.services-section {
  background: var(--warm-white);
  padding: 80px 8%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.services-header {
  max-width: 620px;
  margin-bottom: 36px;
  padding-top: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--warm-white);
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}

.service-card {
  background: var(--warm-white);
  padding: 36px 34px 34px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  border-right: 1px solid rgba(200, 169, 110, 0.35);
  border-bottom: 1px solid rgba(200, 169, 110, 0.35);
}

.service-card:nth-child(2n) {
  border-right: none;
}

.service-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background: var(--cream);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: border-color 0.3s;
}

.service-card:hover .service-icon {
  border-color: var(--sand);
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--earth);
  fill: none;
  stroke-width: 1.5;
}

.service-number {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 240px;
}

.service-tag {
  display: inline-block;
  margin-top: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  border-bottom: 1px solid var(--sand-light);
  padding-bottom: 2px;
}

.services-luxbury-note {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--warm-white);
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 6px;
  border-left: 3px solid var(--sand);
  width: 100%;
}

.luxbury-note-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.luxbury-note-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 920px;
}

.luxbury-note-text strong {
  font-weight: 600;
  color: var(--forest);
}

/* ─── BLOG ─── */
.blog-section {
  background: var(--warm-white);
  padding: 80px 8%;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 56px;
}

.blog-view-all {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  background: none;
  border: none;
  padding: 0 0 6px;
  cursor: pointer;
  border-bottom: 1px solid var(--sand-light);
}

.blog-view-all:hover {
  color: var(--forest);
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--warm-white);
  border: 1px solid var(--sand-light);
  border-radius: 6px;
  overflow: hidden;
  min-height: 380px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17, 19, 24, 0.12);
}

.blog-card-featured {
  min-height: 380px;
}

.blog-card-image {
  background-size: cover;
  background-position: center;
  min-height: 260px;
}

.blog-card-image-1 {
  background-image: url('assets/wealth_investment.png');
}

.blog-card-image-2 {
  background-image: url('assets/skyline_cityscape.png');
}

.blog-card-image-3 {
  background-image: url('assets/advisory_lifestyle.png');
}

.blog-card-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(200, 169, 110, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
}

.blog-date {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.08em;
}

.blog-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 22px;
  max-width: 440px;
}

.blog-read-more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-light);
  padding-bottom: 6px;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: var(--forest);
}

.blog-extra {
  display: grid;
  gap: 28px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* ─── FOUNDER ─── */
.founder-section {
  background: var(--cream);
  padding: 80px 8%;
}

.founder-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.founder-photo-col {
  position: relative;
}

.founder-photo-frame {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 14, 18, 0.45) 100%);
}

.founder-credentials {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--sand);
  padding: 20px 24px;
  border-radius: 3px;
  text-align: center;
}

.founder-cred-line {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.8;
}

.founder-content {}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.05;
  margin-bottom: 6px;
}

.founder-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 32px;
}

.founder-bio {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.founder-career {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.career-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand-light);
}

.career-item:first-child {
  border-top: 1px solid var(--sand-light);
}

.career-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
  margin-top: 6px;
}

.career-company {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 4px;
}

.career-role {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .services-section {
    padding: 90px 6% 80px;
  }

  .services-header {
    max-width: 520px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
  }

  .service-card:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--sand-light);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-desc {
    max-width: 100%;
  }

  .services-luxbury-note {
    flex-direction: row;
    align-items: flex-start;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-body {
    padding: 28px 26px;
  }

  .blog-card-image {
    min-height: 220px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
  }

  .founder-photo-col {
    max-width: 300px;
  }

  .founder-credentials {
    right: 0;
    bottom: -16px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 60px 6%;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    align-items: center;
    padding-bottom: 100px;
  }

  .hero-content {
    padding: 100px 6% 0;
  }

  .hero-eyebrow {
    margin-bottom: 20px;
  }

  .hero-headline {
    font-size: clamp(34px, 7.2vw, 52px);
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero-cta-row {
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 14px 28px;
  }

  nav {
    height: 104px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-right {
    display: none;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card-image {
    min-height: 260px;
  }

  .project-card-content {
    padding: 36px 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .hero {
    height: auto;
    min-height: 100vh;
    align-items: center;
    padding-bottom: 120px;
  }

  .hero-content {
    padding: 90px 6% 0;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 0.16em;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  .hero-headline {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 36px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost {
    text-align: center;
    width: 100%;
    padding: 15px 24px;
  }

  .hero-scroll {
    left: 6%;
  }

  .blog-section {
    padding: 60px 6%;
  }

  .blog-card {
    min-height: 0;
  }

  .blog-card-body {
    padding: 24px 22px;
  }

  .blog-card-image {
    min-height: 200px;
  }

  .blog-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .blog-excerpt {
    font-size: 13px;
  }
}

/* Fix for unwanted dot */
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

/* Hamburger fix */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--warm-white);
  margin: 6px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

nav.scrolled .hamburger span {
  background: var(--forest);
}

/* Mobile pe hamburger visible */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--forest);
    flex-direction: column;
    padding: 20px 5%;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }
}

html {
  margin-top: 0 !important;
}

#wpadminbar {
  display: none !important;
}

/* Agar admin bar chahiye to ye use karo */
body.admin-bar nav {
  top: 32px;
}