/* ═══════════════════════════════════════════════════════
   SUITE DEAL — SHARED SITE STYLES
   Brand: #FF7008 orange · #f5a623 amber · #FAF8F5 cream
   Fonts: Cormorant Garamond (display) · DM Sans (body)
═══════════════════════════════════════════════════════ */

:root {
  --orange:      #FF7008;
  --amber:       #f5a623;
  --cream:       #FAF8F5;
  --cream-deep:  #F2EDE6;
  --charcoal:    #1C1C1C;
  --stone:       #8C7B6B;
  --stone-light: #C4B5A5;
  --white:       #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Shared Buttons ───────────────────────────────── */
.btn-primary {
  background: var(--orange); color: #fff;
  padding: 14px 32px; font-size: 14px; font-weight: 600;
  letter-spacing: .04em; border-radius: 2px; display: inline-block;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: #e06007; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,112,8,.35); }
.btn-ghost-dark {
  color: rgba(255,255,255,.7); font-size: 13.5px; font-weight: 500;
  letter-spacing: .04em; display: inline-flex; align-items: center; gap: 8px; transition: color .2s;
}
.btn-ghost-dark:hover { color: #fff; }
.btn-ghost-dark::after { content:'→'; transition: transform .2s; }
.btn-ghost-dark:hover::after { transform: translateX(4px); }
.btn-white {
  background: #fff; color: var(--orange);
  padding: 15px 38px; font-size: 14px; font-weight: 700;
  letter-spacing: .04em; border-radius: 2px; display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.2); }
.btn-outline {
  border: 1.5px solid var(--orange); color: var(--orange);
  padding: 13px 30px; font-size: 14px; font-weight: 600;
  letter-spacing: .04em; border-radius: 2px; display: inline-block;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--orange); color: #fff; }

/* ── Section Labels ───────────────────────────────── */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.section-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--orange); }
.section-label.centered { justify-content: center; }
.section-label.centered::before, .section-label.centered::after { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--orange); }

/* ── Scroll Reveal ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── Nav Topbar ───────────────────────────────────── */
.nav-topbar {
  background: var(--orange); display: flex; justify-content: center;
  gap: 40px; padding: 7px 24px; font-size: 12.5px; color: #fff; letter-spacing: .02em;
}
.nav-topbar a { color: #fff; transition: opacity .15s; }
.nav-topbar a:hover { opacity: .8; }

/* ── Nav Main ─────────────────────────────────────── */
.nav-main {
  position: sticky; top: 0; z-index: 9999;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07); box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: stretch; height: 70px; list-style: none; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links > li > a, .nav-links > li > .svc-btn {
  display: flex; align-items: center; height: 100%; padding: 0 15px;
  font-size: 13.5px; font-weight: 500; color: var(--charcoal); letter-spacing: .02em;
  cursor: pointer; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body); white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > .svc-btn:hover,
.nav-links > li.active > a, .nav-links > li.open > .svc-btn { color: var(--orange); border-bottom-color: var(--orange); }
.svc-btn::after { content:'▾'; font-size: 10px; margin-left: 5px; opacity: .6; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 1px); left: 0; min-width: 240px;
  background: var(--white); border-top: 2px solid var(--orange);
  box-shadow: 0 12px 40px rgba(0,0,0,.12); list-style: none; padding: 8px 0; z-index: 10000;
}
.nav-links > li.open .nav-dropdown { display: block; }
.nav-dropdown li a { display: block; padding: 10px 22px; font-size: 13.5px; color: var(--charcoal); transition: background .1s, color .1s; }
.nav-dropdown li a:hover { background: #fff5ee; color: var(--orange); }
.nav-cta {
  background: var(--amber); color: #fff; padding: 10px 18px;
  font-size: 13px; font-weight: 600; border-radius: 3px; margin-left: 20px;
  transition: background .15s, transform .15s; white-space: nowrap;
}
.nav-cta:hover { background: #e09518; transform: translateY(-1px); }

/* ── Page Hero (inner pages) ──────────────────────── */
.page-hero {
  position: relative; min-height: 52vh; display: flex;
  align-items: flex-end; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,5,.88) 0%, rgba(20,12,5,.35) 50%, rgba(20,12,5,.1) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; padding: 80px 100px;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.page-hero-content .section-label { color: rgba(255,112,8,.9); margin-bottom: 16px; }
.page-hero-content .section-label::before { background: rgba(255,112,8,.9); }
.page-hero-content h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem,5vw,5rem);
  font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.page-hero-content h1 em { font-style: italic; color: var(--amber); }
.page-hero-content p {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.7);
  max-width: 560px; line-height: 1.7; margin-bottom: 32px;
}

