/* ============================================================
   L'ORÉE DORÉE & MARINA — Global Luxury Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

/* --- Variables ----------------------------------------------- */
:root {
  --white:       #ffffff;
  --cream:       #faf8f4;
  --light:       #f2ece0;
  --gold:        #c9a84c;
  --gold-dim:    rgba(201,168,76,.15);
  --gold-border: rgba(201,168,76,.35);
  --dark:        #1a1a18;
  --charcoal:    #2c2c2a;
  --muted:       #6a6a68;
  --line:        rgba(26,26,24,.1);
  --green:       #1a5244;
  --shadow-sm:   0 2px 16px rgba(26,26,24,.06);
  --shadow-md:   0 8px 40px rgba(26,26,24,.1);
  --shadow-lg:   0 20px 60px rgba(26,26,24,.14);
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --nav-h:       88px;
  --container:   min(1400px,90vw);
  --section-py:  clamp(80px,10vw,130px);
}

/* --- Reset ---------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--dark);
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography ---------------------------------------------- */
h1,h2,h3,h4,h5 { font-family: 'Cinzel', serif; line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem,5vw,3.6rem); }
h2 { font-size: clamp(1.6rem,3.8vw,2.8rem); }
h3 { font-size: clamp(1.1rem,2.2vw,1.5rem); }

.kicker {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.elegant {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
}

/* --- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #1a1a18;
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8942f; border-color: #b8942f; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--charcoal); }
.btn-sm { padding: 10px 22px; font-size: .8rem; }

/* --- Utility -------------------------------------------------- */
.container { width: var(--container); margin-inline: auto; }
.text-center { text-align: center; }
.section {
  padding: var(--section-py) 0;
}
.section-inner {
  width: var(--container);
  margin-inline: auto;
}
.section-head {
  margin-bottom: clamp(40px,6vw,72px);
}
.section-head p.lead {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 16px;
}

/* Gold divider line */
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.text-center .gold-line { margin-inline: auto; }

/* --- Hero ----------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--nav-h) + 40px) 6vw 80px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,12,10,.72) 0%, rgba(26,26,24,.58) 60%, rgba(26,82,68,.45) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(900px,92vw);
  display: grid;
  gap: 20px;
}
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem,6vw,4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(.95rem,2vw,1.15rem);
  line-height: 1.7;
  max-width: 620px;
  margin-inline: auto;
}
.hero-divider {
  display: block;
  width: 42px;
  height: 1.5px;
  background: var(--gold);
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- Stats Bar ----------------------------------------------- */
.stats-bar {
  background: var(--dark);
  color: #fff;
  padding: 0;
}
.stats-bar-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  divide: 1px solid rgba(255,255,255,.08);
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
}

/* --- Welcome Split ------------------------------------------- */
.welcome-split .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
}
.welcome-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.welcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.welcome-img:hover img { transform: scale(1.04); }
.welcome-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  pointer-events: none;
}
.welcome-text { padding: 20px 0; }
.welcome-text h2 { margin-bottom: 20px; }
.welcome-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.welcome-bullets {
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
}
.welcome-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}
.welcome-bullets li::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
  flex-shrink: 0;
}

/* --- Services Mosaic ----------------------------------------- */
.services-section { background: var(--white); }
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.srv-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  isolation: isolate;
}
.srv-tile:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.srv-tile:nth-child(2) { grid-column: span 7; }
.srv-tile:nth-child(3) { grid-column: span 4; }
.srv-tile:nth-child(4) { grid-column: span 3; }
.srv-tile:nth-child(5) { grid-column: span 4; }
.srv-tile:nth-child(6) { grid-column: span 5; }
.srv-tile:nth-child(7) { grid-column: span 3; }
.srv-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.srv-tile:hover img { transform: scale(1.07); }
.srv-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,.85) 0%, rgba(14,12,10,.2) 50%, transparent 100%);
  transition: background .4s ease;
}
.position-img{
  object-position: center 25%; 
}
.srv-tile:hover .srv-tile-overlay { background: linear-gradient(to top, rgba(14,12,10,.9) 0%, rgba(14,12,10,.35) 60%, rgba(201,168,76,.08) 100%); }
.srv-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  color: #fff;
}
.srv-tile-content .kicker { color: var(--gold); margin-bottom: 6px; }
.srv-tile-content h3 { font-size: clamp(.95rem,2.2vw,1.3rem); margin-bottom: 8px; }
.srv-tile-content p { font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.6; }
.srv-tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s ease;
}
.srv-tile:hover .srv-tile-arrow { opacity: 1; transform: translateY(0); }

