:root {
  --bg: #FAF9F7;
  --surface: #F1EFEA;
  --ink: #3A3733;
  --muted: #7C776F;
  --taupe: #989796;
  --taupe-dark: #6F6C68;
  --line: #E4E1DB;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

a { color: var(--taupe-dark); }

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

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav__brand span { font-style: italic; color: var(--taupe); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--ink); }

.nav__cta {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--taupe);
  border-radius: 999px;
  color: var(--taupe-dark) !important;
}

.nav__cta:hover { background: var(--surface); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

/* ---------- Hero ---------- */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) 1.5rem;
  text-align: center;
}

.hero__logo {
  width: clamp(200px, 36vw, 320px);
  height: auto;
}

.hero__eyebrow,
.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  max-width: 18ch;
  margin: 0 auto 1rem;
}

.hero__sub {
  max-width: 46ch;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--taupe-dark);
  border: 1px solid var(--taupe-dark);
  color: var(--bg);
}

.btn--primary:hover { background: var(--ink); border-color: var(--ink); }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--taupe);
  color: var(--taupe-dark);
}

.btn--ghost:hover { background: var(--surface); }

/* ---------- Sections ---------- */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem;
  text-align: center;
}

.section--alt {
  max-width: none;
  background: var(--surface);
}

.section--alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.section__intro {
  max-width: 52ch;
  margin: 0 auto 2.75rem;
  color: var(--muted);
}

/* ---------- Services ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  text-align: left;
}

.service {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section:not(.section--alt) .service { background: #fff; }

.service h3 { font-size: 1.45rem; }

.service p { font-size: 0.975rem; color: var(--muted); flex: 1; }

.service__price {
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

/* ---------- About ---------- */

.about {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  text-align: left;
}

.about__photo {
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  background:
    linear-gradient(160deg, #E9E6E0 0%, #DDD9D1 55%, #D2CDC4 100%);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.about__text h2 { margin-bottom: 1rem; }

.about__text p { margin-bottom: 1.1rem; color: var(--ink); }

.about__text .btn { margin-top: 0.5rem; }

/* ---------- Gallery ---------- */

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

.gallery__tile {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(150deg, #EFEDE8, #E2DED7);
  border: 1px solid var(--line);
}

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

.gallery__tile:hover img { transform: scale(1.04); }

/* ---------- Testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.9rem 1.7rem;
  text-align: left;
}

.quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2.5rem;
  text-align: left;
}

.contact__info p { margin-bottom: 1.2rem; color: var(--muted); }

.contact__info strong {
  display: block;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.contact__info .btn { margin-top: 0.5rem; }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem 1.75rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__form input,
.contact__form textarea {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: 1.5px solid var(--taupe);
  outline-offset: 1px;
}

.contact__form .btn { align-self: flex-start; border: 0; }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer img { margin-bottom: 0.5rem; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Mobile ---------- */

@media (max-width: 760px) {
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.75rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .nav__links.is-open { display: flex; }

  .about { grid-template-columns: 1fr; }

  .about__photo { max-width: 320px; margin: 0 auto; }

  .contact { grid-template-columns: 1fr; }
}
