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

:root {
  --bark: #3B2A1A;
  --cedar: #6B4226;
  --sand: #C8A96E;
  --driftwood: #9C7A56;
  --cream: #F5EFE6;
  --fog: #EDE4D3;
  --white: #FDFAF6;
  --pelican-blue: #4A7FA5;
  --pelican-dark: #2C5F7A;
  --text-dark: #2A1F15;
  --text-mid: #5C4A36;
  --text-light: #8B7355;
  --shadow: rgba(59,42,26,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  background: rgba(59,42,26,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px var(--shadow);
  transition: background var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--sand);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--fog);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--fog);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--sand); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--fog);
  transition: var(--transition);
}

/* ─── HERO / SLIDESHOW ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.slide.active { opacity: 1; }

/* Placeholder gradient slides for when no photos are uploaded yet */
.slide-1 { background: linear-gradient(135deg, #3B2A1A 0%, #6B4226 40%, #9C7A56 100%); }
.slide-2 { background: linear-gradient(135deg, #2C5F7A 0%, #4A7FA5 50%, #6B4226 100%); }
.slide-3 { background: linear-gradient(135deg, #5C4A36 0%, #C8A96E 60%, #3B2A1A 100%); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,18,8,0.35) 0%,
    rgba(30,18,8,0.2) 40%,
    rgba(30,18,8,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 6%;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fog);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--sand);
  color: var(--bark);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.hero-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.slide-dots {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: var(--sand);
  transform: scale(1.3);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(59,42,26,0.5);
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--sand);
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.slide-arrow:hover { background: rgba(59,42,26,0.85); }
.slide-arrow.prev { left: 2%; }
.slide-arrow.next { right: 2%; }

/* ─── SECTIONS SHARED ─── */
section { padding: 5rem 2rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--bark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 3rem;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--sand);
  margin: 1rem 0 2rem;
}

/* ─── SERVICES ─── */
.services-section { background: var(--fog); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--white);
  padding: 2rem 1.8rem;
  border-bottom: 3px solid var(--sand);
  box-shadow: 0 4px 18px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--shadow);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--bark);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── WHY US ─── */
.why-section { background: var(--bark); }

.why-section .section-title { color: var(--cream); }
.why-section .section-label { color: var(--sand); }
.why-section .divider { background: var(--sand); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.why-item {
  border-left: 3px solid var(--sand);
  padding-left: 1.4rem;
}

.why-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--sand);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--fog);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--cedar);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.cta-banner p {
  color: var(--fog);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--sand);
  color: var(--bark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: var(--fog);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .nav-logo-text {
  color: var(--sand);
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 0.8rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: 'Playfair Display', serif;
  color: var(--sand);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--sand); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  padding-top: 120px;
  background: var(--fog);
  padding-bottom: 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-block {
  position: relative;
}

.about-image-block img,
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--cedar), var(--driftwood));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-image-block::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 3px solid var(--sand);
  z-index: -1;
}

.about-text .section-intro { margin-bottom: 1.5rem; }

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.values-list li::before {
  content: '✦';
  color: var(--sand);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ─── GALLERY PAGE ─── */
.gallery-hero {
  padding-top: 120px;
  background: var(--fog);
  padding-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--driftwood);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--fog);
  font-size: 2.5rem;
}

.gallery-placeholder span {
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,42,26,0);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(59,42,26,0.5);
}

.gallery-label {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TIPS PAGE ─── */
.tips-hero {
  padding-top: 120px;
  background: var(--fog);
  padding-bottom: 3rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: var(--white);
  border-top: 4px solid var(--sand);
  padding: 2rem;
  box-shadow: 0 4px 18px var(--shadow);
  transition: transform var(--transition);
}

.tip-card:hover { transform: translateY(-4px); }

.tip-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin-bottom: 0.8rem;
}

.tip-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--bark);
  margin-bottom: 0.8rem;
}

.tip-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  padding-top: 120px;
  background: var(--fog);
  padding-bottom: 3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  color: var(--bark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-detail-icon {
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.contact-detail-text {
  font-size: 0.92rem;
  color: var(--text-mid);
}

.contact-detail-text strong {
  display: block;
  color: var(--bark);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

/* ─── FORM ─── */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 6px 30px var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #D9CDB8;
  background: var(--fog);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cedar);
  background: var(--white);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--bark);
  color: var(--sand);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.form-submit:hover {
  background: var(--cedar);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  color: var(--bark);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.form-success p { color: var(--text-mid); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }

  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bark);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: 0 8px 20px var(--shadow);
  }

  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }

  .about-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .hero-content { left: 5%; right: 5%; }
}
