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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #F9F6F0;
  color: #1A1916;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --cream: #F9F6F0;
  --cream2: #EEE8DC;
  --white: #fff;
  --dark: #0E0D0A;
  --dark2: #181610;
  --gold: #B8913A;
  --gold2: #C9A550;
  --text: #1A1916;
  --mid: #5C5650;
  --light: #8A847C;
  --border: #E4DDD0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s, box-shadow .3s;
}

header.scrolled {
  background: var(--dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .9);
  transition: color .3s;
  line-height: 1.3;
}

.logo-icon {
  width: 95px;
  height: 50px;
  flex-shrink: 0;
  background: #fff;
  transition: background .3s;
  -webkit-mask: url('../logo-icon.png') center/100% 100% no-repeat, linear-gradient(#fff, #fff);
  mask: url('../logo-icon.png') center/100% 100% no-repeat, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}

header.scrolled .logo-icon {
  background: #fff;
}

.logo small {
  display: block;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .6;
}

header.scrolled .logo {
  color: #fff;
}

.header-cta {
  background: var(--gold);
  color: #fff;
  padding: 10px 24px;
  border-radius: 5px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background .2s;
}

.header-cta:hover {
  background: var(--gold2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
  text-decoration: none;
}

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

header.scrolled .nav-links a {
  color: rgba(255,255,255,.8);
}

header.scrolled .nav-links a:hover {
  color: var(--gold2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, .85);
  border-radius: 2px;
  transition: background .3s;
}

header.scrolled .nav-hamburger span {
  background: #fff;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.hero-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 8, 4, .88) 0%, rgba(10, 8, 4, .45) 55%, rgba(10, 8, 4, .25) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 820px;
}

.hero-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 18px;
}

#hero h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(.75rem, 1vw, .9rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, .72);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 5px;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
  padding: 13px 32px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 5px;
  transition: border-color .2s, background .2s;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .07);
}

.strip {
  background: var(--dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 40px;
}

.strip-item {
  padding: 36px 40px;
  text-align: left;
  position: relative;
}

.strip-item+.strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: rgba(255, 255, 255, .1);
}

.strip-item b {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 800;
}

.strip-item span {
  font-size: .62rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.section {
  padding: 96px 64px;
  max-width: 1160px;
  margin: 0 auto;
}

.eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.eyebrow-w {
  color: var(--gold2);
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: 20px;
}

#market {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.market-bg {
  position: absolute;
  inset: -30% 0;
  z-index: 0;
  background-image: linear-gradient(rgba(10, 8, 4, 0.62), rgba(10, 8, 4, 0.62)), url('../images/img_01.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: saturate(0.55);
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.1s ease-out;
}

.market-bg.vis {
  opacity: 1;
}

#market>.section {
  position: relative;
  z-index: 1;
}

#market h2 {
  color: #fff;
}

#market p {
  color: rgba(255, 255, 255, .7);
}

#market strong {
  color: #fff;
}

#market .dot {
  background: var(--gold);
}

#market li {
  color: rgba(255, 255, 255, .65);
}

.market-wrap {
  max-width: 820px;
}

.market-pills {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.fu-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

.fu-left.vis {
  opacity: 1;
  transform: none;
}

.fu-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

.fu-right.vis {
  opacity: 1;
  transform: none;
}

.market-pill {
  padding: 12px 0;
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.pill-dot {
  display: none;
}

.market-left p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
  margin-bottom: 14px;
}

.market-left p strong {
  color: #fff;
}

.bullets {
  list-style: none;
  margin-top: 24px;
}

.bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.5;
}

.bullets li:first-child {
  border-top: 1px solid var(--border);
}

.dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.stat-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.stat-box {
  padding: 0 0 40px 0;
  flex: 1 1 0;
  min-width: 0;
}

.stat-box-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-box-lbl {
  font-size: .62rem;
  color: rgba(255, 255, 255, .35);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.market-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 620px;
  margin-top: 64px;
}

.market-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#deal-bg {
  background: var(--dark);
  position: relative;
}

#deal-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/Soaring hawk sketch.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.18;
  pointer-events: none;
}

#deal-bg>.section {
  position: relative;
  z-index: 1;
}

h2#deal {
  color: #fff;
}

.deal-note {
  color: rgba(255, 255, 255, .45);
  max-width: 500px;
  margin-bottom: 52px;
  font-size: .95rem;
  line-height: 1.75;
}

.deal-nums {
  display: flex;
  gap: 0;
  margin-bottom: 72px;
}

.deal-num-card {
  flex: 1;
  padding: 44px 36px 44px 0;
}

.deal-num-card+.deal-num-card {
  padding-left: 36px;
}

