@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

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

body {
  font-family: 'Georgia', serif;
  background-color: #f0ede6;
  color: #4f453b;
}

/* ───── NAVBAR ───── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background-color: #633636;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border: none;
}

.logo-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0ede6;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Libre Baskerville', serif;
  text-decoration: none;
  color: #f0ede6;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #c8c49a;
  border-bottom: 2px solid #c8c49a;
  padding-bottom: 2px;
}

/* ───── HAMBURGER ───── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f0ede6;
  border-radius: 3px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ───── MOBILE MENU ───── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #633636;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: 'Libre Baskerville', serif;
  text-decoration: none;
  color: #f0ede6;
  font-size: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #c8c49a;
}

/* ───── PAGE BANNER (subpages) ───── */
.page-banner {
  background-color: #4f453b;
  padding: 60px 60px 50px;
  text-align: center;
  border-bottom: 4px solid #78763d;
}

.page-banner h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  color: #f0ede6;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-banner p {
  font-family: 'Libre Baskerville', serif;
  color: #c8c49a;
  font-size: 1rem;
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* ───── HERO (homepage) ───── */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(99,54,54,0.3) 0%, rgba(79,69,59,0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 16px;
}

.hero-overlay h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.8rem;
  color: #f0ede6;
  letter-spacing: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 8px;
}

.hero-overlay p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #e8e4da;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ───── CTA BUTTON ───── */
.btn-cta {
  display: inline-block;
  padding: 16px 48px;
  background-color: #633636;
  color: #f0ede6;
  text-decoration: none;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  border: 2px solid #c8c49a;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
  margin-top: 12px;
}

.btn-cta:hover {
  background-color: transparent;
  color: #f0ede6;
  border-color: #f0ede6;
  transform: scale(1.04);
}

/* ───── HOME SECTIONS ───── */
.sections-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #4f453b;
  gap: 3px;
}

.section-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: transparent;
  padding: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(99,54,54,0.3);
  z-index: 2;
}

/* Image fills entire card */
.section-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  z-index: 0;
  transition: transform 0.5s ease;
}

.section-card:hover img {
  transform: scale(1.04);
}

/* Cream box sits on top of image at the bottom */
.section-card-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  padding: 28px 30px 40px 30px;
  background-color: rgba(240, 237, 230, 0.70);
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.section-card h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: #633636;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.section-card p {
  font-size: 0.97rem;
  color: #4f453b;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 320px;
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  background-color: #633636;
  color: #f0ede6;
  text-decoration: none;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background-color 0.3s, transform 0.2s;
  margin-top: auto;
}

.btn:hover {
  background-color: #4f453b;
  transform: scale(1.04);
}

/* ───── GALLERY GRID ───── */
.gallery-section {
  padding: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background-color: #6d6b38;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.75);
}

.gallery-item .overlay-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay-icon {
  opacity: 1;
}

.overlay-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #f0ede6;
  stroke-width: 2;
}

/* ───── LIGHTBOX ───── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(79,69,59,0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  font-size: 2.5rem;
  color: #f0ede6;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  z-index: 2001;
}

.lightbox-close:hover {
  color: #c8c49a;
  transform: scale(1.2);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(99,54,54,0.7);
  border: 2px solid #78763d;
  color: #f0ede6;
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2001;
}

.lightbox-arrow:hover {
  background: #78763d;
  color: #f0ede6;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #c8c49a;
  font-size: 0.95rem;
  letter-spacing: 2px;
  font-family: 'Libre Baskerville', serif;
}

/* ───── ABOUT PAGE ───── */
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
}

.about-top {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: start;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-photo-wrap {
  width: 100%;
  position: relative;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 2px solid #78763d;
  border-radius: 2px;
  z-index: 0;
}

.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(99,54,54,0.3);
}

.about-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: #633636;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 8px;
}

.about-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #6d6b38;
  letter-spacing: 2px;
  text-align: center;
}

.name-divider {
  width: 60px;
  height: 2px;
  background-color: #633636;
  margin: 9px auto 9px;
}

.about-statement-col {
  padding-top: 8px;
}

.statement-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #6d6b38;
  margin-bottom: 18px;
}

.about-statement-col h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  color: #633636;
  letter-spacing: 2px;
  margin-bottom: 28px;
  line-height: 1.3;
}

.about-statement-col blockquote {
  font-family: 'Libre Baskerville', serif;
  border-left: 3px solid #633636;
  margin: 0 0 32px 0;
  padding: 16px 0 16px 28px;
  font-size: 1.15rem;
  font-style: italic;
  color: #633636;
  line-height: 1.8;
}

.about-statement-col p {
  font-size: 1.02rem;
  color: #4f453b;
  line-height: 1.9;
  margin-bottom: 22px;
}

.about-statement-col p:last-child {
  margin-bottom: 0;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px 0 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #78763d;
  opacity: 0.5;
}

.section-divider span {
  font-size: 1.2rem;
  color: #78763d;
  letter-spacing: 2px;
}

/* ───── FOOTER ───── */
footer {
  background-color: #4f453b;
  color: #c8c49a;
  text-align: center;
  padding: 28px 20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-top: 40px;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1100px) {
  .gallery-section { padding: 40px 30px; }
  .about-top { grid-template-columns: 300px 1fr; gap: 50px; }
}

@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { height: 70vh; }
  .hero-overlay h1 { font-size: 2.2rem; letter-spacing: 2px; }
  .hero-overlay p { font-size: 1rem; }
  .btn-cta { padding: 14px 36px; font-size: 0.85rem; }

  .page-banner { padding: 40px 24px 36px; }
  .page-banner h1 { font-size: 2rem; }

  .sections-wrapper { grid-template-columns: 1fr; gap: 3px; }
  .section-card { min-height: 500px; }
  .section-card img { height: 100%; }

  .gallery-section { padding: 30px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .about-section { padding: 50px 24px; }
  .about-top { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 320px; margin: 0 auto; }
  .about-photo-wrap::before { top: 10px; left: 10px; right: -10px; bottom: -10px; }
  .about-statement-col h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 1.1rem; }
  .hero-overlay h1 { font-size: 1.7rem; }
  .hero-overlay p { font-size: 0.95rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .about-statement-col blockquote { font-size: 1.05rem; }
  .about-statement-col p { font-size: 0.97rem; }
}