:root {
  --lp-ink: #0f2f2a;
  --lp-ink-soft: #1a4540;
  --lp-accent: #c4a35a;
  --lp-accent-deep: #a8843d;
  --lp-cream: #f3efe6;
  --lp-cream-deep: #e7e0d2;
  --lp-white: #fbfaf7;
  --lp-muted: #5c6b66;
  --lp-line: rgba(15, 47, 42, 0.12);
  --lp-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --lp-sans: "DM Sans", "Segoe UI", sans-serif;
  --lp-nav-h: 4.5rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--lp-sans);
  color: var(--lp-ink);
  background: var(--lp-white);
  line-height: 1.55;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

/* —— Nav —— */
.lp-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.lp-nav.is-scrolled,
.lp-nav.is-open {
  background: rgba(251, 250, 247, 0.94);
  border-bottom-color: var(--lp-line);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(15, 47, 42, 0.06);
}

.lp-nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--lp-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-brand {
  font-family: var(--lp-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lp-nav:not(.is-scrolled):not(.is-open) .lp-brand,
.lp-nav:not(.is-scrolled):not(.is-open) .lp-nav-desktop a:not(.lp-btn) {
  color: #fff;
}

.lp-nav:not(.is-scrolled):not(.is-open) .lp-nav-toggle span {
  background: #fff;
}

.lp-nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-nav-desktop a:not(.lp-btn):hover { color: var(--lp-accent-deep); }

.lp-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.45rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lp-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--lp-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lp-nav.is-open .lp-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-nav.is-open .lp-nav-toggle span:nth-child(2) { opacity: 0; }
.lp-nav.is-open .lp-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Default closed — never override [hidden] with display:grid alone */
.lp-nav-mobile {
  display: none;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem 1.25rem;
  background: rgba(251, 250, 247, 0.98);
  border-top: 1px solid var(--lp-line);
}

.lp-nav.is-open .lp-nav-mobile {
  display: grid;
}

.lp-nav-mobile[hidden] {
  display: none !important;
}

.lp-nav-mobile a {
  padding: 0.85rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--lp-line);
}

.lp-nav-mobile .lp-btn {
  margin-top: 0.5rem;
  border-bottom: 0;
}

/* —— Buttons —— */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  font-family: var(--lp-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lp-btn:hover { transform: translateY(-1px); }

.lp-btn-solid {
  background: var(--lp-ink);
  color: #fff !important;
}
.lp-btn-solid:hover { background: var(--lp-ink-soft); }

.lp-btn-accent {
  background: var(--lp-accent);
  color: var(--lp-ink) !important;
}
.lp-btn-accent:hover { background: var(--lp-accent-deep); color: #fff !important; }

.lp-btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff !important;
  background: transparent;
}
.lp-btn-ghost:hover {
  background: #fff;
  color: var(--lp-ink) !important;
}

.lp-btn-block { width: 100%; }

/* —— Hero —— */
.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: calc(var(--lp-nav-h) + 2rem) 1.25rem 4.5rem;
  overflow: hidden;
}

.lp-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 47, 42, 0.35) 0%, rgba(15, 47, 42, 0.78) 70%, rgba(15, 47, 42, 0.92) 100%),
    url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&q=80&w=2000") center / cover no-repeat;
  transform: scale(1.04);
  animation: lp-hero-zoom 18s ease-out forwards;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  animation: lp-fade-up 0.9s ease-out both;
}