/* ── Content Sections ─────────────────────────────── */
.content-section { max-width: 1320px; margin: 0 auto; padding: 100px 80px; }
.content-section.narrow { max-width: 900px; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image { position: relative; overflow: hidden; border-radius: 2px; }
.split-image img { width: 100%; height: 480px; object-fit: cover; }
.split-image.tall img { height: 600px; }
.split-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem,3vw,2.8rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 24px;
}
.split-text h2 em { font-style: italic; color: var(--stone); }
.split-text p { font-size: 15px; line-height: 1.85; color: var(--stone); margin-bottom: 18px; font-weight: 300; }
.split-text p:last-of-type { margin-bottom: 36px; }

/* ── Image Grid ───────────────────────────────────── */
.image-grid { display: grid; gap: 4px; }
.image-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.image-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.image-grid.asymmetric { grid-template-columns: 1.4fr 1fr 1fr; }
.image-grid-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.image-grid-item.tall { aspect-ratio: 3/4; }
.image-grid-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.image-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.image-grid-item:hover img { transform: scale(1.05); }

/* ── Feature Cards ────────────────────────────────── */
.feature-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 60px; }
.feature-card {
  background: var(--white); padding: 48px 40px;
  border: 1px solid rgba(0,0,0,.06);
  position: relative; overflow: hidden; transition: box-shadow .3s;
}
.feature-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card-icon { font-size: 32px; margin-bottom: 20px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; margin-bottom: 12px; }
.feature-card p { font-size: 14px; line-height: 1.8; color: var(--stone); font-weight: 300; }

/* ── Dark Panel ───────────────────────────────────── */
.dark-panel { background: var(--charcoal); padding: 100px 80px; }
.dark-panel-inner { max-width: 1320px; margin: 0 auto; }
.dark-panel h2 { font-family: var(--font-display); font-size: clamp(2rem,3vw,3rem); font-weight: 400; color: var(--white); margin-bottom: 20px; }
.dark-panel h2 em { font-style: italic; color: var(--amber); }
.dark-panel p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.55); font-weight: 300; margin-bottom: 16px; max-width: 720px; }

/* ── Cream Panel ──────────────────────────────────── */
.cream-panel { background: var(--cream-deep); padding: 100px 80px; }
.cream-panel-inner { max-width: 1320px; margin: 0 auto; }

/* ── Full-bleed Accent ────────────────────────────── */
.full-accent {
  position: relative; min-height: 56vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden; text-align: center;
}
.full-accent-bg { position: absolute; inset: 0; }
.full-accent-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.3) saturate(.7); }
.full-accent-content { position: relative; z-index: 2; padding: 60px 40px; max-width: 860px; }
.full-accent-content blockquote {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3.6rem);
  font-weight: 300; font-style: italic; color: var(--white); line-height: 1.3; margin-bottom: 28px;
}
.full-accent-content blockquote strong { font-weight: 500; color: var(--amber); font-style: normal; }
.full-accent-content cite {
  font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); font-style: normal;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.full-accent-content cite::before, .full-accent-content cite::after { content: ''; display: inline-block; width: 40px; height: 1px; background: rgba(255,255,255,.25); }

