:root {
  --cream: #faf7f2;
  --warm-white: #f5f0e8;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --dark: #1a1610;
  --dark-mid: #2e2820;
  --text: #3d3328;
  --text-light: #7a6e62;
  --border: rgba(201,169,110,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; letter-spacing: .08em;
  color: var(--dark); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark); text-decoration: none;
  border: 1px solid var(--gold);
  padding: .5rem 1.2rem;
  transition: background .25s, color .25s;
}
.nav-cta:hover { background: var(--gold); color: var(--cream); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,169,110,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(201,169,110,.08) 0%, transparent 60%);
}
.hero-ornament {
  position: absolute; top: 10%; right: 8%;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid var(--border);
  opacity: .5;
  animation: rotate 40s linear infinite;
}
.hero-ornament::after {
  content: '';
  position: absolute; inset: 30px;
  border-radius: 50%; border: 1px solid var(--border);
}
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 820px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.01em;
  color: var(--dark);
  opacity: 0; animation: fadeUp .9s .35s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 1.5rem; font-size: 1.1rem; color: var(--text-light);
  max-width: 540px; margin-left: auto; margin-right: auto;
  opacity: 0; animation: fadeUp .9s .5s forwards;
}
.hero-actions {
  margin-top: 2.8rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s .65s forwards;
}
.btn-primary {
  background: var(--dark); color: var(--cream);
  padding: .85rem 2.2rem; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .25s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-secondary {
  border: 1px solid var(--gold); color: var(--dark);
  padding: .85rem 2.2rem; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .25s, color .25s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--gold); color: var(--cream); }
.hero-divider {
  width: 1px; height: 70px; background: var(--gold);
  margin: 3.5rem auto 0;
  opacity: 0; animation: fadeUp .9s .8s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SECTIONS ── */
section { padding: 100px 6vw; }
.section-label {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.15;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }
.divider-line {
  width: 60px; height: 1px; background: var(--gold);
  margin: 1.8rem 0;
}

/* ── WHAT ── */
#what {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.what-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6vw; align-items: center; max-width: 1100px; margin: 0 auto;
}
.what-text p { color: var(--text-light); font-size: 1.05rem; margin-top: 1rem; max-width: 460px; }
.what-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.feat {
  padding: 1.6rem;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: border-color .25s, transform .25s;
}
.feat:hover { border-color: var(--gold); transform: translateY(-3px); }
.feat-icon { font-size: 1.6rem; margin-bottom: .8rem; display: block; }
.feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem;
}
.feat-desc { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ── ADDONS ── */
#addons {
  background: var(--dark);
  padding: 100px 6vw;
  position: relative; overflow: hidden;
}
#addons::before {
  content: '';
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.07), transparent 65%);
  pointer-events: none;
}
.addons-header {
  text-align: center; max-width: 600px; margin: 0 auto 4rem;
}
.addons-header .section-label { color: var(--gold-light); }
.addons-header p { color: rgba(250,247,242,.5); margin-top: 1rem; font-size: 1rem; }
.addons-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.addon-card {
  border: 1px solid rgba(201,169,110,.2);
  padding: 2.5rem;
  position: relative;
  transition: border-color .3s, background .3s;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.addon-card:hover { border-color: var(--gold); background: rgba(201,169,110,.04); }
.addon-tag {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); opacity: .7;
}
.addon-icon { font-size: 2.4rem; line-height: 1; }
.addon-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--cream); line-height: 1.2;
}
.addon-title em { font-style: italic; color: var(--gold); }
.addon-desc { font-size: .9rem; color: rgba(250,247,242,.55); line-height: 1.7; }
.addon-list {
  list-style: none; display: flex; flex-direction: column; gap: .4rem;
  padding: 0; margin: 0;
}
.addon-list li {
  font-size: .85rem; color: rgba(250,247,242,.5);
  padding-left: 1.2rem; position: relative;
}
.addon-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: .55rem; top: .25rem;
}
.addon-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem;
  margin-top: .4rem;
}
.addon-gallery-tile {
  aspect-ratio: 1;
  background: var(--dark-mid);
  border: 1px solid rgba(201,169,110,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: border-color .25s;
  overflow: hidden;
}
.addon-gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.addon-gallery-tile:hover { border-color: rgba(201,169,110,.4); }
.addon-cloud-info {
  display: flex; align-items: center; gap: .8rem;
  padding: 1.2rem; background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,169,110,.12);
  margin-top: .4rem;
}
.addon-cloud-step {
  display: flex; flex-direction: column; align-items: center; gap: .2rem; flex: 1;
  text-align: center;
}
.addon-cloud-step span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold); line-height: 1;
}
.addon-cloud-step { font-size: .75rem; color: rgba(250,247,242,.4); }
.addon-cloud-arrow { color: rgba(201,169,110,.3); font-size: 1rem; }
.addon-btn {
  display: inline-block; margin-top: auto;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,.3);
  padding-bottom: .2rem;
  transition: border-color .2s, color .2s;
  align-self: flex-start;
}
.addon-btn:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── HOW ── */
#how { max-width: 1100px; margin: 0 auto; }
#how-wrap { background: var(--cream); border-bottom: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3.5rem; }
.step { position: relative; padding-left: 1rem; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300; color: var(--gold-light);
  line-height: 1; margin-bottom: .5rem;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--dark); margin-bottom: .6rem; }
