:root {
--bg: #f7f1ec;
--bg-soft: #fbf7f3;
--surface: #fffaf7;
--white: #ffffff;
--text: #2f2525;
--muted: #6e5d5d;
--primary: #7a2e3a;
--primary-dark: #5e1f29;
--accent: #d8b8a0;
--border: rgba(72, 42, 42, 0.12);
--shadow: 0 18px 50px rgba(71, 38, 38, 0.08);
--radius: 22px;
--radius-sm: 14px;
--container: 1180px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: "Inter", sans-serif;
color: var(--text);
background: var(--bg);
line-height: 1.6;
}
img {
max-width: 100%;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
.container {
width: min(var(--container), calc(100% - 40px));
margin: 0 auto;
}
.narrow {
width: min(820px, 100%);
margin: 0 auto;
}
.center {
text-align: center;
}
.topbar {
position: sticky;
top: 0;
z-index: 40;
background: rgba(247, 241, 236, 0.88);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
}
.topbar-inner {
min-height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.brand {
font-family: "Cormorant Garamond", serif;
font-size: 1.7rem;
font-weight: 700;
letter-spacing: 0.02em;
}
.hero {
padding: 72px 0 48px;
}
.hero-grid {
display: grid;
grid-template-columns: 1.15fr 0.85fr;
gap: 48px;
align-items: center;
}
.eyebrow,
.section-kicker,
.section-kicker-light {
margin: 0 0 14px;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.eyebrow,
.section-kicker {
color: var(--primary);
}
.section-kicker-light {
color: rgba(255, 255, 255, 0.82);
}
h1,
h2,
h3 {
margin: 0 0 18px;
font-family: "Cormorant Garamond", serif;
line-height: 1.05;
font-weight: 700;
}
h1 {
font-size: clamp(2.7rem, 5vw, 5rem);
letter-spacing: -0.02em;
}
h2 {
font-size: clamp(2rem, 3.6vw, 3.4rem);
}
h3 {
font-size: 1.5rem;
}
.lead,
.body-lg,
.cta-text {
font-size: 1.1rem;
color: var(--muted);
}
.hero-points {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
margin: 28px 0 30px;
}
.point,
.feature-item,
.check-card {
background: rgba(255, 255, 255, 0.68);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 16px 18px;
box-shadow: var(--shadow);
}
.hero-cta {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 56px;
padding: 0 28px;
border-radius: 999px;
font-weight: 700;
transition: 0.25s ease;
border: none;
cursor: pointer;
}
.btn-primary {
background: var(--primary);
color: var(--white);
box-shadow: 0 14px 34px rgba(122, 46, 58, 0.22);
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-1px);
}
.btn-outline {
border: 1px solid var(--primary);
color: var(--primary);
background: transparent;
}
.btn-outline:hover {
background: rgba(122, 46, 58, 0.08);
}
.btn-light {
background: var(--white);
color: var(--primary-dark);
}
.btn-light:hover {
transform: translateY(-1px);
}
.btn-small {
min-height: 46px;
padding: 0 20px;
font-size: 0.95rem;
}
.microcopy {
margin: 0;
font-size: 0.95rem;
color: var(--muted);
}
.microcopy-light {
color: rgba(255, 255, 255, 0.82);
}
.hero-card {
position: relative;
}
.hero-photo-wrap,
.about-photo-wrap {
border-radius: 28px;
overflow: hidden;
box-shadow: var(--shadow);
background: #e8ddd6;
}
.hero-photo,
.about-photo {
width: 100%;
height: 100%;
object-fit: cover;
}
.price-card {
position: absolute;
left: -24px;
bottom: 24px;
display: flex;
flex-direction: column;
gap: 4px;
background: var(--white);
border: 1px solid var(--border);
border-radius: 18px;
padding: 18px 20px;
box-shadow: var(--shadow);
}
.price-label {
font-size: 0.85rem;
color: var(--muted);
}
.price-value {
font-family: "Cormorant Garamond", serif;
font-size: 2.2rem;
font-weight: 700;
line-height: 1;
}
.price-note {
font-size: 0.92rem;
color: var(--muted);
}
.proof {
padding: 10px 0 34px;
}
.proof-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 16px;
}
.proof-item {
background: rgba(255, 255, 255, 0.72);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 18px;
text-align: center;
}
.proof-item strong {
display: block;
margin-bottom: 4px;
}
.proof-item span {
color: var(--muted);
font-size: 0.95rem;
}
.section {
padding: 88px 0;
}
.soft-bg {
background: var(--bg-soft);
}
.accent-bg {
background: linear-gradient(180deg, #f2e2d7 0%, #f9f1eb 100%);
}
.check-grid,
.steps-grid,
.testimonials-grid {
display: grid;
gap: 20px;
}
.check-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
margin-top: 30px;
}
.steps-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
margin-top: 34px;
}
.step-card,
.testimonial-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 28px;
box-shadow: var(--shadow);
}
.step-number {
display: inline-block;
margin-bottom: 16px;
color: var(--primary);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.14em;
}
.two-col,
.about-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 42px;
align-items: center;
}
.feature-list {
display: grid;
gap: 14px;
}
.testimonials-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
margin-top: 32px;
}
.testimonial-card p {
margin: 0 0 16px;
}
.testimonial-author {
font-size: 0.92rem;
color: var(--muted);
font-weight: 600;
}
.testimonials-note {
margin-top: 18px;
color: var(--muted);
font-size: 0.92rem;
text-align: center;
}
.signature {
margin-top: 24px;
font-family: "Cormorant Garamond", serif;
font-size: 1.6rem;
color: var(--primary);
}
.faq-list {
display: grid;
gap: 14px;
margin-top: 30px;
}
.faq-item {
background: rgba(255, 255, 255, 0.78);
border: 1px solid var(--border);
border-radius: 16px;
padding: 0 20px;
}
.faq-item summary {
list-style: none;
cursor: pointer;
padding: 20px 6px;
font-weight: 700;
position: relative;
}
.faq-item summary::-webkit-details-marker {
display: none;
}
.faq-item p {
margin: 0 6px 20px;
color: var(--muted);
}
.cta-final {
padding: 100px 0;
background: linear-gradient(135deg, #6d2430 0%, #8c3a49 100%);
color: var(--white);
}
.footer {
border-top: 1px solid rgba(255,255,255,0.08);
background: #2f2323;
color: rgba(255,255,255,0.8);
}
.footer-inner {
min-height: 76px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}
.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.footer-links a:hover {
color: var(--white);
}
.mobile-sticky-cta {
display: none;
}
@media (max-width: 1080px) {
.hero-grid,
.two-col,
.about-grid,
.proof-grid,
.testimonials-grid,
.check-grid,
.steps-grid {
grid-template-columns: 1fr;
}
.price-card {
position: static;
margin-top: 16px;
}
.hero-points {
grid-template-columns: 1fr;
}
}
@media (max-width: 767px) {
.container {
width: min(100% - 24px, var(--container));
}
.topbar-inner {
min-height: 64px;
}
.btn-outline.btn-small {
display: none;
}
.hero {
padding: 42px 0 24px;
}
.section {
padding: 64px 0;
}
h1 {
font-size: 2.7rem;
}
h2 {
font-size: 2.2rem;
}
.step-card,
.testimonial-card,
.check-card,
.feature-item,
.point {
padding: 20px;
}
.footer-inner {
flex-direction: column;
justify-content: center;
padding: 18px 0;
text-align: center;
}
.mobile-sticky-cta {
position: fixed;
left: 12px;
right: 12px;
bottom: 12px;
display: flex;
align-items: center;
justify-content: center;
min-height: 56px;
border-radius: 999px;
background: var(--primary);
color: var(--white);
font-weight: 800;
box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
z-index: 60;
}
body {
padding-bottom: 84px;
}
}