:root {
  --black: #1E1A16;
  --gold: #B8955A;
  --gold-light: #D4B483;
  --white: #ffffff;
  --deep-red: #6B1414;
  --deep-red-dark: #4A0D0D;
  --cream-light: #EDE5D8;
  --cream: #F7F2EA;
  --olive: #5C6B22;

  --heading-font: "Cormorant Garamond", serif;
  --tab-font: "Cormorant SC", serif;
  --body-font: "Montserrat", sans-serif;
}

/* ========================
   GLOBAL
======================== */
html, body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--cream-light);
  color: var(--black);
}

/* ========================
   NAVIGATION
======================== */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2em 4%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.logo-img {
  display: none !important;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}

header.scrolled {
  background: var(--white);
  border-bottom: 1px solid rgba(184,149,90,0.3);
}

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

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

/* ========================
   HERO
======================== */
.luxury-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-red-dark);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(74,13,13,0.3) 0%,
    rgba(30,10,10,0.7) 100%
  );
}

.hero-marquee {
  position: absolute;
  top: 9%;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.hero-marquee p {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.65rem;
  color: var(--white);
  opacity: 0.3;
  animation: scroll-marquee 30s linear infinite;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

@keyframes scroll-marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.hero-text {
  position: relative;
  text-align: center;
  padding: 0 2rem;
  max-width: 780px;
  margin: 0 auto;
  z-index: 2;
}

.hero-text h1 {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.hero-text p {
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  opacity: 0.75;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-btn {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.9em 2.8em;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 0;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.6rem; }
  .hero-text p { font-size: 0.82rem; }
  .hero-marquee p { font-size: 0.6rem; }
}

/* ========================
   WHAT WE OFFER INTRO
======================== */
#what-we-offer {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 5rem auto;
  padding: 0 1.2rem;
}

#what-we-offer h2 {
  font-family: var(--heading-font);
  font-size: 2.6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--black);
}

#what-we-offer p {
  font-family: var(--body-font);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  opacity: 0.8;
  margin-bottom: 1.6rem;
  color: var(--black);
}

#what-we-offer ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0 auto;
}

#what-we-offer ul li {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 0.35rem;
  color: var(--black);
  opacity: 0.85;
}

#what-we-offer ul li::before {
  content: "•";
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  #what-we-offer h2 { font-size: 2.1rem; }
  #what-we-offer p,
  #what-we-offer ul li { font-size: 0.88rem; }
}

/* ========================
   STACKED CARDS — UNTOUCHED
======================== */
#services {
  counter-reset: service;
}

.service-block {
  position: relative;
  z-index: 1;
  top: 110px;
  width: 100%;
  padding-top: 40px;
  margin-bottom: 220px;
  counter-increment: service;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .6s ease, transform .6s ease;
}

.service-block.visible {
  position: sticky;
  z-index: 400;
  opacity: 1;
  transform: translateY(0);
}

.service-block:nth-of-type(1),
.service-block:nth-of-type(4),
.service-block:nth-of-type(7) {
  background: var(--deep-red) !important;
  color: var(--white);
}

.service-block:nth-of-type(2),
.service-block:nth-of-type(5) {
  background: var(--cream-light) !important;
  color: var(--black);
}

.service-block:nth-of-type(3),
.service-block:nth-of-type(6) {
  background: var(--olive) !important;
  color: var(--white);
}

.file-tab {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  left: 0;
  padding: 14px 30px 14px 54px;
  font-family: var(--tab-font);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.1);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  opacity: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
  transition: opacity .3s ease;
}

.service-block.visible .file-tab {
  opacity: 1;
}

.file-tab.active {
  background: var(--gold);
  color: var(--white);
}

.service-block:nth-of-type(1) .file-tab,
.service-block:nth-of-type(4) .file-tab,
.service-block:nth-of-type(7) .file-tab {
  background: var(--deep-red) !important;
  color: var(--white);
}

.service-block:nth-of-type(2) .file-tab,
.service-block:nth-of-type(5) .file-tab {
  background: var(--cream-light) !important;
  color: var(--black);
}

.service-block:nth-of-type(3) .file-tab,
.service-block:nth-of-type(6) .file-tab {
  background: var(--olive) !important;
  color: var(--white);
}

.service-block:nth-of-type(2) .file-tab.active,
.service-block:nth-of-type(5) .file-tab.active {
  color: var(--black);
}

.service-block {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.service-inner {
  align-items: flex-start !important;
}

.service-text {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.service-text p:first-of-type {
  margin-top: 0 !important;
}

.service-block:last-of-type {
  margin-bottom: 800px !important;
}

.service-block:last-of-type.visible {
  position: relative !important;
  top: auto !important;
  z-index: 0 !important;
}

/* ========================
   CARD CONTENT — REFINED
======================== */
.service-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 45px 8% 60px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 300;
}

.service-text {
  flex: 1.4;
}

.service-text h2 {
  font-family: var(--heading-font);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  font-size: 3rem;
}

.service-text p,
.service-text li {
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.85;
  opacity: 0.9;
}

/* Tier boxes */
.tiers-row {
  display: flex !important;
  justify-content: center;
  gap: 2rem;
  padding: 0 !important;
  list-style: none !important;
  margin: 2rem 0;
}

.tier-box {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(184,149,90,0.25);
  border-radius: 0;
  padding: 1.8rem;
  min-width: 260px;
  flex: 1;
  box-shadow: 4px 4px 0px rgba(184,149,90,0.15);
  color: var(--black);
}

.tier-box strong {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--deep-red);
  display: block;
  margin-bottom: 0.75rem;
}

