/* Giorgio Torelli — Static Bootstrap site */
:root {
  --navy-deep: #0d1224;
  --navy: #141a30;
  --navy-2: #1c2340;
  --gold: #c8a24a;
  --gold-soft: #d9b866;
  --fg: #f4f2ec;
  --muted: #9aa3b8;
  --border: rgba(255, 255, 255, .08);
  --cream: #f1ece0;
  --ink: #182140;
  --ink-muted: #5b5f6e;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -.01em;
  font-weight: 600;
  color: var(--fg)
}

a {
  color: var(--gold);
  text-decoration: none
}

a:hover {
  color: var(--gold-soft)
}

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

.text-muted-2 {
  color: var(--muted) !important
}

.text-gold {
  color: var(--gold) !important
}

.bg-navy {
  background: var(--navy) !important
}

.bg-navy-deep {
  background: var(--navy-deep) !important
}

.border-top-soft {
  border-top: 1px solid var(--border)
}

.border-bottom-soft {
  border-bottom: 1px solid var(--border)
}

.container-x {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px
}

@media(min-width:768px) {
  .container-x {
    padding: 0 40px
  }
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold)
}

.gold-divider {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--gold);
  color: #1a1a2e;
  padding: 10px 32px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  border: none;
  border-radius: 0;
  transition: .2s;
  cursor: pointer;
  border-radius: 10px;
}

.btn-gold:hover {
  background: var(--gold-soft);
  color: #1a1a2e
}

.btn-gold svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  transition: .2s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #1a1a2e
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 18, 36, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border)
}

.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg)
}

.brand span {
  color: var(--gold)
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand-mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: .02em
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap
}

.brand-name span {
  color: var(--gold)
}

.brand-tag {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-links a {
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold)
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--fg);
  font-size: 24px;
  cursor: pointer
}

@media(min-width:992px) {
  .nav-links {
    display: flex
  }

  .nav-toggle {
    display: none
  }
}

/* Mobile nav renders as a right-side off-canvas drawer — styles live in
   the ≤991px media block at the end of this file */
.mobile-menu {
  display: none
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.mobile-menu li {
  padding: 10px 0
}

.mobile-menu a {
  color: var(--fg);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em
}

/* Hero — rounded banner, cutout portrait overlapping the heading */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: flex-start
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% top
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 58%, rgba(241, 236, 224, 0) 100%)
}

@media(min-width:992px) {
  .hero-bg::after {
    background: linear-gradient(90deg, var(--cream) 0%, var(--cream) 34%, rgba(241, 236, 224, .85) 46%, rgba(241, 236, 224, 0) 62%)
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 56px;
  width: 100%
}

/* .inner reserves top space so the heading crosses the portrait's chest;
   the portrait itself sits behind the text (z-index:-1) and fades out
   at the bottom via a mask so it blends into the cream background */
.hero-copy .inner {
  position: relative;
  z-index: 0;
  max-width: 560px;
  padding-top: clamp(170px, 17.8vw, 230px)
}

.hero-portrait {
  position: absolute;
  top: 20px;
  left: -36px;
  z-index: -1;
  width: clamp(300px, 34vw, 440px);
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, rgba(0, 0, 0, 0) 96%);
  mask-image: linear-gradient(180deg, #000 55%, rgba(0, 0, 0, 0) 96%);
}

.hero-copy h1 {
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  position: relative;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.55),
    0 2px 8px rgba(255, 255, 255, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.15);
}

.hero-copy .sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  margin-top: 12px;
  color: var(--ink)
}

.hero-copy p {
  margin-top: 16px;
  color: var(--ink-muted);
  max-width: 480px
}

/* Page hero */
.page-hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%)
}

.page-hero .eyebrow {
  margin-bottom: 16px;
  display: block
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0
}

.page-hero p {
  margin-top: 20px;
  max-width: 640px;
  color: var(--muted);
  font-size: 17px
}

/* About page — "The Journey" image */
.journey-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

@media(max-width:991.98px) {
  .journey-img {
    aspect-ratio: 16/10
  }
}

/* Sections */
section {
  padding: 88px 0
}

.section-heading .eyebrow {
  display: block;
  margin-bottom: 12px
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0
}

/* Cards */
.card-navy {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 36px;
  transition: .25s;
  /*height: 100%*/
}

/* Contact page: both cards stretch to match the taller column */
.contact-cards>[class*=col-]>.card-navy {
  height: 100%;
}

