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

:root{
  --paper: #263238;
  --paper-2: #1c262b;
  --plum: #ECEFF1;
  --plum-light: #AEBFC4;
  --rose: #2E8C99;
  --sage: #2E8C99;
  --gold: #2E8C99;
  --line: rgba(236,239,241,0.12);
  --cyan: #2E8C99;
}

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

body{
  font-family:'Outfit', sans-serif;
  background:var(--paper);
  color:var(--plum);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed; inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200,112,127,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(141,160,132,0.06), transparent 40%);
  pointer-events:none;
  z-index:0;
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; position:relative; z-index:1; }

/* ============ NAV ============ */
nav{
  display:flex; justify-content:space-between; align-items:center;
  padding:28px 0;
}
.logo-link{ display:flex; align-items:center; gap:12px; }
.logo-img{
  width:46px; height:46px; border-radius:12px; object-fit:cover;
  box-shadow:0 8px 20px -8px rgba(0,0,0,0.4);
}
.logo{
  font-family:'Playfair Display', serif;
  font-size:1.4rem; font-weight:600;
  letter-spacing:0.02em;
}
.logo span{ color:var(--rose); font-style:italic; }
.nav-links{ display:flex; gap:40px; font-size:0.92rem; letter-spacing:0.04em; }
.nav-links a{
  position:relative; padding-bottom:4px; color:var(--plum-light);
  transition:color .25s;
}
.nav-links a:hover, .nav-links a.active{ color:var(--rose); }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--rose); transition:width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--plum); color:var(--paper);
  padding:15px 30px; border-radius:100px;
  font-size:0.92rem; font-weight:500; letter-spacing:0.02em;
  transition:transform .3s, box-shadow .3s, background .3s;
  border:none; cursor:pointer;
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 12px 24px -10px rgba(0,0,0,0.5); background:var(--rose); }
.btn-outline{
  border:1.5px solid var(--line); padding:14px 28px; border-radius:100px;
  font-size:0.92rem; font-weight:500; color:var(--plum);
  transition:border-color .3s, color .3s;
  display:inline-flex; align-items:center; gap:10px;
}
.btn-outline:hover{ border-color:var(--rose); color:var(--rose); }

/* ============ MARQUEE ============ */
.marquee-section{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:26px 0;
  overflow:hidden;
  background:var(--paper-2);
}
.marquee{
  display:flex; gap:60px; white-space:nowrap;
  animation:scroll 28s linear infinite;
  font-family:'Playfair Display', serif;
  font-size:1.3rem; font-style:italic; color:var(--plum-light);
  align-items:center;
}
.marquee span{ display:flex; align-items:center; gap:60px; }
.marquee .sep{ color:var(--rose); font-style:normal; font-family:'Outfit',sans-serif; font-size:0.9rem; }
@keyframes scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ============ SECTION HEADER ============ */
.section{ padding:110px 0; }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:60px; gap:40px; flex-wrap:wrap;
}
.section-eyebrow{
  font-size:0.8rem; letter-spacing:0.25em; text-transform:uppercase;
  color:var(--rose); margin-bottom:14px; font-weight:500;
}
.section-head h2{
  font-family:'Playfair Display', serif;
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:600; line-height:1.15;
}
.section-head h2 em{ font-style:italic; color:var(--sage); }
.section-head p{
  color:var(--plum-light); max-width:340px; line-height:1.8; font-size:0.98rem;
}

/* ============ GALLERY ============ */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.gallery-item{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:var(--paper-2);
  box-shadow:0 14px 34px -18px rgba(0,0,0,0.5);
  border:1px solid var(--line);
  cursor:pointer;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
  /* aspect-ratio removed so the card auto-fits the image */
}
.gallery-item img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .6s ease, filter .6s ease;
}
.gallery-item::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(to top, rgba(19,24,28,0.78) 0%, rgba(19,24,28,0.15) 45%, rgba(19,24,28,0) 70%);
  opacity:0; transition:opacity .35s ease;
}
.gallery-item:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 50px -20px rgba(0,0,0,0.6);
  border-color:var(--rose);
}
.gallery-item:hover img{ transform:scale(1.07); }
.gallery-item:hover::after{ opacity:1; }
.gallery-tag{
  position:absolute; bottom:14px; left:14px; z-index:1; pointer-events:none;
  background:rgba(38,50,56,0.55); backdrop-filter:blur(6px);
  color:var(--plum); border:1px solid rgba(255,255,255,0.14);
  font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase;
  padding:6px 14px; border-radius:100px; font-weight:500;
  opacity:0; transform:translateY(10px);
  transition:opacity .35s, transform .35s;
}
.gallery-item:hover .gallery-tag{ opacity:1; transform:translateY(0); }

/* Square ad-style grid: tighter, more columns on larger screens */
.gallery-grid.gallery-ads{
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}
.gallery-grid.gallery-ads .gallery-item{ border-radius:14px; }

/* ============ LIGHTBOX ============ */
.lightbox{
  position:fixed; inset:0; background:rgba(34,20,28,0.92);
  display:none; align-items:center; justify-content:center;
  z-index:1000; padding:40px; backdrop-filter:blur(6px);
}
.lightbox.active{ display:flex; }
.lightbox img{
  max-width:90vw; max-height:88vh; border-radius:10px;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.6);
  animation:popIn .25s ease;
}
@keyframes popIn{ from{ transform:scale(.94); opacity:0; } to{ transform:scale(1); opacity:1; } }
.lightbox-close{
  position:absolute; top:30px; right:40px;
  width:46px; height:46px; border-radius:50%;
  background:rgba(251,246,238,0.1); border:1px solid rgba(251,246,238,0.2);
  color:var(--plum); font-size:1.4rem; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .3s;
}
.lightbox-close:hover{ background:rgba(251,246,238,0.2); }

/* ============ FOOTER ============ */
footer{
  padding:50px 0; text-align:center;
  font-size:0.85rem; color:var(--plum-light);
}
footer .heart{ color:var(--rose); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  .nav-links{ gap:20px; font-size:0.82rem; }
  .gallery-grid{ grid-template-columns:repeat(2, 1fr); }
  .gallery-grid.gallery-ads{ grid-template-columns:repeat(3, 1fr); }
  .section{ padding:70px 0; }
  .wrap{ padding:0 20px; }
}
@media (max-width:560px){
  .gallery-grid{ grid-template-columns:1fr 1fr; gap:16px; }
  .gallery-grid.gallery-ads{ grid-template-columns:repeat(2, 1fr); gap:12px; }
  .marquee{ font-size:1rem; gap:36px; }
  .marquee span{ gap:36px; }
  .logo{ font-size:1.15rem; }
}