/* ── Bullet List ──────────────────────────────────── */
.dot-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: 24px 0 36px; }
.dot-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; list-style: none; }
.dot-list li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.dot-list.single { grid-template-columns: 1fr; }

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  background: var(--orange); padding: 100px 80px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.07) 0%,transparent 70%); pointer-events: none;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2.2rem,3.5vw,3.4rem); font-weight: 300; font-style: italic; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.cta-banner p { font-size: 15.5px; font-weight: 300; color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }

/* ── Welcome Strip ────────────────────────────────── */
.welcome-strip { background: var(--orange); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.welcome-track { display: inline-flex; animation: marquee 24s linear infinite; }
.welcome-track span { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,.9); padding: 0 36px; }
.welcome-track span.sep { color: rgba(255,255,255,.4); font-style: normal; font-size: .8rem; padding: 0; }

/* ── Features Strip ───────────────────────────────── */
.features-strip { background: var(--white); border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); }
.features-inner { max-width: 1320px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: repeat(4,1fr); }
.feature-strip-item { padding: 48px 36px; border-right: 1px solid rgba(0,0,0,.06); transition: background .2s; }
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: #fafaf8; }
.feature-strip-item .icon { font-size: 26px; margin-bottom: 18px; }
.feature-strip-item h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 8px; }
.feature-strip-item p { font-size: 13.5px; line-height: 1.7; color: var(--stone); font-weight: 300; }

/* ── Footer ───────────────────────────────────────── */
footer { background: var(--charcoal); color: rgba(255,255,255,.55); }
.footer-main { max-width: 1320px; margin: 0 auto; padding: 80px 80px 56px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; }
.footer-logo img { height: 46px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 22px; font-weight: 300; }
.footer-contact { font-size: 13.5px; margin-bottom: 9px; display: flex; gap: 9px; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-contact a:hover { color: var(--orange); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); max-width: 1320px; margin: 0 auto; padding: 22px 80px; display: flex; justify-content: space-between; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .15s; }
.footer-bottom a:hover { color: var(--white); }

/* ── Gallery Grid ─────────────────────────────────── */
.gallery-grid { columns: 3; gap: 4px; }
.gallery-item { break-inside: avoid; margin-bottom: 4px; position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(28,28,28,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.gallery-item:hover .gallery-item-overlay { background: rgba(28,28,28,.4); }
.gallery-item-overlay span { color: #fff; font-size: 26px; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-item-overlay span { opacity: 1; }

/* ── Lightbox ─────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 99999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: #fff; font-size: 36px; cursor: pointer; opacity: .7; transition: opacity .2s; background: none; border: none; }
.lightbox-close:hover { opacity: 1; }

/* ── Contact Form ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; font-size: 15px; font-family: var(--font-body);
  border: 1.5px solid rgba(0,0,0,.12); border-radius: 2px; background: var(--white);
  color: var(--charcoal); outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(255,112,8,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 400; }
.contact-info-value a { color: var(--charcoal); transition: color .15s; }
.contact-info-value a:hover { color: var(--orange); }

/* ── Vision Map ───────────────────────────────────── */
.vision-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 60px; }
.vision-value { background: var(--white); padding: 52px 44px; border: 1px solid rgba(0,0,0,.06); position: relative; overflow: hidden; }
.vision-value::after { content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,112,8,.04); }
.vision-value-num { font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: rgba(255,112,8,.15); line-height: 1; margin-bottom: 20px; }
.vision-value h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin-bottom: 14px; }
.vision-value p { font-size: 14px; line-height: 1.8; color: var(--stone); font-weight: 300; }

/* ── Finsa ────────────────────────────────────────── */
.finsa-specs { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; margin-top: 48px; }
.finsa-spec { background: var(--white); padding: 36px 40px; border: 1px solid rgba(0,0,0,.06); }
.finsa-spec h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin-bottom: 8px; }
.finsa-spec p { font-size: 14px; line-height: 1.7; color: var(--stone); font-weight: 300; }

/* ── Keyframes ────────────────────────────────────── */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