/* Services page: equal-height cards with the Learn More button pinned
   to the bottom. The list grows to absorb the height difference, and
   the margin tweaks reproduce the gaps that margin-collapsing gave the
   block layout so visual spacing is unchanged. */
.service-cards>[class*=col-]>.card-navy {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-cards .card-navy h3 {
  margin-bottom: 16px;
}

.service-cards .card-navy .gold-divider {
  margin-top: 0;
}

.service-cards .card-navy .desc {
  margin-bottom: 0;
}

.service-cards .card-navy ul {
  flex: 1;
}

.service-cards .card-navy .btn-gold {
  align-self: flex-start;
}

/* "What's included" / Expertise / Companies cards: stretch to match
   the tallest card in the row */
.included-cards>[class*=col-]>.card-navy,
.expertise-cards>[class*=col-]>.card-navy,
.companies-cards>[class*=col-]>.card-navy {
  height: 100%;
}

.card-navy:hover {
  border-color: rgba(200, 162, 74, .5);
  transform: translateY(-3px)
}

.icon-box {
  width: 80px;
  height: 56px;
  display: grid;
  place-items: center;
  /* border: 1px solid rgba(200, 162, 74, .5); */
  color: var(--gold);
  margin-bottom: 16px;
}

.icon-box.round {
  border-radius: 999px
}

.icon-box svg {
  width: 84px;
  height: 50px;
}

.card-navy h3 {
  font-size: 22px;
  margin: 0 0 12px
}

.card-navy .desc {
  color: var(--muted);
  font-size: 14px
}

.card-navy ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0
}

.card-navy ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: rgba(244, 242, 236, .85)
}

.card-navy ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700
}

.card-navy .learn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold)
}

/* Luminova */
.luminova-sec {
  position: relative;
  padding: 100px 0px;
}

.luminova {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border)
}

@media(min-width:992px) {
  .luminova {
    grid-template-columns: 1fr 1fr;
    z-index: 1;
    position: relative;
    align-items: center;
  }
}

.luminova-copy {
  padding: 70px 0;
}

.luminova-copy .badge-ll {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  margin-right: 20px
}

.luminova-copy .brand-row {
  display: flex;
  align-items: center;
  margin-bottom: 32px
}

.luminova-copy h2 {
  font-size: 44px;
  margin: 0;
  color: var(--ink)
}

.luminova-copy .tag {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .4em
}

.luminova-copy p {
  color: var(--ink)
}

.luminova-copy p.text-muted-2 {
  color: var(--ink-muted) !important
}

.luminova-img {
  position: relative;
  min-height: 0px;
}

.luminova-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.luminova-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #f1ece0f2;
  width: 47%;
}

.pillars {
  padding: 24px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  z-index: 2
}

@media(min-width:768px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
    padding: 10px
  }
}

.pillar {
  border: 1px solid rgba(200, 162, 74, .3);
  background: rgba(13, 18, 36, .85);
  padding: 20px;
  text-align: center;
  width: 100%;
}

.pillar svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin: 0 auto 12px;
  display: block
}

.pillar span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em
}

/* Stats strip */
.stats {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0
}

.stats .grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .stats .grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .stats .grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.stat {
  display: flex;
  gap: 16px
}

.stat svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0
}

.stat .label {
  font-size: 14px;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: .22em
}

.stat .val {
  margin-top: 5px;
  font-size: 13px;
  color: rgba(244, 242, 236, .85);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px
}

.site-footer .grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .site-footer .grid {
    grid-template-columns: 2fr 1fr 1fr
  }
}

.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin: 0 0 20px
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.site-footer li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted)
}

.site-footer li a {
  color: var(--muted)
}

.site-footer li a:hover {
  color: var(--gold)
}

.site-footer .copy {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0
}

/* Contact page — "Direct" card icon list */
.contact-direct li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0
}

.card-navy .contact-direct li::before {
  content: none
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .25s ease
}

.footer-social a:hover {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold)
}

.footer-social svg {
  width: 16px;
  height: 16px
}

/* Blog */
.blog-card {
  background: var(--navy);
  border: 1px solid var(--border);
  transition: .25s;
  height: 100%;
  display: flex;
  flex-direction: column
}

.blog-card:hover {
  border-color: rgba(200, 162, 74, .5);
  transform: translateY(-3px)
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover
}

.blog-card .body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.blog-card .cat {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 12px
}

.blog-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--fg)
}

