:root {
    --ink: #0b2e33;
    --ink-2: #123f45;
    --ink-soft: #4d6a6d;
    --surface: #ffffff;
    --surface-alt: #f3f8f8;
    --border: #e0eaea;
    --text: #172527;
    --text-muted: #5b6b6d;
    --accent: #ff6b3d;
    --accent-dark: #e8551f;
    --star: #f5b400;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 999px;
    --shadow-sm: 0 1px 3px rgba(11, 46, 51, 0.08);
    --shadow-md: 0 10px 30px rgba(11, 46, 51, 0.10);
    --shadow-lg: 0 20px 48px rgba(11, 46, 51, 0.16);
    --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Inter', Arial, sans-serif; letter-spacing: -0.01em; }

a { color: inherit; }

/* Header */
header {
    background: var(--ink);
    color: white;
    padding: 26px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 200px at 50% -40%, rgba(255,107,61,0.25), transparent 70%);
    pointer-events: none;
}
header .site-name {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8fd4c9;
    margin-bottom: 8px;
    position: relative;
}
header h1 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
}

.phone-cta {
    background: var(--accent);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: inline-block;
    position: relative;
    box-shadow: 0 10px 24px rgba(255, 107, 61, 0.35);
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}
.phone-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 107, 61, 0.42);
}

/* Nav */
nav {
    background: var(--ink-2);
    padding: 12px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: var(--shadow-sm);
}
nav a {
    color: #cfe6e3;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.86rem;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 180ms var(--ease), border-color 180ms var(--ease);
}
nav a:hover { color: white; border-color: var(--accent); }

.breadcrumb { background: var(--surface-alt); padding: 12px 20px; font-size: 0.83rem; color: var(--text-muted); }
.breadcrumb a { color: var(--ink); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* Sections */
.section { padding: 56px 20px; }
.section-inner { max-width: 860px; margin: 0 auto; }
.section-alt { background: var(--surface-alt); }

h2 {
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}
h3 { color: var(--ink); font-size: 1.08rem; font-weight: 700; margin: 22px 0 8px; }
p { margin-bottom: 14px; color: var(--text); }
ul { margin: 8px 0 16px 4px; list-style: none; }
li {
    margin-bottom: 9px;
    padding-left: 26px;
    position: relative;
}
li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* Image + text side by side */
.img-row { display: flex; gap: 36px; align-items: center; }
.img-row img { width: 280px; height: 280px; object-fit: cover; border-radius: var(--radius-lg); flex-shrink: 0; box-shadow: var(--shadow-md); }
.img-row .text { flex: 1; }

/* CTA strip */
.cta-strip { background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%); text-align: center; padding: 34px 20px; }
.cta-strip a { color: white; font-size: 1.2rem; font-weight: 700; text-decoration: none; }
.cta-strip a.phone-cta { font-size: 1.2rem; }

/* Footer */
footer { background: var(--ink); color: #7fa3a0; text-align: center; padding: 28px 20px; font-size: 0.84rem; }
footer p { color: inherit; }
footer a { color: #b7d8d4; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }

/* Photo gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-md); display: block; box-shadow: var(--shadow-sm); transition: transform 250ms var(--ease), box-shadow 250ms var(--ease); }
.gallery-grid img:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 20px; }
.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--star); font-size: 1.05rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-style: normal; margin-bottom: 14px; color: var(--text); font-size: 0.97rem; }
.review-name { font-weight: 700; color: var(--ink); font-size: 0.88rem; }

/* Mobile */
@media (max-width: 700px) {
    header h1 { font-size: 1.45rem; }
    .phone-cta { font-size: 1rem; padding: 11px 20px; }
    nav a { margin: 0 8px; font-size: 0.78rem; }
    h2 { font-size: 1.25rem; }
    .img-row { flex-direction: column; }
    .img-row img { width: 100%; height: 240px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