.step-text { font-size: .9rem; color: var(--text-light); }
.step::after {
  content: ''; position: absolute; top: 2.2rem; right: -1.5rem;
  width: 3rem; height: 1px; background: var(--border);
}
.step:last-child::after { display: none; }

/* ── VIDEO ── */
#video {
  background: var(--dark);
  padding: 100px 6vw;
  text-align: center;
}
#video .section-label { color: var(--gold-light); }
#video .section-title { color: var(--cream); }
#video .divider-line { margin-left: auto; margin-right: auto; }
#video p { color: rgba(250,247,242,.6); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.video-container {
  max-width: 800px; margin: 0 auto;
  position: relative; aspect-ratio: 16/9;
  background: var(--dark-mid);
  border: 1px solid rgba(201,169,110,.3);
  overflow: hidden;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem;
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .25s, transform .2s;
}
.play-btn:hover { background: var(--gold); transform: scale(1.08); }
.play-btn svg { width: 24px; height: 24px; fill: var(--gold); margin-left: 4px; }
.play-btn:hover svg { fill: var(--dark); }
.video-placeholder p { color: rgba(250,247,242,.45); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.video-container iframe, .video-container video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-hint { margin-top: 1.2rem; font-size: .78rem; color: rgba(201,169,110,.55); letter-spacing: .08em; }

/* ── EXAMPLES ── */
#examples { background: var(--warm-white); border-top: 1px solid var(--border); }
.examples-inner { max-width: 1100px; margin: 0 auto; }
.example-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5vw; align-items: center;
  border: 1px solid var(--border); padding: 3rem;
  background: var(--cream);
  transition: border-color .25s;
}
.example-card:hover { border-color: var(--gold); }
.example-url { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; color: var(--gold); margin-bottom: .5rem; }
.example-names { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--dark); margin-bottom: 1rem; }
.example-desc { font-size: .9rem; color: var(--text-light); margin-bottom: 1.5rem; }
.example-link {
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: .2rem; transition: border-color .2s;
}
.example-link:hover { border-color: var(--gold); }
.example-mockup {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--warm-white), var(--gold-light));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.mockup-inner { text-align: center; padding: 2rem; }
.mockup-inner .m-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--dark); margin-bottom: .5rem; }
.mockup-inner .m-date { font-size: .8rem; color: var(--text-light); letter-spacing: .1em; }
.mockup-inner .m-heart { font-size: 2rem; margin: .8rem 0; }
.mockup-inner .m-bar { width: 80%; height: 3px; background: var(--gold); margin: 1rem auto 0; border-radius: 2px; }