/* --- Full Bleed Banner --------------------------------------- */
.full-bleed {
  position: relative;
  height: clamp(380px,50vh,580px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.full-bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(14,12,10,.78), rgba(26,82,68,.6));
}
.full-bleed-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: min(760px,88vw);
  display: grid;
  gap: 18px;
}
.full-bleed-content h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; }
.full-bleed-content p { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.7; }

/* --- Card Grid ----------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr));
  gap: 20px;
}
.card-tile {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
  border: 1px solid var(--line);
}
.card-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-tile-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.position-img1{
  object-position: center 30%; 
}
.card-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.card-tile:hover .card-tile-img img { transform: scale(1.06); }
.card-tile-body { padding: 22px 20px; }
.card-tile-body h3 { margin-bottom: 8px; font-size: 1.08rem; }
.card-tile-body p { color: var(--muted); font-size: .9rem; line-height: 1.65; margin-bottom: 14px; }
.card-tile-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}

/* --- Info Strip ---------------------------------------------- */
.info-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.info-strip-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 32px;
  text-align: center;
}
.info-item { display: grid; gap: 8px; }
.info-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-item strong {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 600;
}
.info-item span { font-size: .88rem; color: var(--muted); }

/* --- CTA Gold Banner ---------------------------------------- */
.cta-banner {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(26,82,68,.2) 0%, transparent 50%);
}
.cta-banner .section-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text h2 { color: #fff; font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 8px; }
.cta-banner-text p { color: rgba(255,255,255,.65); font-size: .95rem; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
}
.cta-phone-num {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}
.cta-phone span { font-size: .76rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; }

/* --- Gallery Strip ------------------------------------------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0);
  transition: background .3s ease;
}
.gallery-item:hover::after { background: rgba(201,168,76,.15); }

/* --- WhatsApp FAB -------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

/* --- Footer -------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: clamp(60px,8vw,100px) 0 0;
}
.footer-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .06em;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: .88rem;
}
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .25s ease, padding-left .2s;
  line-height: 1.6;
  text-decoration: none;
}
.footer-col a:last-child,
.footer-col p:last-child {
  border-bottom: none;
}
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-col .gold { color: var(--gold); font-weight: 600; }
.footer-bottom {
  width: var(--container);
  margin-inline: auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .25s; }
.footer-bottom a:hover { color: var(--gold); }

/* --- Animations ---------------------------------------------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive ---------------------------------------------- */
@media (max-width: 1200px) {
  .services-mosaic { grid-auto-rows: 220px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1100px) {
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(4) { border-right: none; }
}
@media (max-width: 860px) {
  .welcome-split .section-inner { grid-template-columns: 1fr; }
  .welcome-img { aspect-ratio: 16/9; max-height: 340px; }
  .services-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .srv-tile:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .srv-tile:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-strip { grid-template-columns: repeat(3,1fr); }
  .gallery-strip .gallery-item:nth-child(n+4) { display: none; }
  .cta-banner .section-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .card-grid { grid-template-columns: repeat(auto-fit,minmax(min(100%,240px),1fr)); }
}
@media (max-width: 640px) {
  :root {
    --section-py: clamp(52px,8vw,80px);
    --container: min(100%,94vw);
  }
  .services-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .srv-tile:nth-child(n) { grid-column: span 1; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4) { border-right: none; }
  .gallery-strip { grid-template-columns: repeat(2,1fr); }
  .gallery-strip .gallery-item:nth-child(n+3) { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }
  .cta-banner .section-inner { padding: 0 4vw; }
  .card-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: .82rem; }
  h2 { font-size: clamp(1.4rem,5vw,2rem); }
  h3 { font-size: clamp(1rem,3.5vw,1.2rem); }
}

@media ( max-width:500px){
   .stat-value{
    font-size: 0.9rem;
   }
}
.section-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:clamp(32px,5vw,80px);
  align-items:center;
}

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