:root {
  --brown-950: #2b1511;
  --brown-900: #3c1d17;
  --brown-800: #4d261e;
  --brown-700: #663329;
  --gold: #d6a96c;
  --gold-light: #efcf9c;
  --cream: #f1dfc5;
  --cream-2: #f8eee0;
  --ink: #2c211d;
  --muted: #7a675d;
  --white: #fffaf4;
  --shadow: 0 30px 70px rgba(39, 18, 13, .18);
  --radius: 28px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream-2); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 42px)); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section-light { background: var(--cream-2); }
.section-brown { background: var(--brown-900); color: var(--white); }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 20px max(28px, calc((100vw - 1180px)/2)); color: var(--white); transition: .3s ease; }
.site-header.scrolled { background: rgba(43,21,17,.94); backdrop-filter: blur(16px); padding-top: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(239,207,156,.15); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--gold-light); min-width: 205px; }
.brand-mark { width: 42px; height: 42px; fill: currentColor; }
.brand-copy { line-height: .9; display: grid; gap: 5px; }
.brand-copy small { font-size: 9px; letter-spacing: .22em; font-weight: 700; }
.brand-copy strong { font-family: var(--serif); font-size: 23px; letter-spacing: .06em; }
.primary-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; letter-spacing: .06em; }
.primary-nav a { position: relative; opacity: .88; }
.primary-nav a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s; }
.primary-nav a:hover::after { right: 0; }
.nav-cta { padding: 12px 17px; border: 1px solid rgba(239,207,156,.65); color: var(--gold-light); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; height: 1px; background: var(--white); margin: 6px 0; transition: .2s; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--white); background: var(--brown-950); overflow: hidden; }
.hero-media, .vision-bg, .contact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media { object-position: center 58%; transform: scale(1.035); animation: heroZoom 12s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1.035); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(36,16,12,.95) 0%, rgba(49,20,15,.78) 42%, rgba(49,20,15,.28) 72%, rgba(49,20,15,.48) 100%), linear-gradient(0deg, rgba(30,13,10,.6), transparent 45%); }
.hero-grain { position: absolute; inset: 0; opacity: .08; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; padding-top: 115px; padding-bottom: 155px; }
.eyebrow, .section-kicker { text-transform: uppercase; font-size: 11px; letter-spacing: .25em; font-weight: 700; color: var(--gold); }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 40px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .section-copy h2, .vision-card h2, .philosophy-copy h2, .contact h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; margin: 16px 0 24px; line-height: .96; }
.hero h1 { font-size: clamp(56px, 7.6vw, 108px); max-width: 970px; text-wrap: balance; }
em { font-style: italic; color: var(--gold-light); }
.hero-copy { max-width: 690px; font-size: 17px; color: rgba(255,250,244,.8); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; transition: .25s ease; }
.btn-gold { background: var(--gold); color: var(--brown-950); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.38); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.hero-stats { position: absolute; z-index: 2; left: 50%; transform: translateX(-50%); bottom: 28px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); padding-top: 19px; }
.hero-stats div { display: flex; flex-direction: column; padding-right: 30px; }
.hero-stats strong { font-family: var(--serif); color: var(--gold-light); font-size: 26px; font-weight: 400; }
.hero-stats span { font-size: 10px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; }
.scroll-cue { position: absolute; z-index: 2; right: 25px; bottom: 24px; writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: .2em; font-size: 8px; color: rgba(255,255,255,.5); display: none; }
.scroll-cue span { width: 1px; height: 34px; background: var(--gold); display: block; margin: 0 auto 8px; }

