:root {
  --bg: #f2f0ec;
  --bg-soft: #fbfaf7;
  --ink: #1f1f1b;
  --muted: #62625c;
  --brand: #ac8e5a;
  --brand-dark: #856a3f;
  --line: #ddd7cb;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(45, 34, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(172, 142, 90, 0.18), transparent 45%),
    radial-gradient(circle at bottom left, rgba(112, 85, 42, 0.12), transparent 45%),
    var(--bg);
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 2vw, 2.4rem);
  backdrop-filter: blur(10px);
  background: rgba(249, 247, 241, 0.82);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Bodoni 72", "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--brand-dark);
}

.brand span {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  margin-left: 0.45rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 0.8rem;
}

.site-nav a {
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  transition: 160ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
  background: rgba(172, 142, 90, 0.18);
}

main {
  width: min(1180px, 92vw);
  margin: 1.6rem auto 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0.4rem 0 1rem;
  font-family: "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  font-size: 0.85rem;
  margin: 0;
}

.hero-copy p {
  color: var(--muted);
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.btn {
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--brand), var(--brand-dark));
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--bg-soft);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.showcase-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.pricing {
  margin-top: 2.4rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.pricing h2,
.gallery-intro h1,
.contact-intro h1,
.contact-info h2 {
  margin: 0.3rem 0 0.8rem;
  font-family: "Bodoni 72", "Times New Roman", serif;
}

.section-intro {
  color: var(--muted);
}

.price-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.price-card h3 {
  margin-top: 0;
}

.price-card p {
  color: var(--muted);
  min-height: 78px;
}

.price-card strong {
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.notes {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-page,
.contact-page {
  margin-top: 2rem;
}

.gallery-intro p,
.contact-intro p {
  color: var(--muted);
  max-width: 62ch;
}

.gallery-root {
  margin-top: 1.5rem;
  display: grid;
  gap: 2.2rem;
}

.gallery-group h2 {
  margin-bottom: 0.8rem;
  font-family: "Bodoni 72", "Times New Roman", serif;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 1rem;
  break-inside: avoid;
  box-shadow: 0 8px 25px rgba(25, 19, 10, 0.14);
}

.gallery-item img {
  width: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 12, 8, 0.9);
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1300px);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.lightbox-nav,
.lightbox-close {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(10, 10, 10, 0.45);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  font-size: 1rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  font-size: 1.3rem;
}

.lightbox-nav.prev {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  margin-top: 1rem;
}

.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #cfc9bc;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  display: none;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.form-status.show {
  display: block;
}

.form-status.ok {
  background: #eef8ef;
  border-color: #b9ddbe;
  color: #215f2b;
}

.form-status.error {
  background: #fff1f0;
  border-color: #f1b9b4;
  color: #7b1f1a;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-info ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-info li {
  margin-bottom: 0.4rem;
}

.mini-note {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 1rem;
}

.site-footer {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
  padding: 1rem clamp(1rem, 2vw, 2.4rem) 1.8rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

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

  .showcase-card img {
    height: 240px;
  }

  .site-footer {
    flex-direction: column;
    gap: 0.4rem;
  }

  .lightbox {
    padding: 0.8rem;
  }

  .lightbox-nav {
    width: 2.4rem;
    height: 2.4rem;
  }
}
