:root {
  --cream: #EFE9DF;
  --cream-deep: #E6DDCF;
  --ink: #2A2722;
  --ink-soft: #5a544b;
  --camel: #B39B78;
  --camel-deep: #9c855f;
  --hunter: #2F4A3A;
  --paper: #F6F2EA;
  --line: rgba(42, 39, 34, 0.14);
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
}

em { font-style: italic; }

.section-eyebrow,
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--camel-deep);
  margin: 0 0 1.1rem;
}
.section-eyebrow.light { color: #d8c8aa; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 233, 223, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-chip {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--camel);
  background: var(--paper);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.05rem; }
.brand-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--ink-soft);
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta a {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  color: var(--ink);
}
.nav-cta a:hover { background: var(--ink); color: var(--cream); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 10px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) 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.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--hunter); border-color: var(--hunter); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--camel);
}
.btn-ghost:hover { background: var(--camel); color: var(--paper); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6.5rem) 1.5rem clamp(2.5rem, 6vw, 4.5rem);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-copy .eyebrow { letter-spacing: 0.28em; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 30rem;
  margin: 0 0 2rem;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.4rem; }
.hero-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--camel-deep);
  margin: 0;
}

.hero-figure { margin: 0; position: relative; }
.hero-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--camel);
  padding: 10px;
  background: var(--paper);
  box-shadow: 0 30px 60px -40px rgba(42, 39, 34, 0.5);
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}
.hero-tag {
  position: absolute;
  bottom: -16px;
  left: -14px;
  background: var(--cream);
  border: 1px solid var(--hunter);
  color: var(--hunter);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  padding: 0.55rem 1.1rem;
}

/* ---------- Band ---------- */
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-deep);
}
.band-text {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ---------- About ---------- */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.frame {
  border: 1px solid var(--camel);
  padding: 10px;
  background: var(--paper);
}
.frame img { width: 100%; object-fit: cover; }
.frame-tall img { aspect-ratio: 3 / 4; }
.about-copy h2 { font-size: clamp(1.8rem, 4.5vw, 2.7rem); margin-bottom: 1.4rem; }
.about-copy p { color: var(--ink-soft); margin: 0 0 1.1rem; max-width: 34rem; }
.about-sign { font-family: var(--serif); font-style: italic; color: var(--ink); }

/* ---------- Services ---------- */
.services {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem 1rem;
  text-align: center;
}
.services-head h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: 1rem; }
.services-intro { color: var(--ink-soft); max-width: 38rem; margin: 0 auto; font-weight: 300; }
.service-list {
  list-style: none;
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 2rem 1.5rem clamp(4rem, 9vw, 6.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.service-item {
  padding: 2.2rem 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-item:nth-child(odd) { border-left: none; }
.service-no {
  font-family: var(--serif);
  font-style: italic;
  color: var(--camel-deep);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.7rem;
}
.service-item h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.service-item p { color: var(--ink-soft); margin: 0; font-weight: 300; }

/* ---------- Gallery ---------- */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
}
.gallery-head { text-align: center; margin-bottom: 2.6rem; }
.gallery-head h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: 1rem; }
.gallery-intro { color: var(--ink-soft); font-weight: 300; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  display: block;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.96);
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.05); filter: saturate(1.05); }
.gallery-item:focus-visible { outline: 2px solid var(--hunter); outline-offset: 2px; }

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: var(--cream);
}
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7rem) 1.5rem;
  text-align: center;
}
.contact h2 {
  color: var(--cream);
  font-size: clamp(2rem, 5.5vw, 3rem);
  margin-bottom: 1.2rem;
}
.contact-lede { color: #cfc6b6; max-width: 34rem; margin: 0 auto 2.6rem; font-weight: 300; }
.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.8rem;
  text-align: center;
}
.meta-block { display: flex; flex-direction: column; gap: 0.4rem; }
.meta-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--camel);
}
.meta-value { font-family: var(--serif); font-size: 1rem; color: var(--cream); line-height: 1.4; }
.meta-value a { border-bottom: 1px solid var(--camel); padding-bottom: 1px; }
.meta-value a:hover { color: var(--camel); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.6rem 1.5rem;
  text-align: center;
}
.footer-inner .brand-chip { margin: 0 auto 0.9rem; width: 36px; height: 36px; }
.footer-name { font-family: var(--serif); font-size: 1.1rem; margin: 0 0 0.2rem; }
.footer-loc { color: var(--ink-soft); font-size: 0.85rem; margin: 0 0 1rem; letter-spacing: 0.04em; }
.footer-fine { color: var(--camel-deep); font-size: 0.72rem; margin: 0; letter-spacing: 0.04em; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 39, 34, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border: 8px solid var(--cream);
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--camel); }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { max-width: 420px; margin: 0 auto; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .menu-toggle { display: flex; }
  nav { position: relative; }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: 1.5rem;
    left: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.5rem 0;
    box-shadow: 0 24px 50px -30px rgba(42,39,34,0.5);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }
  #menu-toggle[aria-expanded="true"] + nav .nav-links {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 1.4rem; }
  .nav-cta { padding: 0.5rem 1.4rem 0.7rem; }
  .nav-cta a { display: block; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-list { grid-template-columns: 1fr; }
  .service-item, .service-item:nth-child(odd) { border-left: none; }
  .hero-tag { left: 0; }
}

@media (max-width: 380px) {
  .contact-meta { gap: 1.6rem; }
}
