/* Pixlprop — clean static rebuild */

:root {
  --cream: #ece4d2;
  --cream-soft: #f5f0e3;
  --navy: #2a3645;
  --navy-deep: #1c2530;
  --yellow: #e8d745;
  --yellow-soft: #f3e88a;
  --text: #1f2933;
  --text-muted: #5b6470;
  --line: #d8d0bd;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--yellow); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -.01em; margin-bottom: .6em; }
h3 { font-size: 1.35rem; margin-bottom: .4em; }
p { margin-bottom: 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { height: 48px; width: auto; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
}
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  color: var(--cream);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding: .25rem 0;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--yellow);
}
.nav-links a.cta {
  background: var(--yellow);
  color: var(--navy);
  padding: .55rem 1.1rem;
  border-radius: 2px;
  font-weight: 600;
}
.nav-links a.cta:hover { background: var(--cream); color: var(--navy); }

.nav-toggle {
  display: none; background: none; border: 0; color: var(--cream);
  font-size: 1.6rem; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .55;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,37,48,.45) 0%, rgba(28,37,48,.85) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  width: 100%;
}
.hero h1 {
  color: var(--cream);
  max-width: 900px;
  margin-bottom: 2rem;
}
.hero .eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 620px;
  color: rgba(236,228,210,.85);
  margin-bottom: 2.4rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .95rem 1.8rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .85rem;
  border: 0; cursor: pointer;
  border-radius: 2px;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { background: var(--cream); color: var(--navy); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--cream); }
.btn-dark:hover { background: var(--navy-deep); color: var(--yellow); }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--cream); }
.section-navy a { color: var(--yellow); }

.eyebrow {
  display: block;
  color: var(--text-muted);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-navy .eyebrow { color: var(--yellow); }

/* Two-column intro */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split img { border-radius: 2px; box-shadow: 0 20px 60px -20px rgba(0,0,0,.25); }
.split .text p { font-size: 1.05rem; color: var(--text-muted); }

/* ===== SERVICE PILLS (small icons row) ===== */
.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-strip .item { color: var(--navy); }
.service-strip img { width: 64px; height: 64px; margin: 0 auto .8rem; opacity: .9; }
.service-strip .label {
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; color: var(--navy);
}

/* ===== PACKAGES ===== */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.package {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 4px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.package:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -20px rgba(42,54,69,.25); }
.package.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.package.featured h3, .package.featured .price { color: var(--cream); }
.package.featured .meta { color: rgba(236,228,210,.7); }
.package.featured ul li { color: rgba(236,228,210,.9); border-color: rgba(255,255,255,.1); }
.package .icon { width: 56px; height: 56px; margin: 0 auto 1rem; }
.package h3 { margin-bottom: .3rem; }
.package .meta { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.2rem; letter-spacing: .05em; }
.package .price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.package .price small { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.package ul {
  list-style: none;
  text-align: left;
  margin: 0 0 1.8rem;
  flex-grow: 1;
}
.package ul li {
  padding: .7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
  position: relative;
  padding-left: 1.5rem;
}
.package ul li::before {
  content: '✓';
  position: absolute; left: 0; top: .65rem;
  color: var(--yellow);
  font-weight: 700;
}

/* ===== A LA CARTE ===== */
.alacarte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.al-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 4px;
}
.al-card h3 {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--yellow);
}
.al-card h3 img { width: 28px; height: 28px; }
.al-card .group { margin-bottom: 1rem; }
.al-card .group:last-child { margin-bottom: 0; }
.al-card .group-name {
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .4rem;
}
.al-card .row {
  display: flex; justify-content: space-between;
  font-size: .95rem;
  padding: .25rem 0;
  color: var(--text-muted);
}
.al-card .row .price { color: var(--navy); font-weight: 600; }
.al-card small { display: block; font-size: .8rem; color: var(--text-muted); font-style: italic; margin-top: .4rem; }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery a {
  display: block;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 3/2;
  border-radius: 2px;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
}
.gallery a:hover img { transform: scale(1.04); opacity: .9; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(12, 13, 15, .94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000; padding: 2rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 92vh; object-fit: contain; cursor: default; box-shadow: 0 20px 80px rgba(0,0,0,.5); }
.lightbox .lb-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: 0; color: var(--cream);
  font-size: 2.5rem; cursor: pointer; line-height: 1;
}
.lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 0;
  color: var(--cream); font-size: 2rem;
  width: 56px; height: 56px; border-radius: 50%;
  cursor: pointer; transition: background .2s ease;
}
.lightbox .lb-prev { left: 1rem; }
.lightbox .lb-next { right: 1rem; }
.lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: rgba(255,255,255,.18); }
.lightbox .lb-counter {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  color: rgba(236,228,210,.7); font-size: .9rem; letter-spacing: .1em;
}

/* ===== TEAM ===== */
.team {
  display: grid;
  grid-template-columns: minmax(0, 360px);
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}
.team-card { text-align: center; }
.team-card .photo {
  width: 280px; height: 280px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 20px 50px -20px rgba(42,54,69,.3);
}
.team-card img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.6rem; margin-bottom: .3rem; }
.team-card .role {
  font-size: .85rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1rem;
}
.team-card .socials { display: flex; gap: 1rem; justify-content: center; }
.team-card .socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  transition: all .2s ease;
}
.team-card .socials a:hover { background: var(--navy); color: var(--yellow); }
.team-card .socials svg { width: 16px; height: 16px; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p { color: rgba(236,228,210,.85); font-size: 1.05rem; margin-bottom: 1.5rem; }
.areas {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.areas h4 {
  font-family: inherit;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: .6rem;
}
.areas p { font-size: .9rem; line-height: 1.8; color: rgba(236,228,210,.7); }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block; font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: .35rem; font-weight: 600;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--cream);
  font-family: inherit;
  font-size: .95rem;
  border-radius: 2px;
  transition: border .2s ease, background .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,.08);
}
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(236,228,210,.6);
  padding: 2.5rem 0;
  text-align: center;
  font-size: .85rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer .socials { margin-bottom: 1rem; display: flex; gap: 1rem; justify-content: center; }
.site-footer .socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(236,228,210,.3);
  border-radius: 50%;
  color: var(--cream);
  transition: all .2s ease;
}
.site-footer .socials a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.site-footer .socials svg { width: 16px; height: 16px; }

/* ===== PAGE HEAD (title bar for inner pages) ===== */
.page-head {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-head h1 { color: var(--cream); margin-bottom: .5rem; }
.page-head p { color: rgba(236,228,210,.75); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1rem; }
  .nav-links a.cta { margin: .5rem 1.5rem; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split img.right-side { order: -1; }
  .packages { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .team { grid-template-columns: 1fr; gap: 3rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-strip { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .service-strip img { width: 48px; height: 48px; }
  .section { padding: 4rem 0; }
  .hero { min-height: 65vh; }
  .hero-inner { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .service-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-template-columns: 1fr; }
  .team-card .photo { width: 220px; height: 220px; }
}
