:root {
  --green: #1E332B;
  --green-deep: #16271F;
  --champagne: #DFCBA4;
  --cream: #F4EFE6;
  --sand: #C9B89A;
  --ink: #20231F;
  --muted: #5d6b5f;
  --line: rgba(30, 51, 43, 0.14);
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Sora", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: 0.2px; }

em { font-style: italic; }

.eyebrow,
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem clamp(1.1rem, 4vw, 3rem);
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: baseline; gap: 0.55rem; }

.brand-mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0.05em 0.55em;
  line-height: 1.4;
}

.brand-name {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green);
}

nav { display: flex; align-items: center; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--green);
  transition: opacity 0.25s var(--ease);
}

.nav-links a:hover { opacity: 0.6; }

.nav-cta {
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  background: var(--green);
  color: var(--cream) !important;
  letter-spacing: 0.08em !important;
  transition: background 0.25s var(--ease), color 0.25s var(--ease) !important;
}

.nav-cta:hover { background: transparent; color: var(--green) !important; opacity: 1 !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.6px;
  width: 24px;
  background: var(--green);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.4rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-text .eyebrow { display: block; margin-bottom: 1.4rem; }

.hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5rem);
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero h1 em { color: var(--sand); }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 2.2rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary { background: var(--green); color: var(--cream); border: 1px solid var(--green); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); }

.btn-ghost { border: 1px solid var(--green); color: var(--green); }
.btn-ghost:hover { background: var(--green); color: var(--cream); }

.hero-frame {
  position: relative;
  border-radius: 220px 220px 12px 12px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 30px 70px -30px rgba(30, 51, 43, 0.5);
  aspect-ratio: 624 / 880;
}

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

.hero-tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--champagne);
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
}

/* ---------- About ---------- */
.about {
  background: var(--green);
  color: var(--cream);
}

.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 3rem);
}

.about .section-eyebrow { color: var(--champagne); }

.about h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: var(--cream);
  max-width: 20ch;
  margin: 1rem 0 2.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.about-grid p { color: rgba(244, 239, 230, 0.78); font-size: 1.02rem; }

.about-marks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.8rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(223, 203, 164, 0.25);
}

.about-marks li {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(223, 203, 164, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
}

/* ---------- Services ---------- */
.services {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 3rem);
  text-align: center;
}

.services h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: var(--green);
  margin: 0.8rem 0 3rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  text-align: left;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.4rem 2rem 2.1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(30, 51, 43, 0.4);
}

.service-no {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--sand);
}

.service-card h3 {
  font-size: 1.55rem;
  color: var(--green);
  margin: 0.5rem 0 0.9rem;
}

.service-card p { color: var(--muted); font-size: 0.96rem; }

.service-price {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  width: 100%;
}

.services-note { margin-top: 2.4rem; color: var(--muted); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery {
  background: linear-gradient(180deg, var(--cream), #ece4d6);
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 3rem);
  text-align: center;
}

.gallery h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  color: var(--green);
  margin: 0.8rem 0 3rem;
}

.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1px;
  gap: 1rem;
}

.gallery-item {
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--sand);
  border-radius: 12px;
  overflow: hidden;
  grid-row: span 290;
  position: relative;
}

.gallery-item:nth-child(4n + 1),
.gallery-item:nth-child(4n) { grid-row: span 340; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
}

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

/* ---------- Contact ---------- */
.contact {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
}

.contact-card {
  max-width: 760px;
  width: 100%;
  background: var(--green);
  color: var(--cream);
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4.2rem);
  text-align: center;
}

.contact-card .section-eyebrow { color: var(--champagne); }

.contact-card h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--cream);
  margin: 0.8rem 0 1.2rem;
}

.contact-lead { color: rgba(244, 239, 230, 0.78); max-width: 46ch; margin: 0 auto 2.6rem; }

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  text-align: left;
  margin-bottom: 2.6rem;
  border-top: 1px solid rgba(223, 203, 164, 0.25);
  border-bottom: 1px solid rgba(223, 203, 164, 0.25);
  padding: 2rem 0;
}

.contact-details dt {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

.contact-details dd { font-size: 0.98rem; color: var(--cream); }
.contact-details dd a { border-bottom: 1px solid rgba(223, 203, 164, 0.5); padding-bottom: 1px; }
.contact-details dd a:hover { color: var(--champagne); }

/* ---------- Footer ---------- */
footer {
  background: var(--green-deep);
  color: rgba(244, 239, 230, 0.7);
  padding: 2.4rem clamp(1.1rem, 4vw, 3rem);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  font-size: 0.82rem;
  text-align: center;
}

.footer-brand { font-family: var(--serif); font-size: 1.15rem; color: var(--champagne); }
.footer-inner a:hover { color: var(--champagne); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 39, 31, 0.94);
  padding: 1.5rem;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.lightbox-close:hover { color: var(--champagne); }

/* ---------- Mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  text-align: center;
  background: var(--green);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.95rem 1rem;
  box-shadow: 0 -8px 24px -10px rgba(0, 0, 0, 0.4);
}

/* ---------- Reveal ----------
   Reveals are visible by default. They only start hidden once JS has added
   `.js-reveal` to <html> (so no-JS users always see content) AND only when
   the visitor has not requested reduced motion. */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
  .js-reveal .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-frame { max-width: 420px; margin: 0 auto; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item,
  .gallery-item:nth-child(4n + 1),
  .gallery-item:nth-child(4n) { grid-row: span 300; }
  .contact-details { grid-template-columns: 1fr; text-align: center; }

  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem 2.2rem;
    background: var(--green);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--cream); font-size: 1.05rem; }
  .nav-cta { background: var(--champagne); color: var(--green) !important; border-color: var(--champagne); }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  .mobile-cta { display: block; }
  footer { padding-bottom: 4.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { gap: 0.7rem; }
  .hero-frame { border-radius: 160px 160px 10px 10px; }
}
