:root {
--primary: #d63384;
--primary-dark: #b0256b;
--text: #222;
--muted: #666;
--bg-alt: #faf7f9;
--border: #e9e9e9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: Inter, sans-serif;
color: var(--text);
line-height: 1.7;
}

.container {
width: min(1100px, 92%);
margin: 0 auto;
}

header {
position: sticky;
top: 0;
background: white;
border-bottom: 1px solid var(--border);
z-index: 100;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}

.logo,
h1,
h2,
h3 {
font-family: "Playfair Display", serif;
}

.logo {
font-size: 1.75rem;
font-weight: 700;
}

nav {
display: flex;
gap: 2rem;
}

nav a {
color: var(--text);
text-decoration: none;
}

nav a:hover {
color: var(--primary);
}

.hero {
padding: 6rem 0;
}

.hero-grid {
display: grid;
gap: 4rem;
grid-template-columns: 1fr 1fr;
align-items: center;
}

.hero h1 {
font-size: clamp(3rem, 6vw, 5rem);
line-height: 1.1;
}

.hero p {
margin: 2rem 0;
color: var(--muted);
}

.hero-image img {
width: 100%;
border-radius: 16px;
box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.accent-line {
width: 80px;
height: 4px;
background: var(--primary);
margin: 1.5rem 0;
}

.center {
margin-inline: auto;
}

.highlights {
list-style: none;
margin-bottom: 2rem;
}

.highlights li {
margin-bottom: .8rem;
}

.highlights li::before {
content: "✓ ";
color: var(--primary);
font-weight: bold;
}

.btn {
display: inline-block;
background: var(--primary);
color: white;
text-decoration: none;
padding: 14px 28px;
border-radius: 8px;
font-weight: 600;
transition: .2s;
}

.btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}

.section {
padding: 6rem 0;
}

.alt {
background: var(--bg-alt);
}

.section h2 {
text-align: center;
font-size: 3rem;
}

.narrow {
max-width: 800px;
text-align: center;
}

.cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 4rem;
}

.card,
.contact-card {
background: white;
border: 1px solid var(--border);
padding: 2rem;
border-radius: 16px;
transition: .2s;
}

.card:hover,
.contact-card:hover {
transform: translateY(-5px);
}

.credentials {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 4rem;
}

.credentials ul {
margin-top: 1rem;
padding-left: 1.2rem;
}

.contact-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 4rem;
}

.contact-card {
text-align: center;
}

.contact-card a {
color: var(--primary);
text-decoration: none;
}

.center-button {
text-align: center;
margin-top: 3rem;
}

footer {
border-top: 1px solid var(--border);
text-align: center;
padding: 2rem;
color: var(--muted);
}

@media (max-width: 768px) {

```
nav {
    display: none;
}

.hero-grid,
.cards,
.credentials,
.contact-grid {
    grid-template-columns: 1fr;
}

.hero {
    padding: 4rem 0;
}

.section {
    padding: 4rem 0;
}
```

}

