:root {
    --primary-gold: #b8956a;
    --dark-text: #1b222b;
    --muted: #6b7586;
    --light-gray: #f8f7f3;
    --border: #e4e2dd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--dark-text);
    background: #ffffff;
    line-height: 1.6;
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 32px;
}

.navbar {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--primary-gold);
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 16px;
    font-weight: 700;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 1.4px;
    color: var(--muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.12em;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-gold);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border: 1px solid var(--dark-text);
    border-radius: 999px;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    transition: border-color 0.25s, color 0.25s;
}

.btn-explore:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.hero {
    padding: 120px 0 100px;
    background: #fbfaf7;
}

.hero-inner {
    max-width: 820px;
}

.hero-label {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(3rem, 4vw, 4.6rem);
    line-height: 1.02;
    margin-bottom: 26px;
}

.hero p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.btn-primary {
    background: var(--primary-gold);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #a07c52;
}

.btn-secondary {
    background: white;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
}

.btn-secondary:hover {
    background: var(--light-gray);
}

.stats {
    padding: 80px 0;
    background: #faf8f4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-family: Arial, sans-serif;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    margin-bottom: 18px;
}
.standard-section {
  padding: 100px 0;
  background: #fff;
}

.standard-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b89a4a;
  text-transform: uppercase;
  margin: 0 0 24px;
  font-weight: 600;
}

.standard-heading {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  color: #1a2236;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 0 28px;
}

.standard-desc {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  max-width: 680px;
  margin: 10px;
}

.about {
    padding: 100px 0;
    background: white;
}

.about-inner {
    display: grid;
    grid-template-columns: 15fr 3fr;
    gap: 48px;
    align-items: start;
     font-family: 'Playfair Display', serif;
    
}
.about-image {
  flex: 0 0 420px;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.principles-image {
  flex: 250px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.principles-image img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  object-position: center;
}

.about-copy h2 {
    font-size: clamp(2.7rem, 4vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.about-copy p {
    color: var(--muted);
    max-width: 680px;
    font-size: 1rem;
}

.about-grid {
    display: grid;
    gap: 24px;
}

.about-card {
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 18px;
    background: #fbfaf7;
}

.about-number {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
}

.about-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.about-card p {
    color: var(--muted);
    line-height: 1.7;
}

.story-section {
    padding: 100px 0;
    background: #f4f4f4; /* light grey like image */
}

.story-container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT SIDE */
.story-left {
    width: 40%;
}

.story-label {
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.story-left h2 {
    font-size: clamp(3rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 400;
}

/* RIGHT SIDE */
.story-right {
    width: 50%;
}

.story-right p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 650px;
}
.principles-section {
  padding: 80px 40px;
  background: #faf9f6;
  font-family: serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.small-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #b8956a;
  margin-bottom: 20px;
}

.main-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #1b222b;
  max-width: 700px;
}

.principles-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.card {
  flex: 1;
  border-top: 1px solid #e4e2dd;
  padding-top: 20px;
}

.number {
  font-size: 12px;
  color: #b8956a;
  display: block;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1b222b;
}

.card p {
  font-size: 14px;
  color: #6b7586;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 768px) {
  .principles-grid {
    flex-direction: column;
  }

  .main-title {
    font-size: 28px;
  }
}


.cta-section {
  background: #f5f3ee;
  text-align: center;
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b89a4a;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-weight: 600;
  margin: 0;
}

.cta-heading {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: #1a2236;
  line-height: 1.15;
  max-width: 760px;
  margin: 0;
}

.cta-btn {
  display: inline-block;
  background: #b89a4a;
  color: #1a2236;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 50px;
  transition: background 0.2s ease;
}

.cta-btn:hover {
  background: #a08838;
}

/* VISION AND MISSION SECTION */
.vm-section {
  padding: 100px 0;
  background: #fff;
}

.vm-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}

.vm-divider {
  width: 0.5px;
  background: #e0ddd5;
  height: 100%;
  min-height: 200px;
}

.vm-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b89a4a;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px;
}

.vm-heading {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a2236;
  line-height: 1.3;
  margin: 0 0 20px;
}

.vm-desc {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* CAPABILITY SECTION */
.capability-section {
  display: flex;
   padding: 120px 240px;
  gap:180px;
  background: #fafaf8;
  font-family: Georgia, 'Times New Roman', serif;
}

.capability-left { flex: 0 0 340px; }
.capability-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b89a4a;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}
.capability-heading {
  font-size: 44px;
  font-weight: 400;
  color: #1a2236;
  line-height: 1.1;
  margin: 0 0 24px;
}
.capability-desc {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.capability-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  border-bottom: 0.5px solid #e0ddd5;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #1a2236;
}
.capability-item:nth-child(odd) { border-right: 0.5px solid #e0ddd5; }
.capability-item:nth-last-child(-n+2) { border-bottom: none; }
.diamond {
  width: 10px;
  height: 10px;
  background: #b89a4a;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ONLY affects this section */
.practice-section {
    padding: 100px 0;
    background: #f8f7f3;
}

.practice-container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
}

.practice-left {
    width: 40%;
}

.practice-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.practice-left h2 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 400;
}

.practice-right {
    width: 50%;
}

.practice-right p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.practice-link {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--dark-text);
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 3px;
}

