:root {
  color-scheme: light;
  --header-offset: 96px;
  --bg: #f6f1ea;
  --bg-strong: #efe4d7;
  --ink: #241c17;
  --muted: #6b5a52;
  --accent: #b07a5a;
  --accent-dark: #8b5a3e;
  --card: #ffffff;
  --line: #e7d7c8;
  --shadow: 0 20px 50px rgba(36, 28, 23, 0.12);
}

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

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 0;
}

h1, h2, h3, .logo-mark {
  font-family: "Prata", "Times New Roman", serif;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, #f4d9c5, #e4bba0 70%, transparent 72%);
  top: -120px;
  left: -120px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 40% 40%, #f0e0d2, #d9c1b0 70%, transparent 72%);
  bottom: 10%;
  right: -100px;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 60% 40%, #f7e8db, #e8cdbb 70%, transparent 72%);
  top: 40%;
  left: 60%;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(246, 241, 234, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-mark {
  font-size: 22px;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 24px rgba(176, 122, 90, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(176, 122, 90, 0.4);
  box-shadow: none;
}

.hero {
  padding: 90px 0 70px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.hero-badges {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.badge {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.badge-title {
  display: block;
  font-weight: 600;
}

.badge-text {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.photo-frame {
  background: var(--bg-strong);
  padding: 24px;
}

.hero-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(36, 28, 23, 0.18);
}

.hero-card-content {
  padding: 28px;
}

.note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.section {
  padding: 70px 0;
  scroll-margin-top: var(--header-offset);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
}

.price-card h3 {
  margin-bottom: 10px;
}

.price-card p {
  margin-top: 0;
  color: var(--muted);
}

.price {
  margin-top: auto;
  text-align: left;
  color: var(--accent-dark);
  font-weight: 600;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.price strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.section-note {
  margin-top: 24px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.step-number {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-dark);
}

.accent {
  background: var(--bg-strong);
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.capsule {
  align-items: center;
}

.capsule-media {
  background: var(--card);
  border-radius: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.capsule-image {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: 50% 50%;
  background: #f7f1ea;
  border-radius: 18px;
  display: block;
}

.clean-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.clean-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.clean-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-merge {
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  gap: 20px;
}

.contact-merge h3 {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 18px rgba(36, 28, 23, 0.08);
}

.social-icons svg {
  width: 26px;
  height: 26px;
}

.social-icons img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-cta {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
  color: var(--muted);
}

.footer-inner {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-note {
  font-size: 13px;
}

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

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(36, 28, 23, 0.12);
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 28, 23, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 1;
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  width: min(420px, 92vw);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}


.gallery-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal .modal-content {
  width: min(920px, 92vw);
  padding: 18px;
}

.gallery-viewer {
  position: relative;
  display: grid;
  place-items: center;
  background: #0f0c0b;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-viewer img {
  width: 100%;
  height: min(70vh, 640px);
  object-fit: contain;
  background: #0f0c0b;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.gallery-nav.prev {
  left: 14px;
}

.gallery-nav.next {
  right: 14px;
}

.gallery-counter {
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 60px;
  }

  .price-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    text-align: left;
  }
}
