:root {
  --bg: #f7f2ee;
  --surface: #fffdfb;
  --text: #241714;
  --muted: #6a5650;
  --accent: #8f3f23;
  --accent-soft: #f1ddd4;
  --border: #e7d5cb;
  --shadow: 0 16px 38px rgba(42, 19, 11, 0.10);
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(143, 63, 35, 0.06), transparent 26%),
    linear-gradient(180deg, #fff8f4 0%, #f7f2ee 100%);
  color: var(--text);
  line-height: 1.65;
}

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

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 247, 0.88);
  border-bottom: 1px solid rgba(231, 213, 203, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(143, 63, 35, 0.10);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow);
  padding: 0;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

section {
  padding: 3rem 0 1.1rem;
}

.hero {
  padding: 5.5rem 0 3.25rem;
}

.hero-grid,
.grid-2,
.form-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.grid-2,
.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.lead {
  font-size: 1.15rem;
  max-width: 60ch;
}

.lead,
.muted,
.contact-list li,
.form-note,
footer {
  color: var(--muted);
}

.hero-card,
.card,
.package,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.package,
.contact-card {
  padding: 1.5rem;
}

.hero-card {
  min-height: 340px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(143, 63, 35, 0.14), rgba(255,255,255,0.97)),
    radial-gradient(circle at top left, rgba(143, 63, 35, 0.18), transparent 40%),
    #fff;
}

.hero-card img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8f3f23, #b55c37);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(42, 19, 11, 0.16);
  opacity: 0.98;
}

.btn.secondary {
  background: rgba(255,255,255,0.75);
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.bullets {
  padding-left: 1.1rem;
  margin: 0.8rem 0 0;
}

.bullets li {
  margin: 0.45rem 0;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}

.package {
  position: relative;
}

.package.popular {
  border: 2px solid var(--accent);
  transform: translateY(-4px);
}

.tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0.4rem 0 1rem;
}

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

.gallery-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(62, 29, 17, 0.14);
}

.gallery-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 9, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(980px, 100%);
}

.lightbox img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.25rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  color: var(--text);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(42, 19, 11, 0.14);
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
}

footer {
  padding: 2.5rem 0 4rem;
  text-align: center;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-2,
  .packages,
  .form-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .package.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 1rem, var(--max));
  }

  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
  }

  .brand {
    text-align: left;
    flex: 1;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    width: 100%;
    background: rgba(255, 250, 247, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 0.75rem;
    z-index: 50;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    text-align: center;
    padding: 0.8rem 0.9rem;
    background: #fff;
    border-radius: 12px;
  }

  .hero,
  section {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.1rem);
  }

  .lead {
    font-size: 1rem;
  }

  .card,
  .package,
  .contact-card,
  .hero-card {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .btn,
  .social-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .social-row,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox img {
    max-height: 78vh;
  }

  .contact-form {
    gap: 0.85rem;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 0.9rem;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 0.75rem, var(--max));
  }

  .nav-links a {
    padding: 0.85rem 1rem;
  }

  h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .price {
    font-size: 1.7rem;
  }

  .btn,
  .social-link {
    padding: 0.9rem 1rem;
  }
}
