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

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

/* ========================
   GENERAL
======================== */
body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--cream);
  color: var(--black);
  scroll-behavior: smooth;
}

/* ========================
   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-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  flex: 1;
}

.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-logo {
  flex-shrink: 0;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo svg {
  width: 46px;
  height: 46px;
}

header.scrolled .nav-logo .logo-light { display: none; }
header.scrolled .nav-logo .logo-dark  { display: block; }
header:not(.scrolled) .nav-logo .logo-dark  { display: none; }
header:not(.scrolled) .nav-logo .logo-light { display: block; }

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

.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%
  );
}

/* ========================
   WATERMARK
======================== */
.watermark-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.watermark-wrap svg {
  width: min(500px, 65vw);
  height: auto;
  opacity: 0.07;
}

.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.35;
  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;
  z-index: 2;
}

.hero-text h1 {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 6vw, 5.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-text::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: 0.6;
}

.hero-btn {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.9em 2.8em;
  border: 1px solid rgba(255,255,255,0.5);
  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; }
}

/* ========================
   MISSION SECTION
======================== */
.mission-section {
  background: var(--cream-light);
  padding: 7em 10%;
  border-bottom: 1px solid rgba(184,149,90,0.3);
}

.mission-heading {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--deep-red);
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.2;
}

.mission-layout {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.mission-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 0;
  display: block;
  margin: auto;
  border: 1px solid rgba(184,149,90,0.2);
}

.mission-columns {
  display: flex;
  gap: 4rem;
  max-width: 1000px;
  margin: auto;
  align-items: stretch;
}

.mission-columns p {
  flex: 1;
  line-height: 1.9;
  font-size: 0.95rem;
  font-weight: 300;
  margin: 0;
  color: var(--black);
  opacity: 0.85;
}

/* ========================
   MEET PRISCILLA
======================== */
#meet-priscilla {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7em 8%;
  background: var(--cream);
  color: var(--black);
  gap: 5rem;
  border-top: 1px solid rgba(184,149,90,0.2);
  border-bottom: 1px solid rgba(184,149,90,0.2);
}

#meet-priscilla .image-column {
  flex: 1;
  display: flex;
  justify-content: center;
}

#meet-priscilla .image-column img {
  width: 100%;
  max-width: 400px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 8px 8px 0px rgba(184,149,90,0.2);
}

#meet-priscilla .text-column {
  flex: 1;
}

#meet-priscilla h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--deep-red);
  margin-bottom: 0.5rem;
}

#meet-priscilla h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-top: 1rem;
  opacity: 0.7;
}

#meet-priscilla p {
  font-family: var(--body-font);
  line-height: 1.9;
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

@media (max-width: 900px) {
  #meet-priscilla {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 5em 6%;
  }
  #meet-priscilla .image-column img {
    max-width: 300px;
    box-shadow: 4px 4px 0px rgba(184,149,90,0.2);
  }
  #meet-priscilla h2::after {
    margin: 0.8rem auto 0;
  }
}

/* ========================
   WHAT WE DO
======================== */
.what-we-do {
  background: var(--cream);
  text-align: center;
  padding: 2rem 8% 5rem;
}

.section-title {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--deep-red);
  margin-bottom: 0.5rem;
}

.section-title-rule {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0.8rem auto 3rem;
  opacity: 0.6;
}

.what-we-do-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.what-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  text-align: center;
}

.what-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(184,149,90,0.15);
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.what-item img:hover {
  box-shadow: 6px 6px 0px rgba(184,149,90,0.2);
}

.what-title {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep-red);
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}

.what-desc {
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  padding: 0 0.5rem;
  opacity: 0.8;
}

.what-link {
  font-family: var(--body-font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,149,90,0.4);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.what-link:hover {
  color: var(--deep-red);
  border-bottom-color: var(--deep-red);
}

@media (max-width: 900px) {
  .what-we-do-row {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .what-item { width: 85%; }
  .what-item img { height: 240px; }
}

/* ========================
   TESTIMONIAL BANNER
======================== */
.testimonial-banner {
  background: var(--deep-red-dark);
  color: var(--white);
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(184,149,90,0.2);
  border-bottom: 1px solid rgba(184,149,90,0.2);
}

.testimonial-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: testimonialScroll 28s linear infinite;
}

.testimonial-marquee p {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0;
}

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

/* ========================
   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.55);
  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.4;
  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; }
}
    margin: 0 0.6rem;
  }
}
