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

:root {
  --navy:  #0D1B2A;
  --amber: #E09F1A;
  --teal:  #2A9D8F;
  --ruby:  #C1121F;
  --cream: #F8F4EF;
  --mid:   #3A5068;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--navy); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: #0D1B2A;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--amber); letter-spacing: .03em; }
.nav-logo span { color: #fff; font-weight: 300; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
nav a:hover { color: var(--amber); }

/* HAMBURGER — hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle.open { color: var(--amber); }

/* HERO */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--navy); z-index: 0; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: .35; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); z-index: 2; }
.hero-content { position: relative; text-align: center; padding: 2rem; max-width: 780px; z-index: 3; }
.hero-eyebrow { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem,8vw,6rem); line-height: 1.05; color: #fff; margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--amber); }
.hero-sub { font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 520px; margin: 0 auto 2.5rem; }
.btn { display: inline-block; padding: .85rem 2.2rem; border: 2px solid var(--amber); color: var(--amber); text-decoration: none; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; transition: background .25s, color .25s; }
.btn:hover { background: var(--amber); color: var(--navy); }

/* LEADED DIVIDER */
.glass-divider { display: flex; height: 18px; width: 100%; }
.glass-divider span { flex: 1; }
.gd-r { background: #C1121F; }
.gd-a { background: #E09F1A; flex: .6 !important; }
.gd-t { background: #2A9D8F; flex: 1.4 !important; }
.gd-b { background: #1D6F8C; }
.gd-p { background: #8B1A8B; flex: .7 !important; }
.gd-g { background: #0D5C3A; }

/* ABOUT */
.about { background: var(--navy); color: #fff; padding: 6rem 2rem; text-align: center; }
.about-inner { max-width: 720px; margin: 0 auto; }
.section-label { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; }
.about h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,2.8rem); line-height: 1.2; margin-bottom: 1.5rem; }
.about p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,.75); font-weight: 300; }

/* BIO */
.bio { background: #162232; color: #fff; padding: 6rem 2rem; }
.bio-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.bio-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; border: 3px solid var(--amber); }
.bio-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.4rem); color: var(--amber); margin-bottom: 1.2rem; }
.bio-text p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,.78); font-weight: 300; margin-bottom: 1rem; }
.services-list { margin-top: 1.8rem; padding: 1.5rem; border: 1px solid rgba(224,159,26,.35); }
.services-list h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--amber); margin-bottom: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.services-list ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.services-list li { background: rgba(224,159,26,.12); border: 1px solid rgba(224,159,26,.3); color: rgba(255,255,255,.8); font-size: .85rem; padding: .35rem .8rem; }

/* GALLERY */
.gallery { padding: 6rem 2rem; background: var(--cream); }
.gallery-header { text-align: center; margin-bottom: 3.5rem; }
.gallery-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,2.8rem); color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; background: var(--navy); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 360px; object-fit: cover; display: block; transition: transform .5s ease, opacity .3s; }
.gallery-item:hover img { transform: scale(1.06); opacity: .8; }
.gallery-caption { padding: .75rem 1rem; background: var(--navy); color: rgba(255,255,255,.7); font-family: 'Playfair Display', serif; font-style: italic; font-size: .95rem; }

/* CONTACT */
.contact { padding: 6rem 2rem; background: var(--cream); }
.contact-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,2.6rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.contact-left p { font-size: .95rem; color: var(--mid); line-height: 1.7; font-weight: 300; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.contact-icon { width: 36px; height: 36px; border: 1.5px solid var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; color: var(--amber); }
.contact-detail-text { font-size: .9rem; color: var(--navy); line-height: 1.6; }
.contact-detail-text strong { display: block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); margin-bottom: .2rem; }
.contact-detail-text a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--amber); padding-bottom: 1px; }
.contact-detail-text a:hover { color: var(--teal); }
.contact-right h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-right p { font-size: .95rem; color: var(--mid); line-height: 1.7; margin-bottom: .8rem; }
.contact-right a { color: var(--navy); border-bottom: 1px solid var(--amber); text-decoration: none; padding-bottom: 1px; }
.contact-right a:hover { color: var(--teal); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,.45); text-align: center; padding: 2rem; font-size: .8rem; letter-spacing: .05em; }
footer strong { color: var(--amber); font-weight: 400; }

/* LIGHTBOX */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(13,27,42,.95); align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 92vw; max-height: 90vh; object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,.6);
  animation: lbIn .25s ease;
}
@keyframes lbIn { from { opacity:0; transform: scale(.93); } to { opacity:1; transform: scale(1); } }
#lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem; white-space: nowrap;
}
#lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  color: rgba(255,255,255,.7); font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1; transition: color .2s;
}
#lightbox-close:hover { color: var(--amber); }
#lightbox-prev, #lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 2.5rem; cursor: pointer; padding: .5rem 1rem;
  transition: color .2s; user-select: none;
}
#lightbox-prev:hover, #lightbox-next:hover { color: var(--amber); }
#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }

/* RESPONSIVE */
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-inner { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }

  nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #0D1B2A;
    padding: 1rem 0 1.5rem;
    z-index: 8999;
  }
  nav ul.open {
    display: flex;
  }
  nav ul li a {
    display: block;
    padding: .9rem 2.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
}