.split-layout { display: grid; grid-template-columns: 1.03fr .97fr; gap: 88px; align-items: center; }
.image-frame { position: relative; min-height: 565px; border-radius: 48px 0 48px 0; overflow: hidden; box-shadow: var(--shadow); }
.image-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(57,28,21,.28)); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-badge { position: absolute; z-index: 2; bottom: 24px; right: 24px; width: 140px; height: 140px; border-radius: 50%; background: var(--brown-900); color: var(--gold-light); display: grid; place-content: center; text-align: center; border: 1px solid rgba(239,207,156,.3); }
.image-badge strong { font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1; }
.image-badge span { font-size: 9px; text-transform: uppercase; letter-spacing: .16em; margin-top: 7px; }
.section-copy h2, .section-heading h2, .philosophy-copy h2, .contact h2 { font-size: clamp(42px, 5vw, 70px); }
.section-copy > p:not(.section-kicker), .philosophy-copy > p:not(.section-kicker) { color: var(--muted); font-size: 16px; max-width: 620px; }
.signature-line { width: 72px; height: 1px; background: var(--gold); margin: 34px 0; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; }
.about-points span { border: 1px solid rgba(102,51,41,.18); padding: 9px 13px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

.centered { max-width: 800px; margin-inline: auto; text-align: center; }
.section-heading > p:last-child { color: rgba(255,255,255,.62); }
.leader-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.leader-card { min-height: 350px; border: 1px solid rgba(239,207,156,.16); background: rgba(255,255,255,.035); transition: .3s; position: relative; overflow: hidden; }
.leader-card::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(35,15,11,.94), rgba(35,15,11,.08) 62%); }
.leader-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 70% 20%, rgba(214,169,108,.18), transparent 40%); opacity: 0; transition: .3s; }
.leader-card:hover { transform: translateY(-6px); border-color: rgba(239,207,156,.45); }
.leader-card:hover::after { opacity: 1; }
.leader-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s ease; }
.leader-card:hover > img { transform: scale(1.035); }
.leader-meta { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.leader-card h3 { font-family: var(--serif); color: var(--cream); font-weight: 400; font-size: 24px; margin: 0; }
.leader-card p { margin: 4px 0 0; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.leadership-quote { font-family: var(--serif); font-style: italic; text-align: center; max-width: 800px; margin: 60px auto 0; color: rgba(255,255,255,.68); font-size: clamp(20px, 2vw, 28px); }

.projects { background: #fff9f0; }
.projects-top { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 42px; }
.project-filters { display: flex; gap: 7px; flex-wrap: wrap; }
.filter { border: 1px solid rgba(77,38,30,.2); background: transparent; color: var(--brown-800); padding: 10px 17px; cursor: pointer; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; transition: .25s; }
.filter.active, .filter:hover { background: var(--brown-800); color: var(--cream); }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.project-card { grid-column: span 4; min-height: 430px; position: relative; overflow: hidden; background: var(--brown-900); transition: opacity .25s, transform .25s; }
.project-card-wide { grid-column: span 8; }
.project-card[hidden] { display: none; }
.project-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .65s cubic-bezier(.2,.6,.2,1); }
.project-card:hover img { transform: scale(1.055); }
.project-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(32,13,9,.9), rgba(32,13,9,.05) 65%); }
.project-info { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; color: var(--white); }
.project-info span, .text-project span { text-transform: uppercase; letter-spacing: .13em; font-size: 9px; color: var(--gold-light); }
.project-info h3, .text-project h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin: 4px 0; }
.project-info p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; }
.text-project { background: var(--cream); color: var(--brown-900); display: grid; place-content: end; padding: 32px; border: 1px solid rgba(77,38,30,.12); }
.text-project::after { content: ''; position: absolute; top: 28px; right: 28px; width: 54px; height: 54px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.text-project p { color: var(--muted); font-size: 13px; }

.vision { min-height: 760px; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.vision-bg { object-position: center; }
.vision-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(47,22,16,.95), rgba(47,22,16,.5)); }
.vision-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vision-card { padding: 48px; min-height: 430px; border: 1px solid rgba(239,207,156,.24); background: rgba(56,26,19,.72); backdrop-filter: blur(7px); display: flex; flex-direction: column; justify-content: center; }
.vision-card h2 { font-size: clamp(36px, 4vw, 54px); }
.vision-card p:last-child { color: rgba(255,255,255,.72); }

.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.principles { margin-top: 38px; display: grid; gap: 0; }
.principles article { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(77,38,30,.13); }
.principles span { font-family: var(--serif); color: var(--gold); font-size: 19px; }
.principles h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 20px; }
.principles p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.principle-card { position: relative; cursor: pointer; transition: background .25s ease, padding .25s ease, transform .25s ease, border-color .25s ease; outline: none; }
.principle-card::after { content: ''; position: absolute; right: 0; top: 50%; width: 22px; height: 1px; background: var(--gold); opacity: 0; transform: translate(-8px,-50%); transition: .25s ease; }
.principle-card:hover, .principle-card:focus-visible { background: rgba(214,169,108,.10); padding-left: 14px; padding-right: 34px; border-color: rgba(214,169,108,.4); }
.principle-card:hover::after, .principle-card:focus-visible::after { opacity: 1; transform: translate(0,-50%); }
.principle-card small { display: inline-block; margin-top: 9px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .78; }