/* ── CONTACT ── */
#contact {
  text-align: center; padding: 120px 6vw;
  background: var(--dark);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.1), transparent 70%);
  pointer-events: none;
}
#contact .section-label { color: var(--gold-light); }
#contact .section-title { color: var(--cream); }
#contact .divider-line { margin: 1.5rem auto; }
#contact p { color: rgba(250,247,242,.55); max-width: 480px; margin: 0 auto 2.5rem; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; max-width: 560px; margin: 0 auto 2rem;
}
.contact-grid input, .contact-grid textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.25);
  padding: .9rem 1.2rem;
  color: var(--cream); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; outline: none;
  transition: border-color .25s;
}
.contact-grid input:focus, .contact-grid textarea:focus { border-color: var(--gold); }
.contact-grid input::placeholder, .contact-grid textarea::placeholder { color: rgba(250,247,242,.3); }
.contact-grid .full { grid-column: 1/-1; }
.contact-grid textarea { resize: vertical; min-height: 100px; }
.btn-send {
  display: inline-block; padding: .9rem 2.5rem;
  background: var(--gold); color: var(--dark);
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: opacity .2s, transform .2s;
}
.btn-send:hover { opacity: .85; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--dark-mid);
  border-top: 1px solid rgba(201,169,110,.15);
  padding: 2.5rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--cream); text-decoration: none; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(250,247,242,.4); text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: .75rem; color: rgba(250,247,242,.25); }
.footer-copy a { color: rgba(250,247,242,.25); text-decoration: none; transition: color .2s; }
.footer-copy a:hover { color: var(--gold); }

/* ── MODALS ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(26,22,16,.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--cream); max-width: 680px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  padding: 3rem; position: relative;
  border-top: 3px solid var(--gold);
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--text-light); line-height: 1;
}
.modal h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark); margin-bottom: 1.5rem; }
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--dark); margin: 1.5rem 0 .5rem; }
.modal p, .modal li { font-size: .9rem; color: var(--text-light); line-height: 1.8; margin-bottom: .8rem; }
.modal ul { padding-left: 1.2rem; margin-bottom: .8rem; }
.modal a { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── UTILITIES ── */
.section-intro { text-align: center; }
.what-text p + p { margin-top: .8rem; }
#addons .section-title { color: var(--cream); }
.addons-header .divider-line { margin-left: auto; margin-right: auto; }
#how .divider-line { margin-left: auto; margin-right: auto; }
.examples-inner > .reveal { margin-bottom: 3.5rem; }
.contact-grid .btn-wrap { text-align: center; }

/* ── FORM SUCCESS ── */
#form-success {
  display: none;
  color: var(--gold-light);
  margin-top: 1rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
}

/* ── MODAL HINT ── */
.modal-hint { margin-top: 1.5rem; font-size: .78rem; color: var(--gold); }

/* ── VIDEO HINT INNER ── */
.video-hint-inner { color: rgba(250,247,242,.5); font-size: .9rem; padding: 2rem; }

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 6vw 80px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color .2s;
}
.legal-back:hover { color: var(--gold); }
.legal-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.legal-wrap h1 em { font-style: italic; color: var(--gold); }
.legal-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: .6rem;
}
.legal-wrap p { color: var(--text-light); margin-bottom: .8rem; }
.legal-wrap strong { color: var(--text); }
.legal-wrap a { color: var(--gold); text-underline-offset: 3px; }
.legal-note {
  margin-top: 2.5rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,169,110,.06);
  font-size: .82rem;
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .what-grid, .steps, .example-card, .contact-grid,
  .addons-grid, .what-features, .addon-cloud-info { grid-template-columns: 1fr; }
  .step::after { display: none; }
  footer { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
}
