/* ===== Guarda — style ===== */
:root {
  --bg: #faf7f2;
  --bg-alt: #f3ede4;
  --ink: #2b2620;
  --ink-soft: #6f6659;
  --gold: #b8915a;
  --gold-dark: #9c7a46;
  --line: #e4dccf;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(43, 38, 32, .10);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h1 em { font-style: italic; color: var(--gold); }
.section__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-align: center; margin-bottom: 48px; }
.section__sub { text-align: center; color: var(--ink-soft); max-width: 560px; margin: -32px auto 40px; }
.eyebrow {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
}
.eyebrow--center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 15px 32px; border-radius: 100px;
  background: var(--ink); color: var(--white); text-decoration: none;
  font-weight: 500; font-size: .95rem; border: 1px solid var(--ink);
  cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.btn--small { padding: 10px 22px; font-size: .85rem; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { color: var(--white); }
.btn--wide { width: 100%; text-align: center; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.logo__dot { color: var(--gold); }
.nav { display: flex; gap: 32px; }
.nav__link { text-decoration: none; font-size: .92rem; color: var(--ink-soft); transition: color .2s; }
.nav__link:hover { color: var(--ink); }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.burger span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* ===== Hero ===== */
.hero { padding: 88px 0 72px; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero__sub { color: var(--ink-soft); font-size: 1.08rem; margin: 24px 0 32px; max-width: 520px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__note { margin-top: 20px; font-size: .85rem; color: var(--ink-soft); }

/* App window mockup */
.app-window {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(1.2deg);
}
.app-window__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #f6f1e9; border-bottom: 1px solid var(--line);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot--red { background: #e0786e; }
.dot--yellow { background: #e6c177; }
.dot--green { background: #93c48b; }
.app-window__title { margin-left: 10px; font-size: .75rem; color: var(--ink-soft); }
.app-window__body { display: grid; grid-template-columns: 64px 1fr; min-height: 340px; }
.app-sidebar { background: #fbf8f3; border-right: 1px solid var(--line); padding: 14px 12px; display: flex; flex-direction: column; gap: 12px; }
.app-sidebar__item { height: 40px; border-radius: 8px; background: linear-gradient(135deg, #eee5d6, #e0d3bd); }
.app-canvas { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.app-spread { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; flex: 1; }
.app-page { background: #fdfcf9; border: 1px solid var(--line); border-radius: 6px; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.app-photo { flex: 1; border-radius: 4px; width: 100%; object-fit: cover; min-height: 40px; background: #e9e1d3; }
.app-photo--tall { min-height: 120px; }
.app-caption { height: 8px; width: 55%; border-radius: 4px; background: #e9e1d3; align-self: center; }
.app-toolbar { display: flex; gap: 10px; justify-content: center; }
.app-toolbar span { width: 34px; height: 10px; border-radius: 5px; background: #ece4d6; }

/* ===== Trust strip ===== */
.strip { border-block: 1px solid var(--line); background: var(--white); }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 24px; }
.strip__item { text-align: center; }
.strip__item strong { display: block; font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); }
.strip__item span { font-size: .85rem; color: var(--ink-soft); }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-alt); color: var(--gold-dark); margin-bottom: 18px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature p { font-size: .92rem; color: var(--ink-soft); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); padding-bottom: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3, .card p { padding: 0 24px; }
.card h3 { margin: 20px 0 8px; font-size: 1.2rem; }
.card p { font-size: .9rem; color: var(--ink-soft); }
.card__img { width: 100%; height: 220px; object-fit: cover; display: block; }

/* Showcase band */
.band {
  background: linear-gradient(rgba(43, 38, 32, .58), rgba(43, 38, 32, .58)), url("../img/band.jpg") center / cover no-repeat;
  color: var(--white); text-align: center; padding: 120px 24px;
}
.band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); max-width: 720px; margin: 0 auto; }
.band p { max-width: 560px; margin: 18px auto 0; color: #e8e0d2; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; padding: 0 12px; }
.step__num {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.4rem;
  background: var(--white); border: 1px solid var(--gold); color: var(--gold-dark);
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* Pricing */
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 48px 40px; text-align: center; box-shadow: var(--shadow);
}
.price-card__badge {
  display: inline-block; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-dark); background: var(--bg-alt); padding: 6px 16px; border-radius: 100px;
  font-weight: 600; margin-bottom: 20px;
}
.price-card__price { font-family: var(--font-serif); font-size: 4.5rem; font-weight: 700; line-height: 1; }
.price-card__currency { font-size: 2rem; vertical-align: super; color: var(--gold); }
.price-card__list { list-style: none; margin: 32px auto; max-width: 320px; text-align: left; }
.price-card__list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 600; }
.price-card__note { margin-top: 16px; font-size: .85rem; color: var(--ink-soft); }

/* ===== Order form ===== */
.order-form {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow);
}
.order-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .88rem; font-weight: 500; margin-bottom: 8px; }
.field input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: #fdfcf9; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 145, 90, .18); }
.field input.invalid { border-color: #c96a5e; }
.field small { display: block; margin-top: 6px; font-size: .78rem; color: var(--ink-soft); }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); margin-bottom: 24px; cursor: pointer; }
.consent input { margin-top: 4px; accent-color: var(--gold-dark); }
.consent a { color: var(--gold-dark); }
.order-form__status { margin-top: 16px; text-align: center; font-size: .92rem; min-height: 1.4em; }
.order-form__status.ok { color: #4d7c46; }
.order-form__status.err { color: #b05347; }

/* ===== FAQ ===== */
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 14px;
}
.faq summary {
  cursor: pointer; font-family: var(--font-serif); font-size: 1.08rem; font-weight: 600;
  list-style: none; position: relative; padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0; color: var(--gold);
  font-size: 1.4rem; line-height: 1; transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; font-size: .92rem; color: var(--ink-soft); }
.faq a { color: var(--gold-dark); }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #cfc6b8; padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.logo--footer { color: var(--white); }
.footer__tag { margin-top: 12px; font-size: .9rem; }
.footer__col h4 { color: var(--white); font-family: var(--font-sans); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a { display: block; text-decoration: none; font-size: .9rem; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__small { font-size: .8rem; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 24px; font-size: .82rem; }

/* ===== Legal pages ===== */
.legal { max-width: 760px; margin: 0 auto; padding: 80px 24px; }
.legal h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal .legal__updated { color: var(--ink-soft); font-size: .85rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--ink-soft); font-size: .95rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--gold-dark); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .features, .gallery, .steps { grid-template-columns: 1fr 1fr; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav { display: none; }
  .nav.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--white);
    border-bottom: 1px solid var(--line); padding: 12px 24px;
  }
  .nav.open .nav__link { padding: 12px 0; }
  .burger { display: flex; }
  .features, .gallery, .steps, .order-form__row, .footer__inner { grid-template-columns: 1fr; }
  .hero { padding: 56px 0; }
  .section { padding: 64px 0; }
  .order-form { padding: 28px 22px; }
  .price-card { padding: 36px 24px; }
}