.d-lbl {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.d-val {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.d-note {
  font-size: .8rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.55;
  max-width: 180px;
}

.deal-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.acc-btn {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  text-align: left;
}

.acc-btn .acc-arrow {
  font-size: .85rem;
  color: var(--gold2);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.acc-btn.open .acc-arrow {
  transform: rotate(180deg);
}

.acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}

.acc-body.open {
  max-height: 600px;
}

.check-list {
  list-style: none;
  counter-reset: cap-counter;
}

.check-list li {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .92rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.5;
  counter-increment: cap-counter;
}

.check-list li::before {
  content: counter(cap-counter, decimal-leading-zero);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: var(--gold);
  opacity: .55;
  min-width: 22px;
  flex-shrink: 0;
}

.tl {
  display: flex;
  flex-direction: column;
}

.tl-step {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.tl-step:first-child {
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.tl-period {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 8px;
  opacity: .8;
}

.tl-text {
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
  line-height: 1.6;
}

#protection {
  background: var(--dark);
}

.prot-list {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.prot-row {
  display: grid;
  grid-template-columns: 52px 1fr 1.6fr 28px;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s;
  border-radius: 0;
}

.prot-num {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .1em;
}

.prot-name {
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
}

.prot-tag {
  font-size: .86rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.5;
}

.prot-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prot-tick::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translateX(-1px) translateY(-1px);
}

#team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.team-sub {
  color: var(--mid);
  font-size: .95rem;
  margin-top: 10px;
  margin-bottom: 48px;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 10%, black 90%, transparent 100%);
}

.logo-track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 36px;
  flex-shrink: 0;
  min-width: 180px;
}

.logo-item:hover {
  opacity: .8;
}

.logo-item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.logo-role {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
}

.av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream2);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--gold);
  font-style: italic;
}

.t-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.t-co {
  font-size: .68rem;
  color: var(--gold);
  margin-bottom: 2px;
}

.t-role {
  font-size: .72rem;
  color: var(--light);
  line-height: 1.35;
}

#portfolio-bg {
  background: #0E0D0A;
}

h2#portfolio {
  color: #fff;
}

.port-note {
  color: rgba(255, 255, 255, .42);
  margin-bottom: 52px;
  font-size: .9rem;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.port-card {
  background: #1A1916;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.port-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}

.port-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  gap: 2px;
  overflow: hidden;
}

.port-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.port-card:hover .port-imgs img {
  transform: scale(1.05);
}

.port-info {
  padding: 16px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.port-name {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  margin-bottom: 3px;
}

.port-loc {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold2);
}

.port-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
}

.port-card:hover .port-arrow {
  border-color: var(--gold2);
  color: var(--gold2);
}

#cta-bridge {
  background: #0E0D0A;
  text-align: center;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

#cta-bridge::before {
  display: none;
}

.cta-logo {
  width: 200px;
  height: 105px;
  margin: 0 auto 32px;
  background: #fff;
  -webkit-mask: url('../logo-icon.png') center/contain no-repeat, linear-gradient(#fff, #fff);
  mask: url('../logo-icon.png') center/contain no-repeat, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}

#cta-bridge h2 {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}

#cta-bridge>p {
  color: rgba(255, 255, 255, .46);
  max-width: 460px;
  margin: 0 auto 36px;
  font-size: .95rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.terms-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 680px;
  margin: 0 auto 44px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.term-item {
  flex: 1 1 150px;
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.term-item:last-child {
  border-right: none;
}

.term-val {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--gold2);
  display: block;
  margin-bottom: 3px;
}

.term-lbl {
  font-size: .65rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

#contact {
  position: relative;
  background: var(--dark);
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(10, 8, 4, 0.68), rgba(10, 8, 4, 0.68)), url('../images/img_02.jpg');
  background-size: cover;
  background-position: center 30%;
  background-blend-mode: multiply;
  filter: saturate(0.55);
}

#contact>.section {
  position: relative;
  z-index: 1;
}

#contact h2 {
  color: #fff;
}

#contact .contact-left h3 {
  color: #fff;
}

#contact .contact-left>p {
  color: var(--gold2) !important;
}

#contact .c-icon {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
}

#contact .c-txt {
  color: rgba(255, 255, 255, .55);
}

#contact .c-note {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .45);
  border-left-color: var(--gold);
}

#contact .fg label {
  color: rgba(255, 255, 255, .5);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact-left h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.contact-left>p {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.c-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.c-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.c-txt {
  font-size: .85rem;
  color: var(--mid);
}

.c-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--cream2);
  border-radius: 0 8px 8px 0;
  font-size: .8rem;
  color: var(--mid);
  line-height: 1.7;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fg label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--mid);
}

.fg input,
.fg select,
.fg textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
}

.fg textarea {
  resize: vertical;
  min-height: 88px;
}

.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A847C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}

.btn-send {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: 100%;
}

.btn-send:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.form-ok {
  display: none;
  background: #edf5e9;
  border: 1px solid #b8d9a8;
  color: #2a6018;
  padding: 13px 16px;
  border-radius: 7px;
  font-size: .86rem;
}