.lp-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--lp-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lp-hero-brand {
  margin: 0 0 1rem;
  font-family: var(--lp-serif);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.lp-hero-lede {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  color: rgba(243, 239, 230, 0.9);
  font-size: 1.1rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Sections —— */
.lp-section { padding: 5rem 1.25rem; }
.lp-section-cream { background: var(--lp-cream); }
.lp-section-white { background: var(--lp-white); }
.lp-section-ink {
  background:
    radial-gradient(circle at top right, rgba(196, 163, 90, 0.16), transparent 40%),
    var(--lp-ink);
  color: #fff;
}

.lp-wrap {
  max-width: 72rem;
  margin: 0 auto;
}

.lp-section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.lp-section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.lp-section-head-light .lp-kicker { color: var(--lp-accent); }

.lp-kicker {
  margin: 0 0 0.65rem;
  color: var(--lp-accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lp-kicker-light { color: var(--lp-accent); }

.lp-title {
  margin: 0;
  font-family: var(--lp-serif);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lp-title-light { color: #fff; }

.lp-lead {
  margin: 0.8rem 0 0;
  color: var(--lp-muted);
  font-size: 1.05rem;
}

.lp-lead-light { color: rgba(243, 239, 230, 0.72); }

.lp-copy {
  margin: 1.25rem 0 0;
  color: var(--lp-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* —— About —— */
.lp-about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.lp-pillars {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.lp-pillars li {
  padding-top: 1.1rem;
  border-top: 1px solid var(--lp-line);
}

.lp-pillars strong {
  display: block;
  font-family: var(--lp-serif);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.lp-pillars span {
  color: var(--lp-muted);
  font-size: 0.98rem;
}

.lp-about-visual figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  box-shadow: 0 24px 60px rgba(15, 47, 42, 0.18);
}

.lp-about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* —— Services —— */
.lp-service-list {
  display: grid;
  gap: 0;
  max-width: 52rem;
  margin: 0 auto;
}

.lp-service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(243, 239, 230, 0.14);
}

.lp-service-row:first-child { border-top: 1px solid rgba(243, 239, 230, 0.14); }

.lp-service-row h3 {
  margin: 0 0 0.35rem;
  font-family: var(--lp-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.lp-service-row p {
  margin: 0;
  color: rgba(243, 239, 230, 0.68);
  font-size: 0.98rem;
}

.lp-service-price {
  flex-shrink: 0;
  font-family: var(--lp-serif);
  font-size: 1.35rem;
  color: var(--lp-accent);
  font-weight: 600;
}

/* —— Gallery —— */
.lp-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.lp-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.2rem;
  background: var(--lp-cream-deep);
}

.lp-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* —— Contact —— */
.lp-contact-grid {
  display: grid;
  gap: 0.85rem;
}

.lp-contact-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 1.4rem;
  background: var(--lp-cream);
  border: 1px solid var(--lp-line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.lp-contact-card:hover {
  border-color: var(--lp-accent);
  transform: translateY(-2px);
}

.lp-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-accent-deep);
}

.lp-contact-card strong {
  font-family: var(--lp-serif);
  font-size: 1.35rem;
  font-weight: 600;
  word-break: break-word;
}

/* —— Location —— */
.lp-map {
  overflow: hidden;
  border-radius: 0.2rem;
  border: 1px solid var(--lp-line);
  background: var(--lp-cream-deep);
  aspect-ratio: 16 / 10;
}

.lp-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lp-map-fallback {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--lp-white);
  border: 1px dashed var(--lp-line);
}

.lp-map-fallback p {
  margin: 0 0 1.25rem;
  color: var(--lp-muted);
}

.lp-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* —— Footer —— */
.lp-footer {
  background: var(--lp-ink);
  color: rgba(243, 239, 230, 0.85);
  padding: 3.5rem 1.25rem 1.5rem;
}

.lp-footer-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.lp-footer h4 {
  margin: 0 0 0.85rem;
  font-family: var(--lp-serif);
  font-size: 1.2rem;
  color: #fff;
}

.lp-footer p { margin: 0 0 0.4rem; }

.lp-footer a:hover { color: var(--lp-accent); }

.lp-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(243, 239, 230, 0.12);
  font-size: 0.95rem;
}

.lp-footer-copy {
  max-width: 72rem;
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(243, 239, 230, 0.12);
  font-size: 0.85rem;
  color: rgba(243, 239, 230, 0.55);
}

/* —— Motion —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: none; }
}

@keyframes lp-hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-hero-media,
  .lp-hero-inner,
  [data-reveal],
  .lp-gallery-item img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* —— Breakpoints —— */
@media (min-width: 640px) {
  .lp-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-gallery-item.is-wide {
    grid-column: 1 / -1;
  }

  .lp-gallery-item.is-wide img {
    aspect-ratio: 21 / 9;
  }

  .lp-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .lp-nav-desktop { display: flex; }
  .lp-nav-toggle { display: none; }

  /* Never show the mobile drawer on desktop */
  .lp-nav-mobile,
  .lp-nav.is-open .lp-nav-mobile {
    display: none !important;
  }

  .lp-about {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }

  .lp-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .lp-section { padding: 6.5rem 1.5rem; }

  .lp-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-gallery-item.is-wide {
    grid-column: span 2;
  }

  .lp-gallery-item.is-wide img {
    aspect-ratio: 16 / 10;
  }

  .lp-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