.principle-modal { position: fixed; inset: 0; z-index: 110; display: none; place-items: center; padding: 28px; }
.principle-modal.is-open { display: grid; }
.principle-modal-backdrop { position: absolute; inset: 0; background: rgba(27,11,8,.84); backdrop-filter: blur(9px); animation: modalFade .22s ease both; }
.principle-modal-panel { position: relative; z-index: 1; width: min(760px, 100%); max-height: calc(100vh - 56px); overflow: auto; padding: 56px 60px 48px; background: linear-gradient(145deg, var(--cream-2), #f3dfc2); color: var(--ink); border: 1px solid rgba(214,169,108,.45); box-shadow: 0 38px 100px rgba(0,0,0,.42); animation: modalRise .3s cubic-bezier(.2,.7,.2,1) both; }
.principle-modal-panel::before { content: ''; position: absolute; left: 0; top: 0; width: 7px; height: 100%; background: var(--gold); }
.principle-modal-number { position: absolute; right: 34px; bottom: -22px; font-family: var(--serif); font-size: 150px; line-height: 1; color: rgba(77,38,30,.055); pointer-events: none; }
.principle-modal-panel h2 { position: relative; margin: 12px 0 22px; max-width: 540px; font-family: var(--serif); font-size: clamp(38px, 6vw, 62px); line-height: 1.02; font-weight: 400; color: var(--brown-900); letter-spacing: -.035em; }
.principle-rule { width: 58px; height: 2px; margin-bottom: 26px; background: var(--gold); }
.principle-modal-description { position: relative; margin: 0; max-width: 540px; font-family: var(--serif); font-size: 23px; line-height: 1.5; color: var(--brown-800); }
.principle-modal-context { position: relative; margin: 28px 0 0; padding-top: 20px; max-width: 540px; border-top: 1px solid rgba(77,38,30,.14); color: var(--muted); font-size: 12px; line-height: 1.7; }
.principle-modal-body { position: relative; margin-top: 22px; max-width: 560px; display: grid; gap: 12px; }
.principle-modal-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.principle-modal-points-wrap { position: relative; margin-top: 26px; padding: 22px 24px; max-width: 560px; background: rgba(214,169,108,.12); border-left: 3px solid var(--gold); }
.principle-modal-points-wrap h3 { margin: 0 0 13px; font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--brown-900); }
.principle-modal-points { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.principle-modal-points li { position: relative; padding-left: 18px; color: var(--brown-800); font-size: 13px; line-height: 1.55; }
.principle-modal-points li::before { content: ''; position: absolute; left: 0; top: .75em; width: 7px; height: 1px; background: var(--gold); }
.principle-modal-closing { position: relative; margin: 24px 0 0; max-width: 540px; font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--brown-900); font-style: italic; }

@media (max-width: 560px) {
  .principle-modal { padding: 14px; }
  .principle-modal-panel { padding: 52px 28px 38px 34px; }
  .principle-modal-panel h2 { font-size: 39px; }
  .principle-modal-description { font-size: 20px; }
  .principle-modal-number { font-size: 112px; right: 18px; }
}

.values-visual { position: relative; min-height: 650px; }
.values-visual > img { position: absolute; inset: 0 50px 80px 0; width: calc(100% - 50px); height: calc(100% - 80px); object-fit: cover; border-radius: 0 50px 0 50px; box-shadow: var(--shadow); }
.values-card { position: absolute; right: 0; bottom: 0; width: 72%; padding: 28px; background: var(--brown-900); color: var(--gold-light); display: flex; flex-wrap: wrap; gap: 10px 18px; box-shadow: var(--shadow); }
.values-card span { font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }

.achievement-strip { background: var(--gold); color: var(--brown-950); padding: 20px 0; }
.achievement-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 25px; text-align: center; }
.achievement-grid p { margin: 0; font-family: var(--serif); font-size: 20px; }
.achievement-grid span { width: 5px; height: 5px; border-radius: 50%; background: var(--brown-950); opacity: .45; }

