:root {
    --color-primary: #1a3a2a;
    --color-accent:  #c8a96e;
    --color-bg:      #faf9f6;
    --color-text:    #2d2d2d;
    --color-muted:   #6b6b6b;
    --font-display:  'DM Serif Display', serif;
    --font-body:     'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
    text-align: center;
    padding: 3rem 1.5rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-bg);
}

.hero-name {
    font-family: var(--font-display);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    max-width: 280px;
    transition: opacity 0.15s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--color-bg);
    border: 2px solid var(--color-bg);
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    .btn {
        width: auto;
    }
}

/* Photo */
.photo {
    width: 100%;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

/* Services */
.services {
    padding: 2.5rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.services h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.services ul {
    list-style: none;
}

.services li {
    padding: 0.625rem 0;
    border-bottom: 1px solid #e8e5e0;
    font-size: 1.0625rem;
}

.services li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Contact */
.contact {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-bg);
}

.phone {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-bg);
    text-decoration: none;
    padding: 1rem;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    transition: background 0.15s;
}

.phone:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 480px) {
    .phone {
        font-size: 2.5rem;
    }
}

.contact-details p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-details a {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.powered-by {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
}

.powered-by a {
    color: var(--color-muted);
    text-decoration: none;
}

.powered-by a:hover {
    text-decoration: underline;
}