footer {
  background: var(--dark);
  padding: 40px 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.f-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-logo {
  width: 280px;
  height: 147px;
  opacity: .55;
  background: #fff;
  -webkit-mask: url('../logo-icon.png') center/contain no-repeat, linear-gradient(#fff, #fff);
  mask: url('../logo-icon.png') center/contain no-repeat, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}

.f-disc {
  font-size: .65rem;
  color: rgba(255, 255, 255, .2);
  max-width: 560px;
  line-height: 1.55;
  text-align: center;
}

.f-copy {
  font-size: .72rem;
  color: rgba(255, 255, 255, .28);
}

.fu {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

.fu.vis {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

/* ===================== MODAL ===================== */
#modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

#modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

#modal-box {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .55);
  transform: scale(.96) translateY(14px);
  transition: transform .3s ease;
}

#modal-overlay.open #modal-box {
  transform: none;
}

#modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

#modal-close:hover {
  background: rgba(0, 0, 0, .78);
}

.car-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream2);
  aspect-ratio: 16/9;
}

#modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .22s ease;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .42);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 5;
  user-select: none;
}

.car-btn:hover {
  background: rgba(0, 0, 0, .7);
}

#carPrev {
  left: 14px;
}

#carNext {
  right: 14px;
}

.car-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, .45);
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}

.car-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.car-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.car-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.modal-info {
  padding: 32px 40px 40px;
}

.modal-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.badge-done {
  background: #edf5e9;
  color: #246018;
}

.badge-active {
  background: #fef3e2;
  color: #8a5a00;
}

#modal-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 10px;
}

#modal-loc {
  font-size: .75rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold);
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.spec-item {
  background: var(--cream);
  padding: 20px 18px;
}

.spec-val {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 5px;
}

.spec-lbl {
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--light);
}

/* ===================== PARTNER MODAL ===================== */
#partner-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#partner-overlay.open {
  display: flex;
}

#partner-box {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  width: 100%;
  max-width: 500px;
  position: relative;
}

#partner-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1A1916;
  margin-bottom: 32px;
}

.p-fg {
  margin-bottom: 16px;
}

.p-fg input,
.p-fg select {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #E4DDD0;
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  color: #1A1916;
  background: #F9F6F0;
  outline: none;
  transition: border-color .2s;
}

.p-fg input:focus,
.p-fg select:focus {
  border-color: #B8913A;
}

.p-fg input::placeholder {
  color: #AAA49E;
}

.p-fg select {
  appearance: none;
  cursor: pointer;
}

.p-submit {
  width: 100%;
  padding: 16px;
  background: #B8913A;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s;
}

.p-submit:hover {
  background: #C9A550;
}

.p-close {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: .82rem;
  color: #8A847C;
  cursor: pointer;
  transition: color .2s;
}

.p-close:hover {
  color: #1A1916;
}

#partnerOk {
  display: none;
  text-align: center;
  padding: 12px 0 0;
  color: #B8913A;
  font-size: .88rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .deal-nums {
    flex-wrap: wrap;
  }

  .deal-num-card {
    flex: 1 1 45%;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* HEADER */
  header {
    padding: 14px 20px;
  }

  .header-cta {
    display: none;
  }

  header {
    z-index: 250;
  }

  .nav-hamburger {
    display: flex;
    z-index: 251;
    position: relative;
  }

  .logo {
    font-size: .85rem;
  }

  .logo small {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(14, 13, 10, .97);
    gap: 40px;
    z-index: 200;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85) !important;
  }

  /* HERO */
  .hero-body {
    padding: 0 24px 52px;
  }

  #hero h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: .92rem;
    margin-bottom: 28px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
    padding: 14px 24px;
  }

  /* HIDE strip */
  .strip {
    display: none;
  }

  /* SECTIONS */
  .section {
    padding: 52px 20px;
  }

  #cta-bridge {
    padding: 52px 20px;
  }

  h2 {
    font-size: 1.75rem;
  }

  /* DEAL NUMBERS */
  .deal-nums {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
  }

  .deal-num-card {
    padding: 24px 16px;
  }

  .deal-num-card+.deal-num-card {
    padding-left: 16px;
  }

  .d-val {
    font-size: clamp(1.5rem, 6vw, 2rem);
    white-space: nowrap;
  }

  .d-lbl {
    font-size: .56rem;
    margin-bottom: 8px;
  }

  .d-note {
    display: none;
  }

  .deal-two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .acc-btn {
    font-size: 1.05rem;
  }

  /* MARKET */
  .stat-strip {
    display: none;
  }

  .market-photo {
    display: none;
  }

  .market-wrap {
    max-width: 100%;
  }

  /* PORTFOLIO */
  .port-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .port-imgs {
    height: 180px;
  }

  /* TEAM */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CONTACT */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  /* MODAL */
  #modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  #modal-box {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
  }

  #modal-overlay.open #modal-box {
    transform: none;
  }

  .car-wrap {
    aspect-ratio: 4/3;
  }

  .modal-info {
    padding: 20px 20px 32px;
  }

  .modal-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .car-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  /* FOOTER */
  footer {
    padding: 32px 20px;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .f-disc {
    text-align: center;
  }

  /* TERMS ROW */
  .terms-row {
    flex-direction: column;
  }

  .term-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .term-item:last-child {
    border-bottom: none;
  }

  /* PROTECTION */
  .prot-row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .prot-tag {
    display: none;
  }

  .prot-tick {
    display: none;
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 2rem;
  }

  .hero-tag {
    font-size: .6rem;
  }

  .d-val {
    font-size: 1.6rem;
  }

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