.projects {
    padding: 100px 0;
    background: #faf8f4;
}

.projects-inner {
    display: grid;
    gap: 40px;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 42px;
}

.projects-header h2 {
    font-size: clamp(2.7rem, 4vw, 3.8rem);
    line-height: 1.05;
    max-width: 780px;
}

.all-projects {
    text-decoration: none;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    letter-spacing: 0.08em;
    transition: border-color 0.25s, color 0.25s;
}

.all-projects:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.project-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-image {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg, #d4d4d4, #8c8c8c);
}

.project-number {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 2rem;
    font-family: Arial, sans-serif;
}

.project-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
}

.project-content {
    padding: 26px;
}

.project-desc {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--muted);
}

.project-specs {
    font-size: 0.88rem;
    color: var(--primary-gold);
    letter-spacing: 0.05em;
    font-family: Arial, sans-serif;
}

.footer {
    padding: 80px 0 60px;
    background: white;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-copy p {
    color: var(--muted);
    line-height: 1.8;
}

.footer-location {
    margin-top: 24px;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-family: Arial, sans-serif;
}

.footer-nav h4,
.footer-links h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
    font-family: Arial, sans-serif;
}

.footer-nav ul,
.footer-links ul {
    list-style: none;
}

.footer-nav li,
.footer-links li {
    margin-bottom: 14px;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.footer-nav a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s;
}

.footer-nav a:hover {
    color: var(--primary-gold);
}

.footer-links span {
    color: var(--primary-gold);
    margin-right: 10px;
    font-family: Arial, sans-serif;
}

@media (max-width: 1040px) {
    .about-inner,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .navbar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .btn-explore {
        width: 100%;
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner,
    .about-inner,
    .projects-inner {
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .hero {
        padding-top: 90px;
    }

    .container {
        padding: 0 20px;
    }

    .projects-header,
    .footer-inner {
        gap: 24px;
    }
}
.project-detail {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 120px;
  background: #fff;
}

.project-image-wrap {
  flex: 0 0 460px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.project-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.project-number {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.project-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(50, 50, 50, 0.75);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-family: Arial, sans-serif;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

.project-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff;
  font-family: Arial, sans-serif;
}

.project-image-caption .project-location {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #b89a4a;
  margin: 0 0 6px;
}

.project-image-caption h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 4px;
}

.project-image-caption p {
  font-size: 13px;
  margin: 0;
  opacity: 0.8;
}

.project-info {
  flex: 1;
  padding-top: 8px;
}

.project-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b89a4a;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.project-title {
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  color: #1a2236;
  margin: 0 0 20px;
}

.project-desc {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 36px;
}

.project-sub-label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #999;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.project-residences {
  border-top: 0.5px solid #e0ddd5;
  margin-bottom: 32px;
}

.residence-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 0.5px solid #e0ddd5;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #1a2236;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  border: 0.5px solid #ccc;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  color: #444;
}

.project-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #444;
}

.diamond {
  width: 10px;
  height: 10px;
  background: #b89a4a;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f5f3ee;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* crops to fill the box completely */
    object-position: center;  /* change to "top" or "bottom" to control which part shows */
}

.why-section {
  padding: 100px 0;
  background: #f5f3ee;
}

.why-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: #b89a4a;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}

.why-heading {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #1a2236;
  margin: 0 0 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 4px;
  border: 0.5px solid #e0ddd5;
}

.why-icon {
  font-size: 28px;
  color: #b89a4a;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a2236;
  margin: 0 0 12px;
}

.why-card p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

.project-stats-bar {
  background: #f5f3ee;
  padding: 80px 0;
}

.project-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.project-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #999;
  text-transform: uppercase;
  margin: 0;
}

.stat-value {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #1a2236;
  margin: 0;
  line-height: 1.1;
}

.stat-sub {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #888;
  margin: 0;
}
.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-top: 0.5px solid #e0ddd5;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.08em;
  background: #fff;
}

.bottom-bar p {
  margin: 0;
}
