1247 lines
22 KiB
CSS
1247 lines
22 KiB
CSS
:root {
|
|
--color-bg: #FAF7F2;
|
|
--color-cream: #FFF8F0;
|
|
--color-text: #3D3229;
|
|
--color-text-light: #5C5248;
|
|
--color-warm: #C9A87C;
|
|
--color-accent: #8B6914;
|
|
--color-accent-light: #A67C00;
|
|
--color-sage: #A8B5A0;
|
|
--color-white: #FFFFFF;
|
|
--color-danger: #C53030;
|
|
|
|
--font-body: 'Heebo', sans-serif;
|
|
|
|
--space-xs: 0.5rem;
|
|
--space-sm: 1rem;
|
|
--space-md: 1.5rem;
|
|
--space-lg: 2.5rem;
|
|
--space-xl: 4rem;
|
|
--space-2xl: 5rem;
|
|
|
|
--radius-sm: 4px;
|
|
--radius-md: 8px;
|
|
--radius-lg: 16px;
|
|
--radius-full: 9999px;
|
|
|
|
--transition-fast: 0.2s ease;
|
|
--transition-medium: 0.4s ease;
|
|
--transition-slow: 0.6s ease;
|
|
|
|
--max-line: 60ch;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
html {
|
|
scroll-behavior: auto;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-body);
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.7;
|
|
color: var(--color-text);
|
|
background-color: var(--color-bg);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1100px;
|
|
margin-inline: auto;
|
|
padding-inline: var(--space-md);
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
img,
|
|
svg {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
button {
|
|
font: inherit;
|
|
color: inherit;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Skip to Content (Accessibility) */
|
|
.skip-link {
|
|
position: absolute;
|
|
top: -100px;
|
|
inset-inline-start: var(--space-md);
|
|
padding: var(--space-sm) var(--space-md);
|
|
background: var(--color-accent);
|
|
color: var(--color-white);
|
|
border-radius: var(--radius-sm);
|
|
z-index: 200;
|
|
transition: top var(--transition-fast);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.skip-link:focus {
|
|
top: var(--space-sm);
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
inset-inline: 0;
|
|
z-index: 100;
|
|
background: rgba(250, 247, 242, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
border-block-end: 1px solid rgba(201, 168, 124, 0.2);
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
max-width: 1100px;
|
|
margin-inline: auto;
|
|
padding: var(--space-sm) var(--space-md);
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-xs);
|
|
font-family: var(--font-body);
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
transition: color var(--transition-fast);
|
|
}
|
|
|
|
.logo:hover {
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
color: var(--color-warm);
|
|
}
|
|
|
|
.nav-links {
|
|
display: none;
|
|
gap: var(--space-lg);
|
|
}
|
|
|
|
.nav-links a {
|
|
font-size: 0.95rem;
|
|
font-weight: 400;
|
|
color: var(--color-text-light);
|
|
padding: var(--space-xs);
|
|
border-radius: var(--radius-sm);
|
|
transition: color var(--transition-fast), background var(--transition-fast);
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
.nav-links a:focus-visible {
|
|
color: var(--color-accent);
|
|
background: rgba(201, 168, 124, 0.15);
|
|
outline: 2px solid var(--color-accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.nav-pricing-link {
|
|
color: var(--color-accent) !important;
|
|
font-weight: 500 !important;
|
|
}
|
|
|
|
.nav-cta {
|
|
display: none;
|
|
padding: var(--space-xs) var(--space-md);
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: var(--color-white);
|
|
background: var(--color-accent);
|
|
border-radius: var(--radius-full);
|
|
transition: background var(--transition-fast), transform var(--transition-fast);
|
|
}
|
|
|
|
.nav-cta:hover {
|
|
background: var(--color-text);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.nav-cta:focus-visible {
|
|
background: var(--color-text);
|
|
outline: 2px solid var(--color-warm);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.menu-toggle {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
width: 32px;
|
|
height: 32px;
|
|
padding: 4px;
|
|
}
|
|
|
|
.menu-toggle span {
|
|
display: block;
|
|
width: 100%;
|
|
height: 2px;
|
|
background: var(--color-text);
|
|
border-radius: 2px;
|
|
transition: transform var(--transition-fast), opacity var(--transition-fast);
|
|
}
|
|
|
|
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
|
|
transform: translateY(7px) rotate(45deg);
|
|
}
|
|
|
|
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
|
|
opacity: 0;
|
|
}
|
|
|
|
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
|
|
transform: translateY(-7px) rotate(-45deg);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.nav-links {
|
|
display: flex;
|
|
}
|
|
|
|
.nav-cta {
|
|
display: block;
|
|
}
|
|
|
|
.menu-toggle {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* Mobile Menu Overlay */
|
|
.menu-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 90;
|
|
background: rgba(61, 50, 41, 0.4);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: opacity var(--transition-fast), visibility var(--transition-fast);
|
|
}
|
|
|
|
.menu-overlay.is-visible {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
/* Mobile Menu */
|
|
.nav-links.is-open {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 100%;
|
|
inset-inline: 0;
|
|
z-index: 95;
|
|
padding: var(--space-md);
|
|
background: var(--color-cream);
|
|
border-block-end: 1px solid rgba(201, 168, 124, 0.3);
|
|
gap: var(--space-sm);
|
|
box-shadow: 0 10px 30px rgba(61, 50, 41, 0.1);
|
|
}
|
|
|
|
.nav-links.is-open a {
|
|
padding: var(--space-xs) 0;
|
|
}
|
|
|
|
/* Hero */
|
|
.hero {
|
|
position: relative;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
align-items: center;
|
|
padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-bg {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: -1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-shape {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.hero-shape-1 {
|
|
width: min(500px, 80vw);
|
|
height: min(500px, 80vw);
|
|
top: -150px;
|
|
inset-inline-end: -50px;
|
|
background: linear-gradient(135deg, var(--color-warm) 0%, transparent 70%);
|
|
opacity: 0.15;
|
|
}
|
|
|
|
.hero-shape-2 {
|
|
width: 300px;
|
|
height: 300px;
|
|
bottom: 10%;
|
|
inset-inline-start: -100px;
|
|
background: var(--color-sage);
|
|
opacity: 0.1;
|
|
}
|
|
|
|
.hero-shape-3 {
|
|
width: 150px;
|
|
height: 150px;
|
|
top: 40%;
|
|
inset-inline-end: 20%;
|
|
background: var(--color-accent);
|
|
opacity: 0.08;
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 560px;
|
|
}
|
|
|
|
.hero-tag {
|
|
display: inline-block;
|
|
margin-block-end: var(--space-sm);
|
|
padding: var(--space-xs) var(--space-md);
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
background: rgba(201, 168, 124, 0.2);
|
|
border-radius: var(--radius-full);
|
|
}
|
|
|
|
.hero-title {
|
|
font-family: var(--font-body);
|
|
font-size: clamp(2.5rem, 8vw, 3.75rem);
|
|
font-weight: 600;
|
|
line-height: 1.15;
|
|
margin-block-end: var(--space-md);
|
|
}
|
|
|
|
.hero-title-line {
|
|
display: block;
|
|
}
|
|
|
|
.hero-title-line.accent {
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
.hero-desc {
|
|
font-size: 1.125rem;
|
|
color: var(--color-text-light);
|
|
margin-block-end: var(--space-lg);
|
|
max-width: var(--max-line);
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
padding: var(--space-md) var(--space-lg);
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
color: var(--color-white);
|
|
background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-warm) 100%);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: 0 4px 20px rgba(139, 105, 20, 0.3);
|
|
transition: transform var(--transition-fast), box-shadow var(--transition-fast);
|
|
}
|
|
|
|
.cta-button:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 30px rgba(139, 105, 20, 0.4);
|
|
}
|
|
|
|
.cta-button:focus-visible {
|
|
outline: 3px solid var(--color-accent);
|
|
outline-offset: 3px;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 30px rgba(139, 105, 20, 0.4);
|
|
}
|
|
|
|
.cta-button svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.cta-phone {
|
|
font-weight: 600;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.hero-visual {
|
|
display: none;
|
|
position: relative;
|
|
}
|
|
|
|
.hero-image-container {
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 60px rgba(61, 50, 41, 0.2);
|
|
}
|
|
|
|
.hero-image {
|
|
width: 100%;
|
|
height: auto;
|
|
aspect-ratio: 6 / 7;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.hero-image-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(180deg, transparent 60%, rgba(61, 50, 41, 0.2) 100%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.hero-decorations {
|
|
position: absolute;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.deco-dot {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
background: var(--color-warm);
|
|
}
|
|
|
|
.deco-dot-1 {
|
|
width: 16px;
|
|
height: 16px;
|
|
top: 10%;
|
|
inset-inline-start: -10%;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.deco-dot-2 {
|
|
width: 24px;
|
|
height: 24px;
|
|
bottom: 20%;
|
|
inset-inline-end: -5%;
|
|
background: var(--color-sage);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.deco-dot-3 {
|
|
width: 12px;
|
|
height: 12px;
|
|
top: 60%;
|
|
inset-inline-start: -15%;
|
|
background: var(--color-accent);
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.deco-line {
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 2px;
|
|
background: var(--color-warm);
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.deco-line-1 {
|
|
top: 5%;
|
|
inset-inline-end: 5%;
|
|
transform: rotate(-30deg);
|
|
}
|
|
|
|
.deco-line-2 {
|
|
bottom: 10%;
|
|
inset-inline-start: -5%;
|
|
transform: rotate(20deg);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.hero {
|
|
grid-template-columns: 1.1fr 0.9fr;
|
|
gap: var(--space-xl);
|
|
padding-inline: var(--space-lg);
|
|
}
|
|
|
|
.hero-visual {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.hero {
|
|
padding-inline: var(--space-xl);
|
|
}
|
|
|
|
.hero-image-container {
|
|
max-width: 450px;
|
|
}
|
|
}
|
|
|
|
/* Section Common */
|
|
.section-header {
|
|
text-align: center;
|
|
margin-block-end: var(--space-xl);
|
|
}
|
|
|
|
.section-tag {
|
|
display: inline-block;
|
|
margin-block-end: var(--space-xs);
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
background: rgba(201, 168, 124, 0.25);
|
|
padding: 0.25em 0.75em;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.section-title {
|
|
font-family: var(--font-body);
|
|
font-size: clamp(1.75rem, 5vw, 2.5rem);
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
/* Services */
|
|
.services {
|
|
padding: var(--space-2xl) 0;
|
|
background: var(--color-cream);
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.service-card {
|
|
background: var(--color-white);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: 0 2px 20px rgba(61, 50, 41, 0.05);
|
|
overflow: hidden;
|
|
transition: transform var(--transition-medium), box-shadow var(--transition-medium);
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 40px rgba(61, 50, 41, 0.1);
|
|
}
|
|
|
|
.service-image {
|
|
width: 100%;
|
|
height: 180px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.service-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform var(--transition-medium);
|
|
}
|
|
|
|
.service-card:hover .service-image img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.service-content {
|
|
padding: var(--space-lg);
|
|
}
|
|
|
|
.service-icon {
|
|
width: 56px;
|
|
height: 56px;
|
|
margin-block-end: var(--space-md);
|
|
padding: var(--space-sm);
|
|
color: var(--color-accent);
|
|
background: rgba(201, 168, 124, 0.12);
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.service-icon svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.service-card h3 {
|
|
font-family: var(--font-body);
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin-block-end: var(--space-xs);
|
|
}
|
|
|
|
.service-card p {
|
|
font-size: 0.95rem;
|
|
color: var(--color-text-light);
|
|
line-height: 1.6;
|
|
max-width: var(--max-line);
|
|
}
|
|
|
|
@media (min-width: 600px) {
|
|
.services-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--space-lg);
|
|
}
|
|
}
|
|
|
|
/* Gallery */
|
|
.gallery {
|
|
padding: var(--space-2xl) 0;
|
|
}
|
|
|
|
.gallery-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.gallery-item {
|
|
position: relative;
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
aspect-ratio: 4 / 3;
|
|
}
|
|
|
|
.gallery-item-large {
|
|
aspect-ratio: 6 / 5;
|
|
}
|
|
|
|
.gallery-item img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform var(--transition-medium);
|
|
}
|
|
|
|
.gallery-item:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.gallery-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
padding: var(--space-md);
|
|
background: linear-gradient(180deg, transparent 50%, rgba(61, 50, 41, 0.7) 100%);
|
|
opacity: 0;
|
|
transition: opacity var(--transition-fast);
|
|
}
|
|
|
|
.gallery-item:hover .gallery-overlay {
|
|
opacity: 1;
|
|
}
|
|
|
|
.gallery-overlay span {
|
|
color: var(--color-white);
|
|
font-weight: 500;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
@media (min-width: 600px) {
|
|
.gallery-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--space-lg);
|
|
}
|
|
|
|
.gallery-item-large {
|
|
grid-column: span 2;
|
|
aspect-ratio: 16 / 7;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 900px) {
|
|
.gallery-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.gallery-item-large {
|
|
grid-column: span 1;
|
|
grid-row: span 2;
|
|
aspect-ratio: auto;
|
|
}
|
|
}
|
|
|
|
/* About */
|
|
.about {
|
|
padding: var(--space-2xl) 0;
|
|
background: var(--color-cream);
|
|
}
|
|
|
|
.about-layout {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: var(--space-xl);
|
|
align-items: center;
|
|
}
|
|
|
|
.about-visual {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: var(--space-md);
|
|
}
|
|
|
|
.about-frame {
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 320px;
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 60px rgba(61, 50, 41, 0.15);
|
|
}
|
|
|
|
.about-image {
|
|
width: 100%;
|
|
height: auto;
|
|
aspect-ratio: 5 / 6;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.about-badge {
|
|
position: absolute;
|
|
bottom: var(--space-md);
|
|
inset-inline-end: var(--space-md);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: var(--color-accent);
|
|
color: var(--color-white);
|
|
border-radius: 50%;
|
|
box-shadow: 0 8px 30px rgba(139, 105, 20, 0.3);
|
|
}
|
|
|
|
.about-badge-number {
|
|
font-size: 1.75rem;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
}
|
|
|
|
.about-badge-text {
|
|
font-size: 0.75rem;
|
|
font-weight: 400;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.about-content {
|
|
max-width: 520px;
|
|
}
|
|
|
|
.about-text {
|
|
margin-block-end: var(--space-md);
|
|
color: var(--color-text-light);
|
|
font-size: 1.05rem;
|
|
max-width: var(--max-line);
|
|
}
|
|
|
|
.about-values {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
margin-block-start: var(--space-lg);
|
|
}
|
|
|
|
.about-values li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.about-values svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
color: var(--color-accent);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.about-layout {
|
|
grid-template-columns: 0.8fr 1.2fr;
|
|
}
|
|
|
|
.about-visual {
|
|
padding: var(--space-lg);
|
|
}
|
|
}
|
|
|
|
/* Reviews */
|
|
.reviews {
|
|
padding: var(--space-2xl) 0;
|
|
background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-cream) 100%);
|
|
}
|
|
|
|
.reviews-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.review-card {
|
|
padding: var(--space-lg);
|
|
background: var(--color-white);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: 0 4px 24px rgba(61, 50, 41, 0.06);
|
|
border-inline-start: 4px solid transparent;
|
|
transition: border-color var(--transition-fast);
|
|
}
|
|
|
|
.review-card:first-child {
|
|
border-inline-start-color: var(--color-accent);
|
|
}
|
|
|
|
.review-stars {
|
|
display: flex;
|
|
gap: 2px;
|
|
margin-block-end: var(--space-md);
|
|
}
|
|
|
|
.review-stars svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
color: var(--color-warm);
|
|
}
|
|
|
|
.review-text {
|
|
font-size: 1.05rem;
|
|
line-height: 1.7;
|
|
color: var(--color-text);
|
|
margin-block-end: var(--space-md);
|
|
max-width: var(--max-line);
|
|
}
|
|
|
|
.review-author {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.review-avatar {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 600;
|
|
color: var(--color-white);
|
|
background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-warm) 100%);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.review-author cite {
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
color: var(--color-text-light);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.reviews-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: var(--space-lg);
|
|
}
|
|
}
|
|
|
|
/* Pricing */
|
|
.pricing {
|
|
padding: var(--space-2xl) 0;
|
|
background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-bg) 100%);
|
|
}
|
|
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: var(--space-lg);
|
|
max-width: 800px;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
@media (min-width: 600px) {
|
|
.pricing-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
.pricing-card {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: var(--space-lg);
|
|
background: var(--color-white);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: 0 4px 24px rgba(61, 50, 41, 0.08);
|
|
transition: transform var(--transition-fast), box-shadow var(--transition-fast);
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 12px 40px rgba(61, 50, 41, 0.12);
|
|
}
|
|
|
|
.pricing-card-featured {
|
|
border: 2px solid var(--color-accent);
|
|
box-shadow: 0 8px 32px rgba(139, 105, 20, 0.15);
|
|
}
|
|
|
|
.pricing-card-featured:hover {
|
|
box-shadow: 0 16px 48px rgba(139, 105, 20, 0.2);
|
|
}
|
|
|
|
.pricing-badge {
|
|
position: absolute;
|
|
top: -12px;
|
|
inset-inline-start: 50%;
|
|
transform: translateX(50%);
|
|
padding: var(--space-xs) var(--space-md);
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
color: var(--color-white);
|
|
background: var(--color-accent);
|
|
border-radius: var(--radius-full);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.pricing-header {
|
|
text-align: center;
|
|
margin-block-end: var(--space-md);
|
|
}
|
|
|
|
.pricing-header h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
margin-block-end: var(--space-xs);
|
|
}
|
|
|
|
.pricing-desc {
|
|
font-size: 0.95rem;
|
|
color: var(--color-text-light);
|
|
}
|
|
|
|
.pricing-price {
|
|
text-align: center;
|
|
margin-block-end: var(--space-lg);
|
|
padding-block: var(--space-md);
|
|
border-block: 1px solid rgba(201, 168, 124, 0.2);
|
|
}
|
|
|
|
.price-amount {
|
|
font-size: 2.5rem;
|
|
font-weight: 600;
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
.pricing-features {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
margin-block-end: var(--space-lg);
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.pricing-features li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
font-size: 0.95rem;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.pricing-features svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
color: var(--color-sage);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.pricing-cta {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--space-sm);
|
|
padding: var(--space-md);
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
background: var(--color-cream);
|
|
border-radius: var(--radius-md);
|
|
transition: background var(--transition-fast), color var(--transition-fast);
|
|
}
|
|
|
|
.pricing-cta:hover {
|
|
background: rgba(201, 168, 124, 0.3);
|
|
}
|
|
|
|
.pricing-cta:focus-visible {
|
|
outline: 3px solid var(--color-accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.pricing-cta svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
transition: transform var(--transition-fast);
|
|
}
|
|
|
|
.pricing-cta:hover svg {
|
|
transform: translateX(-4px);
|
|
}
|
|
|
|
.pricing-cta-featured {
|
|
color: var(--color-white);
|
|
background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-warm) 100%);
|
|
}
|
|
|
|
.pricing-cta-featured:hover {
|
|
background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-warm) 100%);
|
|
}
|
|
|
|
/* Contact */
|
|
.contact {
|
|
padding: var(--space-2xl) 0;
|
|
}
|
|
|
|
.contact-layout {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: var(--space-xl);
|
|
}
|
|
|
|
.contact-content {
|
|
max-width: 480px;
|
|
}
|
|
|
|
.contact-text {
|
|
color: var(--color-text-light);
|
|
margin-block-end: var(--space-lg);
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.contact-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-md);
|
|
padding: var(--space-md);
|
|
background: var(--color-cream);
|
|
border-radius: var(--radius-md);
|
|
transition: background var(--transition-fast), box-shadow var(--transition-fast);
|
|
}
|
|
|
|
.contact-item-phone:hover {
|
|
background: rgba(201, 168, 124, 0.25);
|
|
box-shadow: 0 4px 20px rgba(139, 105, 20, 0.15);
|
|
}
|
|
|
|
.contact-item-phone:focus-visible {
|
|
outline: 3px solid var(--color-accent);
|
|
outline-offset: 2px;
|
|
background: rgba(201, 168, 124, 0.25);
|
|
}
|
|
|
|
.contact-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--color-accent);
|
|
background: var(--color-white);
|
|
border-radius: var(--radius-md);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.contact-icon svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.contact-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.contact-label {
|
|
font-size: 0.85rem;
|
|
color: var(--color-text-light);
|
|
}
|
|
|
|
.contact-value {
|
|
font-size: 1.1rem;
|
|
font-weight: 500;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.contact-cta {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.cta-card {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
padding: var(--space-xl);
|
|
text-align: center;
|
|
background: linear-gradient(135deg, var(--color-text) 0%, #5a4d40 100%);
|
|
border-radius: var(--radius-lg);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.cta-card h3 {
|
|
font-family: var(--font-body);
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
margin-block-end: var(--space-xs);
|
|
}
|
|
|
|
.cta-card p {
|
|
opacity: 0.85;
|
|
margin-block-end: var(--space-lg);
|
|
}
|
|
|
|
.cta-button-large {
|
|
width: 100%;
|
|
justify-content: center;
|
|
padding: var(--space-md);
|
|
font-size: 1.25rem;
|
|
background: var(--color-white);
|
|
color: var(--color-text);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.cta-button-large:hover {
|
|
background: var(--color-cream);
|
|
transform: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.cta-button-large:focus-visible {
|
|
outline: 3px solid var(--color-warm);
|
|
outline-offset: 3px;
|
|
background: var(--color-cream);
|
|
transform: none;
|
|
}
|
|
|
|
.cta-button-large svg {
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.contact-layout {
|
|
grid-template-columns: 1fr 1fr;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
padding: var(--space-lg) 0;
|
|
background: var(--color-text);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.footer-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-xs);
|
|
font-size: 1.1rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.footer-logo {
|
|
width: 32px;
|
|
height: 32px;
|
|
color: var(--color-warm);
|
|
}
|
|
|
|
.footer-copy {
|
|
font-size: 0.85rem;
|
|
opacity: 0.75;
|
|
}
|
|
|
|
/* Reveal Animation */
|
|
.reveal {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
transition: opacity var(--transition-slow), transform var(--transition-slow);
|
|
}
|
|
|
|
.reveal.is-visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* Focus Styles */
|
|
a:focus-visible,
|
|
button:focus-visible {
|
|
outline: 2px solid var(--color-accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Body scroll lock when popup is open */
|
|
body.popup-open {
|
|
overflow: hidden;
|
|
}
|