
:root {
  --bg: #f8f2ea;
  --bg-soft: #fcf8f2;
  --panel: rgba(255, 252, 247, 0.95);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --text: #2e241d;
  --muted: #766457;
  --brand: #b68a56;
  --brand-2: #dcc2a2;
  --brand-dark: #8d6b43;
  --line: rgba(110, 86, 62, 0.16);
  --shadow: 0 24px 55px rgba(89, 67, 45, 0.14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(220, 194, 162, 0.45), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(182, 138, 86, 0.12), transparent 24%),
    linear-gradient(180deg, #fdfaf7 0%, #f8f2ea 46%, #f5ede4 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(253, 249, 243, 0.96);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(300px, 410px) 1fr;
  align-items: center;
  gap: 28px;
}

.brand,
.logo-area {
  min-width: 360px;
  min-height: 104px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 240, 229, 0.76));
  border: 1px solid rgba(182, 138, 86, 0.18);
  box-shadow: 0 16px 34px rgba(89, 67, 45, 0.08);
}

.logo-area {
  min-width: 360px;
  min-height: 104px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 240, 229, 0.76));
  border: 1px solid rgba(182, 138, 86, 0.18);
  box-shadow: 0 16px 34px rgba(89, 67, 45, 0.08);
}

.logo-area:hover {
  transform: translateY(-1px);
}













.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}
.nav-links a:hover { color: var(--text); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 18px;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(182, 138, 86, 0.24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(182, 138, 86, 0.28); }
.btn-small { padding: 11px 16px; font-size: 14px; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.hero { padding: 92px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}
h1 {
  font-size: clamp(46px, 7vw, 78px);
  line-height: .96;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
h3 { font-size: 28px; margin-bottom: 10px; }
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 690px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  margin-top: 24px;
  font-size: 14px;
}
.trust-grid span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}
.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.hero-mini-cards article,
.step-card,
.contact-card,
details,
.quote-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.hero-mini-cards article {
  padding: 20px;
}
.hero-mini-cards strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
}
.hero-mini-cards p,
.step-card p,
.section-head p,
.contact-card small,
details p,
.quote-box p,
.signature-grid p,
.footer p,
.product-note,
.product-submeta {
  color: var(--muted);
  line-height: 1.7;
}
.hero-showcase {
  position: relative;
}
.showcase-frame {
  border-radius: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(250,241,230,.75));
  box-shadow: var(--shadow);
}
.showcase-scene {
  min-height: 560px;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(140deg, rgba(255,255,255,.62), rgba(246,236,224,.9)),
    repeating-linear-gradient(135deg, rgba(182,138,86,.06) 0, rgba(182,138,86,.06) 2px, transparent 2px, transparent 12px);
  position: relative;
  overflow: hidden;
}
.showcase-scene::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(182,138,86,.2);
  pointer-events: none;
}
.scene-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  padding: 10px 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--brand-dark);
  font-weight: 700;
}
.scene-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(141, 107, 67, 0.16);
  background: rgba(255, 253, 250, 0.84);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(110, 86, 62, 0.10);
}
.frame-card {
  padding: 34px 32px;
  max-width: 76%;
}
.frame-card-top {
  color: var(--brand-dark);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 24px;
}
.monogram {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 128px;
  line-height: .85;
  color: var(--brand);
}
.frame-line {
  width: 110px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  margin: 14px 0 18px;
}
.scene-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.small-card {
  padding: 20px;
}
.small-card span {
  display: block;
  color: var(--brand-dark);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.small-card strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  line-height: 1.05;
}
.light-card { background: rgba(244, 235, 223, .78); }
.section { padding: 80px 0; }
.section.alt {
  background: rgba(255, 250, 244, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.signature-strip { padding-top: 12px; }
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.signature-grid article {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}
.section-head.left { text-align: left; margin-inline: 0; }
.luxury-head h2::after {
  content: '';
  display: block;
  width: 84px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.section-head.left h2::after { margin-left: 0; margin-right: 0; }
.toolbar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
  margin-bottom: 26px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  color: var(--text);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
select option { color: var(--text); }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(182, 138, 86, 0.75);
  box-shadow: 0 0 0 4px rgba(182, 138, 86, 0.10);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  position: relative;
}
.product-image {
  min-height: 220px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(245,235,224,.9)),
    radial-gradient(circle at 25% 20%, rgba(220,194,162,.35), transparent 30%);
}
.product-image.variant-social {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(243,231,218,.92)),
    radial-gradient(circle at 20% 25%, rgba(220,194,162,.44), transparent 30%);
}
.product-image.variant-business {
  background:
    linear-gradient(145deg, rgba(251,247,240,.96), rgba(239,226,211,.94)),
    radial-gradient(circle at 78% 25%, rgba(182,138,86,.20), transparent 28%);
}
.product-image.variant-canva {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,236,226,.94)),
    radial-gradient(circle at 75% 70%, rgba(182,138,86,.18), transparent 24%);
}
.product-image.variant-digital {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,239,231,.94)),
    radial-gradient(circle at 35% 70%, rgba(220,194,162,.28), transparent 26%);
}
.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-badge,
.product-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-badge {
  background: rgba(255,255,255,.84);
  color: var(--brand-dark);
  border: 1px solid rgba(141,107,67,.18);
}
.product-tag {
  background: rgba(182,138,86,.12);
  color: var(--brand-dark);
}
.product-visual {
  border: 1px solid rgba(141,107,67,.12);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.72);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
}
.product-visual span {
  color: var(--brand-dark);
  letter-spacing: .14em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-visual strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  line-height: 1;
}
.product-body { padding: 22px; }
.product-body h3 {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.price {
  font-size: 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  color: var(--brand-dark);
}
.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.product-actions .btn { width: 100%; padding: 12px 14px; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card,
.contact-card,
details,
.quote-box { padding: 24px; }
.step-card span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(182, 138, 86, 0.14);
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 22px;
}
.custom {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.quote-box { margin-top: 18px; }
.quote-box strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  margin-bottom: 10px;
}
.contact-card label {
  display: block;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-card input,
.contact-card textarea { margin-top: 8px; }
.contact-card small { display: block; margin-top: 12px; }
.faq { max-width: 920px; }
details { margin-bottom: 14px; }
summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand-dark);
  font-size: 18px;
}
details[open] summary::after { content: '–'; }
details p { margin: 14px 0 0; }
.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: rgba(250, 243, 234, 0.95);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-brand-block { max-width: 540px; }