.tier-box ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.tier-box li {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.7;
  font-weight: 300;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 980px) {
  .service-inner { flex-direction: column; }
  .file-tab { left: 4%; }
  .tiers-row { flex-direction: column; align-items: center; }
  .tier-box { width: 90%; }
  .service-text h2 { font-size: 2.4rem; }
}

/* ========================
   NEXT STEPS
======================== */
.next-steps-flow,
#process {
  position: relative;
  z-index: 1000 !important;
  background: var(--cream);
  padding: 4em 10%;
}

.next-steps-flow {
  text-align: center;
  border-top: 1px solid rgba(184,149,90,0.3);
  border-bottom: 1px solid rgba(184,149,90,0.3);
  margin-bottom: 0;
  overflow: visible;
  padding-bottom: 3em !important;
}

.next-steps-flow::before,
#process::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
  z-index: -1;
}

.next-steps-flow .section-heading {
  font-family: var(--heading-font);
  font-size: 2.3rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--deep-red);
  text-align: center;
  width: 100%;
  margin: 0 auto 2.5rem;
  padding-top: 1rem;
}

.steps-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2em;
}

.step-box {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: var(--white);
  border: 1px solid rgba(184,149,90,0.25);
  border-radius: 0;
  padding: 2.5em 1.6em;
  box-shadow: 4px 4px 0px rgba(184,149,90,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px rgba(184,149,90,0.2);
}

.step-box::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.2rem;
  opacity: 0.7;
}

.step-box h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--deep-red);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.step-box p {
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.8;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .steps-grid { flex-direction: column; align-items: center; gap: 2rem; }
  .step-box { width: 92%; max-width: 380px; }
  .next-steps-flow .section-heading { font-size: 2rem; }
}

/* ========================
   CTA BANNER
======================== */
.next-steps-banner {
  width: 100%;
  background: var(--deep-red-dark);
  padding: 0.8rem 0;
  border-top: 1px solid rgba(184,149,90,0.3);
  border-bottom: 1px solid rgba(184,149,90,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.next-steps-banner-btn {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.7em 2.6em;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 0;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.next-steps-banner-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ========================
   VALUES SECTION
======================== */
.values-section {
  background: var(--cream-light);
  text-align: center;
  padding: 5em 10% 6em;
  color: var(--black);
  border-top: 1px solid rgba(184,149,90,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-section > * {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.values-title {
  font-family: var(--tab-font);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: rgba(30,26,22,0.45);
  text-transform: uppercase;
  margin-bottom: 1.5em;
}

.values-divider {
  width: 50px;
  height: 1px;
  background: rgba(184,149,90,0.45);
  border: none;
  margin: 0 auto 4em;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.values-list li {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1.2em;
  line-height: 1.4;
}

.values-list li::before {
  content: "●";
  color: var(--gold);
  font-size: 0.6rem;
  font-style: normal;
  transform: translateY(1px);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .values-list li { font-size: 1.3rem; }
}

/* ========================
   TWO COLUMN SECTIONS
======================== */
.two-column-section {
  display: flex;
  align-items: center;
  gap: 4em;
  padding: 8em 10%;
  background-color: var(--cream);
  position: relative;
  z-index: 500;
}

.two-col-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

.two-col-content {
  flex: 1;
}

.section-heading {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  margin-bottom: 1.5em;
  letter-spacing: 0.02em;
}

.alt-section {
  background-color: var(--cream-light);
}

.process-step {
  display: grid;
  grid-template-columns: 40px 90px 1fr;
  align-items: center;
  gap: 1.5em;
  margin-bottom: 2em;
}

.step-number {
  font-size: 2.5rem;
  font-family: var(--heading-font);
  color: var(--gold);
  font-weight: 300;
}

.process-step img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 900px) {
  .two-column-section { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; text-align: center; }
  .process-step img { margin: 0 auto; }
}

/* ========================
   FOOTER
======================== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 5em 10% 2.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  text-align: left;
  border-top: 1px solid rgba(184,149,90,0.25);
}

footer h3,
footer h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

footer p,
footer a {
  font-family: var(--body-font);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.9;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--gold);
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.social-icons a {
  margin-right: 1.2rem;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  font-size: 0.72rem;
  opacity: 0.35;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4em 6% 2em;
  }
  .footer-left,
  .footer-links,
  .footer-contact { width: 100%; }
  .social-icons a { margin: 0 0.6rem; }
}
