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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; font-weight: 300; color: #1a1a1a; background: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Variables ─────────────────────────────────────── */
:root {
  --black: #000;
  --white: #fff;
  --brand: #172e53;
  --cream: #f7f5f1;
  --mid: #e8e5df;
  --text-muted: #666;
  --nav-h: 80px;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
}

/* ── Navigation ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 170px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--black);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #888; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.3s;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 2rem 80px;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('../assets/images/banner.jpg');
  background-size: cover;
  background-position: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: opacity 0.2s;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll:hover { opacity: 1; }
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-location {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #eee;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
}
.hero-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #eee;
  line-height: 2;
}

/* ── Sections shared ───────────────────────────────── */
.section { padding: 90px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.section-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Service Cards ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}
.service-card { text-align: center; }
.service-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--mid);
  margin-bottom: 1.8rem;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.2rem;
}
.card-link {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.card-link:hover { color: #777; border-color: #777; }

/* ── Gallery Strip ─────────────────────────────────── */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── Wide Image Section ────────────────────────────── */
.wide-image {
  height: 650px;
  background-image: url('../assets/images/gallery-4.jpg');
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
}

/* ── Testimonial ───────────────────────────────────── */
.testimonial {
  background: var(--white);
}
.testimonial-carousel {
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.testimonial-inner {
  text-align: center;
  padding: 0 1rem;
}
.testimonial-inner blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.9;
  color: #1a1a1a;
  margin-bottom: 1.8rem;
}
.testimonial-inner blockquote::before { content: '\201C'; }
.testimonial-inner blockquote::after  { content: '\201D'; }
.testimonial-inner cite {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  font-style: normal;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2.2rem;
}
.testimonial-arrow {
  background: none;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.testimonial-arrow:hover { border-color: var(--black); }
.testimonial-dots {
  display: flex;
  gap: 0.6rem;
}
.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.testimonial-dot.active { background: var(--black); }

/* ── Contact / Form ────────────────────────────────── */
.contact { background: var(--cream); }
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact-cta {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  margin-bottom: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 0.6rem 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: #1a1a1a;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1rem;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--black); }
.form-submit {
  text-align: center;
  margin-top: 2.8rem;
}
.btn {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  border: none;
  padding: 0.95rem 3.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.btn:hover { background: #0f2039; }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: calc(0.95rem - 1px) calc(3.5rem - 1px);
}
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

/* ── Page Hero (inner pages) ───────────────────────── */
.page-hero {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 2rem 60px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), var(--hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 0.88rem;
  color: #eee;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .page-hero { min-height: 320px; }
}

/* ── About Page ────────────────────────────────────── */
.about-split {
  padding: calc(var(--nav-h) + 60px) 4rem 80px;
  background: var(--white);
}
.about-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
}
.about-split-text h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.about-split-text p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1rem;
}
.about-split-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 1rem;
}
.team-member { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 25%;
  background: var(--mid);
  margin-bottom: 1.2rem;
  border-radius: 50%;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--mid);
  margin-bottom: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: #888;
}
.team-member h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.team-member .role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.6rem;
}
.team-member a {
  font-size: 0.78rem;
  color: #888;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.team-member a:hover { color: #1a1a1a; border-color: #1a1a1a; }

/* ── Services Page ─────────────────────────────────── */
.service-feature {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.service-feature-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.service-feature-text p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.5rem;
}

/* ── Event labels ──────────────────────────────────── */
.event-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6rem;
}

/* ── Event Galleries (mini slideshow widgets) ────────── */
.event-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.5rem 2.5rem;
  margin-top: 2.5rem;
}
.event-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}
.event-gallery-main {
  position: relative;
}
.event-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}
.event-gallery-arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--black);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.event-gallery-arrow:hover { background: var(--white); }
.event-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
.event-gallery-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  border: none;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.event-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.event-gallery-thumb.active,
.event-gallery-thumb:hover { opacity: 1; }

/* ── Photo carousel ────────────────────────────────── */
.photo-carousel {
  position: relative;
  margin-top: 2rem;
}
.photo-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.photo-carousel-track img {
  flex: 0 0 auto;
  height: 420px;
  width: auto;
  max-width: 90vw;
  display: block;
  background: var(--mid);
  cursor: zoom-in;
  scroll-snap-align: start;
}
.photo-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--black);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.photo-carousel-arrow:hover { background: var(--white); }
.photo-carousel-arrow.prev { left: -22px; }
.photo-carousel-arrow.next { right: -22px; }
@media (max-width: 700px) {
  .photo-carousel-track img { height: 280px; }
  .photo-carousel-arrow.prev { left: 0.5rem; }
  .photo-carousel-arrow.next { right: 0.5rem; }
}

/* ── Lightbox ──────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
@media (max-width: 700px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}
@media (max-width: 700px) {
  .event-gallery-grid { grid-template-columns: minmax(0, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Footer ────────────────────────────────────────── */
footer {
  background: var(--brand);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--mid);
  letter-spacing: 0.08em;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-split { padding: calc(var(--nav-h) + 40px) 2rem 60px; }
  .about-split-text h1 { font-size: clamp(3.5rem, 10vw, 5rem); }
}
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    gap: 1.8rem;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .hero-title { font-size: 3.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .wide-image { height: 400px; background-attachment: scroll; }
}