.footer-links-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}
.footer-links-group a:hover { color: var(--text); }
.download-box {
  max-width: 860px;
  margin: 70px auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 32px;
}
.notice {
  border: 1px solid rgba(182, 138, 86, 0.32);
  background: rgba(182, 138, 86, 0.08);
  border-radius: 18px;
  padding: 16px;
  color: var(--muted);
}
code {
  background: rgba(182, 138, 86, 0.09);
  border: 1px solid rgba(182, 138, 86, 0.14);
  border-radius: 8px;
  padding: 2px 6px;
}
@media (max-width: 980px) {
  .nav {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-area {
  min-width: 360px;
  min-height: 104px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 240, 229, 0.76));
  border: 1px solid rgba(182, 138, 86, 0.18);
  box-shadow: 0 16px 34px rgba(89, 67, 45, 0.08);
}

  .hero-grid,
  .custom,
  .signature-grid,
  .product-grid,
  .step-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid,
  .custom { grid-template-columns: 1fr; }
  .toolbar { grid-template-columns: 1fr; }
  .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}
  .nav-links.open { display: flex; }
  .menu-button { display: block; }
}
@media (max-width: 720px) {
  .nav {
    min-height: 92px;
  }

  .logo-area {
  min-width: 360px;
  min-height: 104px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 240, 229, 0.76));
  border: 1px solid rgba(182, 138, 86, 0.18);
  box-shadow: 0 16px 34px rgba(89, 67, 45, 0.08);
}

  
  
  
  .hero,
  .section { padding-top: 58px; padding-bottom: 58px; }
  .product-grid,
  .step-grid,
  .signature-grid,
  .scene-bottom,
  .hero-mini-cards { grid-template-columns: 1fr; }
  .frame-card { max-width: 100%; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn,
  .product-actions .btn { width: 100%; }
}


.brand-logo {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 14px;
}