.blog-card .excerpt {
  color: var(--muted);
  font-size: 14px;
  flex: 1
}

.blog-card .meta {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em
}

.featured {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  background: var(--navy);
  margin-bottom: 64px
}

@media(min-width:992px) {
  .featured {
    grid-template-columns: 1fr 1fr
  }
}

.featured img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover
}

.featured .body {
  padding: 56px
}

.featured h2 {
  font-size: 36px;
  margin: 16px 0
}

.article-hero {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border)
}

.article-hero .cat {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px
}

.article-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 16px 0;
  max-width: 900px
}

.article-hero .meta {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase
}

.article-body {
  max-width: 760px;
  margin: 0 auto
}

.article-body p {
  font-size: 17px;
  color: rgba(244, 242, 236, .9);
  margin: 0 0 24px;
  line-height: 1.75
}

/* Forms */
.form-field {
  margin-bottom: 20px
}

.form-field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 8px
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 8px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 0;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold)
}

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

/* Process timeline */
.process {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .process {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1200px) {
  .process {
    grid-template-columns: repeat(4, 1fr)
  }
}

.process-step {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 32px
}

.process-step .step {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1
}

.process-step h4 {
  font-size: 18px;
  margin: 16px 0 8px;
  font-family: 'Playfair Display', serif
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

/* utility */
.grid-2 {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr
  }
}

.grid-3 {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr)
  }
}

.cta-strip {
  padding: 64px 0
}

.cta-strip .inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between
}

@media(min-width:768px) {
  .cta-strip .inner {
    flex-direction: row;
    align-items: center
  }
}

.cta-strip h3 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0;
  max-width: 640px
}

.cta-strip p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px
}

.inner svg {
  width: 20px;
  height: 20px;
}

@media(max-width:1500px) {
  body {
    /* clip (not hidden) so the sticky header keeps working —
       hidden turns body into a scroll container and kills sticky */
    overflow-x: hidden;
    overflow-x: clip;
  }

  .hero-copy {
    padding: 0 0 48px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 3.8vw, 52px);
  }

  .hero-copy .sub {
    font-size: clamp(18px, 1.7vw, 22px);
    margin-top: 10px;
  }

  .section-heading h2 {
    font-size: clamp(30px, 4vw, 35px);

  }

  .luminova-copy h2 {
    font-size: 38px;
  }

  .cta-strip h3 {
    font-size: clamp(26px, 3vw, 30px);
  }

}

@media(max-width:1300px) {
  .nav-links a {
    color: var(--fg);
    font-size: 12px;
    font-weight: 300;
  }

  .container-x {
    max-width: 90%;
    padding: 0 0px;
  }

  .section-heading h2 {
    font-size: clamp(30px, 4vw, 31px);
  }

  .pillar span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    line-height: 15px;
    display: block;
  }

}

/* ==================================================================
   Mobile responsiveness (≤991px) — desktop layout untouched
   ================================================================== */