.contact { min-height: 640px; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.contact-bg { object-position: center; }
.contact-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,21,17,.96), rgba(43,21,17,.62), rgba(43,21,17,.38)); }
.contact-content { position: relative; z-index: 2; }
.contact h2 { max-width: 750px; }
.contact-address { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.8; }
.contact-address strong { color: var(--white); font-weight: 500; }

.site-footer { background: var(--brown-950); color: rgba(255,255,255,.54); padding: 34px 0; border-top: 1px solid rgba(239,207,156,.12); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 20px; }
.footer-brand { transform: scale(.86); transform-origin: left center; }
.footer-grid > p:nth-child(2) { text-align: center; font-family: var(--serif); font-style: italic; color: var(--gold-light); }
.copyright { text-align: right; font-size: 11px; }

.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal { transform: translateY(22px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 980px) {
  .site-header { padding-inline: 22px; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: 100%; right: 16px; left: 16px; padding: 22px; background: rgba(43,21,17,.98); border: 1px solid rgba(239,207,156,.15); display: none; flex-direction: column; align-items: stretch; gap: 5px; }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 11px 8px; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .split-layout, .philosophy-grid { grid-template-columns: 1fr; gap: 55px; }
  .image-frame { min-height: 480px; }
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .project-card, .project-card-wide { grid-column: span 6; }
  .vision-grid { grid-template-columns: 1fr; }
  .vision { padding: 90px 0; }
  .vision-card { min-height: auto; }
  .values-visual { min-height: 560px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { margin-inline: auto; transform-origin: center; }
  .copyright, .footer-grid > p:nth-child(2) { text-align: center; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .brand { min-width: auto; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-copy strong { font-size: 20px; }
  .hero { min-height: 860px; align-items: flex-start; }
  .hero-media { object-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(36,16,12,.96), rgba(49,20,15,.65)), linear-gradient(0deg, rgba(30,13,10,.7), transparent 55%); }
  .hero-content { padding-top: 170px; padding-bottom: 260px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-copy { font-size: 15px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 15px 8px; bottom: 36px; }
  .hero-stats div { padding-right: 8px; }
  .hero-stats strong { font-size: 22px; }
  .hero-stats span { font-size: 8px; }
  .image-frame { min-height: 390px; border-radius: 34px 0 34px 0; }
  .image-badge { width: 112px; height: 112px; }
  .section-copy h2, .section-heading h2, .philosophy-copy h2, .contact h2 { font-size: 45px; }
  .leader-grid { grid-template-columns: 1fr; }
  .leader-card { min-height: 200px; }
  .projects-top { display: block; }
  .project-filters { margin-top: 24px; }
  .project-card, .project-card-wide { grid-column: span 12; min-height: 410px; }
  .vision-card { padding: 30px 24px; }
  .values-visual { min-height: 500px; }
  .values-visual > img { inset: 0 0 120px 0; width: 100%; height: calc(100% - 120px); }
  .values-card { width: 88%; }
  .achievement-grid { grid-template-columns: 1fr; gap: 8px; }
  .achievement-grid span { display: none; }
  .achievement-grid p { font-size: 17px; }
  .contact { min-height: 610px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Interactive project portfolio */
.projects-hint { margin: 14px 0 0; max-width: 610px; color: var(--muted); font-size: 13px; }
.project-card { cursor: pointer; }
.project-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.project-card::after { content: ''; position: absolute; inset: 0; border: 1px solid transparent; pointer-events: none; transition: border-color .25s ease; }
.project-card:hover::after, .project-card:focus-visible::after { border-color: rgba(239,207,156,.65); }
.project-info b { display: inline-flex; margin-top: 13px; font-size: 9px; line-height: 1; text-transform: uppercase; letter-spacing: .13em; color: var(--gold-light); font-weight: 700; transition: transform .25s ease; }
.project-card:hover .project-info b { transform: translateX(5px); }
.project-card img { object-position: center; }
.project-card[data-project="saffron"] img,
.project-card[data-project="crown"] img,
.project-card[data-project="aalishan"] img,
.project-card[data-project="dzcity"] img,
.project-card[data-project="nova"] img,
.project-card[data-project="signature"] img,
.project-card[data-project="rahat"] img,
.project-card[data-project="navyashodra"] img { object-position: center 28%; }

body.modal-open { overflow: hidden; }
.project-modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 28px; }
.project-modal.is-open { display: grid; }
.project-modal-backdrop { position: absolute; inset: 0; background: rgba(27,11,8,.82); backdrop-filter: blur(9px); animation: modalFade .22s ease both; }
.project-modal-panel { position: relative; z-index: 1; width: min(1120px, 100%); max-height: calc(100vh - 56px); display: grid; grid-template-columns: minmax(310px, .88fr) minmax(0, 1.12fr); overflow: auto; background: var(--cream-2); color: var(--ink); box-shadow: 0 38px 100px rgba(0,0,0,.42); border: 1px solid rgba(214,169,108,.3); animation: modalRise .3s cubic-bezier(.2,.7,.2,1) both; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalRise { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; z-index: 4; top: 16px; right: 16px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(239,207,156,.5); background: rgba(43,21,17,.82); color: var(--gold-light); cursor: pointer; font-size: 28px; line-height: 1; transition: .2s ease; }
.modal-close:hover { background: var(--gold); color: var(--brown-950); }
.modal-project-media { position: sticky; top: 0; min-height: 760px; background: var(--brown-900); overflow: hidden; }
.modal-project-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(31,12,9,.5), transparent 40%); pointer-events: none; }
.modal-project-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.modal-status { position: absolute; z-index: 2; left: 22px; bottom: 22px; padding: 10px 13px; background: var(--gold); color: var(--brown-950); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 800; }
.modal-project-content { padding: 58px 54px 48px; }
.modal-project-content h2 { margin: 10px 0 10px; color: var(--brown-900); font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 68px); line-height: .98; letter-spacing: -.035em; }
.modal-type { margin: 0 0 32px; color: var(--muted); font-size: 15px; }
.modal-facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(77,38,30,.14); border-left: 1px solid rgba(77,38,30,.14); }
.modal-facts > div { min-height: 105px; padding: 21px 20px; border-right: 1px solid rgba(77,38,30,.14); border-bottom: 1px solid rgba(77,38,30,.14); display: flex; flex-direction: column; gap: 5px; }
.modal-facts span, .consultant-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 800; }
.modal-facts strong { color: var(--brown-800); font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.3; }
.modal-detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; margin-top: 36px; }
.modal-detail-grid h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 25px; font-weight: 400; color: var(--brown-900); }
.modal-features { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.modal-features li { position: relative; padding-left: 18px; color: var(--muted); font-size: 13px; }
.modal-features li::before { content: ''; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: var(--gold); }
.consultant-card { align-self: start; background: var(--brown-900); color: var(--white); padding: 25px; }
.consultant-card p { margin: 0; padding: 0 0 20px; }
.consultant-card p + p { padding-top: 20px; border-top: 1px solid rgba(239,207,156,.16); }
.consultant-card p:last-child { padding-bottom: 0; }
.consultant-card strong { display: block; margin-top: 7px; color: var(--cream); font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.35; }

@media (max-width: 900px) {
  .project-modal { padding: 16px; }
  .project-modal-panel { max-height: calc(100vh - 32px); grid-template-columns: 1fr; }
  .modal-project-media { position: relative; min-height: 420px; }
  .modal-project-content { padding: 40px 30px 34px; }
  .modal-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .project-modal { padding: 0; }
  .project-modal-panel { width: 100%; max-height: 100vh; min-height: 100vh; }
  .modal-project-media { min-height: 330px; }
  .modal-project-content { padding: 34px 20px 30px; }
  .modal-project-content h2 { font-size: 42px; }
  .modal-facts { grid-template-columns: 1fr; }
  .modal-facts > div { min-height: 86px; }
  .modal-close { top: 12px; right: 12px; }
}


/* Contact enquiry modal */
.contact-actions .btn { font-family: inherit; }
button.btn { border: 0; cursor: pointer; }
.enquiry-modal { position: fixed; inset: 0; z-index: 120; display: none; place-items: center; padding: 24px; }
.enquiry-modal.is-open { display: grid; }
.enquiry-modal-backdrop { position: absolute; inset: 0; background: rgba(27,11,8,.84); backdrop-filter: blur(9px); animation: modalFade .22s ease both; }
.enquiry-modal-panel { position: relative; z-index: 1; width: min(760px,100%); max-height: calc(100vh - 48px); overflow: auto; padding: 46px 48px 42px; background: var(--cream-2); color: var(--ink); border: 1px solid rgba(214,169,108,.35); box-shadow: 0 38px 100px rgba(0,0,0,.44); animation: modalRise .3s cubic-bezier(.2,.7,.2,1) both; }
.enquiry-modal-panel h2 { margin: 4px 0 10px; font-family: var(--serif); font-size: clamp(38px,5vw,58px); line-height: .98; font-weight: 400; color: var(--brown-900); }
.enquiry-modal-panel h2 em { color: var(--gold-deep); font-weight: 400; }
.enquiry-intro { margin: 0 0 26px; max-width: 560px; color: var(--muted); line-height: 1.65; }
.enquiry-form { margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label > span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--brown-800); font-weight: 700; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid rgba(74,36,28,.22); background: rgba(255,255,255,.58); color: var(--ink); padding: 13px 14px; font: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-grid textarea { resize: vertical; min-height: 130px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--gold-deep); background: #fff; box-shadow: 0 0 0 3px rgba(214,169,108,.16); }
.form-full { grid-column: 1 / -1; }
.enquiry-form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.btn-ghost-dark { background: transparent; color: var(--brown-900); border: 1px solid rgba(74,36,28,.28) !important; }
.btn-ghost-dark:hover { border-color: var(--gold-deep) !important; }
.enquiry-note { margin: 16px 0 0; font-size: 11px; color: var(--muted); }
.form-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 680px) { .enquiry-modal { padding: 0; } .enquiry-modal-panel { width: 100%; min-height: 100vh; max-height: 100vh; padding: 58px 22px 34px; } .form-grid { grid-template-columns: 1fr; } .form-full { grid-column: auto; } .enquiry-form-actions .btn { width: 100%; text-align: center; } }