@media(max-width:991.98px) {

  /* AOS fade-right/left elements start translated ±100px; clipping the
     horizontal overflow keeps the pre-animation state from creating a
     sideways scroll while the full desktop animations run on mobile */
  html,
  body {
    /* clip (not hidden) keeps position:sticky on the header working */
    overflow-x: hidden;
    overflow-x: clip
  }

  img {
    height: auto
  }

  /* Hero: pin the copy to the cream zone at the top so text never
     spills onto the unshaded part of the skyline */
  .hero {
    min-height: 0;
    align-items: flex-start
  }

  .hero-copy {
    padding: 28px 0 220px
  }

  .hero-copy .inner {
    padding-top: clamp(150px, 40vw, 210px)
  }

  .hero-portrait {
    width: clamp(240px, 62vw, 340px);
    left: 30%;
    transform: translateX(-52%);
    /* fade starts earlier on mobile so the suit is mostly dissolved
       where the navy heading crosses it */
    -webkit-mask-image: linear-gradient(180deg, #000 40%, rgba(0, 0, 0, 0) 85%);
    mask-image: linear-gradient(180deg, #000 40%, rgba(0, 0, 0, 0) 85%)
  }

  /* Inner-page heroes: tighter on mobile */
  .page-hero {
    padding: 40px 0 64px
  }

  .page-hero h1 {
    font-size: clamp(30px, 5vw, 56px)
  }

  .hero-bg::after {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 62%, rgba(241, 236, 224, .55) 82%, rgba(241, 236, 224, 0) 100%)
  }

  /* Luminova: below 992px the content isn't lifted above the ::after
     cream overlay, and the 47%-wide overlay leaves stacked text
     unreadable — lift content and span the overlay full width */
  .luminova {
    position: relative;
    z-index: 1
  }

  .luminova-sec::after {
    width: 100%
  }

  .luminova-img {
    padding-bottom: 40px
  }

  .icon-box {
    flex-shrink: 0
  }

  /* Off-canvas mobile nav: right-side drawer + overlay */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    width: min(82vw, 400px);
    max-width: none;
    margin: 0;
    padding: 72px 28px 32px;
    background: var(--navy);
    border-left: 1px solid var(--border);
    border-top: 0;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s ease, visibility 0s linear .35s;
  }

  .mobile-menu.open {
    transform: none;
    visibility: visible;
    transition: transform .35s ease;
  }

  .mobile-menu li {
    padding: 0
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0
  }

  .menu-close {
    position: absolute;
    top: 14px;
    right: 20px;
    background: none;
    border: none;
    padding: 8px;
    color: var(--fg);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .menu-close:hover {
    color: var(--gold)
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(13, 18, 36, .6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility 0s linear .35s;
  }

  .menu-overlay.show {
    opacity: 1;
    visibility: visible;
    transition: opacity .35s ease
  }

  body.menu-open {
    overflow: hidden
  }
}

@media(min-width:992px) {
  .menu-overlay {
    display: none
  }
}

@media(max-width:767.98px) {
  section {
    padding: 64px 0
  }

  .luminova-copy {
    padding: 56px 0 32px
  }

  .luminova-copy h2 {
    font-size: 32px
  }

  .btn-gold {
    padding: 12px 28px
  }

  .cta-strip {
    padding: 56px 0
  }

  .cta-strip p br {
    display: none
  }

  .site-footer .grid {
    gap: 32px
  }
}

@media(max-width:575.98px) {
  section {
    padding: 56px 0
  }

  /* newsletter form: let the email input shrink so the Subscribe
     button isn't pushed past the viewport edge */
  .d-flex > input {
    min-width: 0
  }

  .hero-copy {
    padding: 20px 0 180px
  }

  .hero-copy .inner {
    padding-top: clamp(150px, 40vw, 200px)
  }

  .hero-copy h1 {
    font-size: 34px
  }

  .hero-copy .sub {
    font-size: 18px;
    margin-top: 12px
  }

  .hero-copy p {
    font-size: 15px
  }

  .section-heading h2 {
    font-size: 26px
  }

  .icon-box {
    width: 56px;
    height: 44px
  }

  .icon-box svg {
    width: 48px;
    height: 38px
  }

  .luminova-copy h2 {
    font-size: 30px
  }

  .pillars {
    padding: 16px 0 8px;
    gap: 10px
  }

  .pillar {
    padding: 16px 10px
  }

  .pillar span {
    font-size: 10px
  }
}

@media(max-width:400px) {
  .brand-block {
    gap: 10px
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 14px
  }

  .brand-name {
    font-size: 17px
  }

  .brand-tag {
    font-size: 8px;
    letter-spacing: .12em
  }

  .hero-copy h1 {
    font-size: 30px
  }
}
/* 1200–1300px: give the hero CTA breathing room above the banner's
   bottom edge (the portrait/heading stack runs tall in this range) */
@media (min-width:1200px) and (max-width:1300px) {
  .hero-copy {
    padding-bottom: 96px
  }
}

/* Short desktop viewports (laptops): compress the hero's vertical
   rhythm so the CTA button stays above the fold. The portrait shrinks
   and the reserved top space scales with it (same 60% heading-crossing
   point), so the design reads identically — just tighter. */
@media (min-width:992px) and (max-height:820px) {
  .hero-copy .inner {
    padding-top: clamp(140px, 14.6vw, 190px)
  }

  .hero-portrait {
    width: clamp(260px, 28vw, 360px)
  }

  .hero-copy {
    padding-bottom: 40px
  }
}


textarea.wpcf7-form-control.wpcf7-textarea.form-control {
    height: 90px;
}


/* Input placeholder */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #c1ad73 !important;
    opacity: 1;
}

/* Select field (first option) */
.wpcf7 select {
    color: #c1ad73;
}

/* Jab user option select kare to normal text color */
.wpcf7 select:valid {
    color: #fff; /* Ya apni theme ka text color */
}