/* V6 - Fast WhatsApp & call communication */
.contact-phone { margin: 18px 0 0; color: rgba(255,255,255,.72); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.contact-phone a { display: inline-block; margin-left: 10px; color: var(--gold-light); font-size: 15px; letter-spacing: .04em; font-weight: 700; }
.contact-phone a:hover { color: #fff; }

.quick-contact { position: fixed; z-index: 95; right: 18px; bottom: 78px; display: grid; gap: 10px; }
.quick-contact-item { display: flex; align-items: center; gap: 11px; min-width: 188px; padding: 11px 14px; color: #fff; background: rgba(45,20,15,.94); border: 1px solid rgba(214,169,108,.45); box-shadow: 0 14px 38px rgba(0,0,0,.28); backdrop-filter: blur(10px); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.quick-contact-item:hover { transform: translateY(-2px); border-color: var(--gold-light); background: rgba(62,29,22,.98); }
.quick-contact-item svg { width: 25px; height: 25px; flex: 0 0 25px; fill: var(--gold-light); }
.quick-contact-item span { display: grid; line-height: 1.08; }
.quick-contact-item strong { font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.quick-contact-item small { margin-top: 5px; color: rgba(255,255,255,.62); font-size: 9px; letter-spacing: .04em; }
.quick-whatsapp { border-color: rgba(214,169,108,.65); }
.quick-call { background: rgba(62,29,22,.92); }

.enquiry-note.is-working { color: var(--gold-deep); font-weight: 700; }
.enquiry-note.is-error { color: #8d2d20; font-weight: 700; }
.enquiry-form [type="submit"][disabled] { opacity: .65; cursor: wait; transform: none; }

@media (max-width: 680px) {
  .contact-phone { line-height: 1.7; }
  .contact-phone a { display: block; margin: 3px 0 0; }
  .quick-contact { right: 10px; bottom: 70px; gap: 8px; }
  .quick-contact-item { min-width: 0; width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .quick-contact-item span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
  .quick-contact-item svg { width: 25px; height: 25px; }
}
