:root {
    --green: #1f3a2b;
    --red: #e33a3a;
    --cream: #f4f1ea;
    --dark: #0f2319;
}

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

/* BASE TYPE */
body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
}

/* HERO (expressive, bold) */
.hero .container {
    max-width: 600px;
    margin-left: 8%;
}

.hero h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 1px;
}

/* SECTION HEADERS (editorial, sharp) */
.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.6;
}

h2 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 30px;
}

/* SERVICE TITLES */
h3 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* BODY TEXT */
p {
    max-width: 65ch;
    margin-bottom: 16px;
}

/* TYPOGRAPHY */
h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
    line-height: 1.1;
}

h2 {
    font-family: 'Libre Baskerville', serif;
    text-align: left;
    margin-bottom: 40px;
}

h3 {
    font-family: 'Libre Baskerville', serif;
}

p {
    margin-bottom: 15px;
}

/* LAYOUT */
section {
    padding: 80px 0;
  border-top: 1px solid #dcdcdc;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.reading-width {
    max-width: 700px;
}

/* HEADER */
header {
    background: var(--cream);
    border-bottom: 1px solid #ddd;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    max-height: 60px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--dark);
    opacity: 0.7;
}

nav a:hover {
    opacity: 1;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('Aerial-Pruning-DAC.jpg') 70% center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15,35,25,0.85),
        rgba(15,35,25,0.2)
    );
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.hero .container {
    max-width: 600px;
    margin-left: 5%;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--red);
    color: white;
    text-decoration: none;
    margin-top: 15px;
}

/* SERVICES */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.service-item h3 {
    font-weight: 600;
}

.service-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
}

/* BEFORE AFTER */
.ba-wrapper {
    position: relative;
}

.ba-img {
    width: 100%;
}

.ba-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
}

/* CONTACT */
.contact {
    text-align: center;
}

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

.contact a:hover {
    color: var(--red);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px 0;
    background: var(--green);
    color: white;
}

/* MOBILE */
@media (max-width: 768px) {

    .hero {
        height: 75vh;
    }

    .hero .container {
        margin-left: 0;
        padding: 20px;
        text-align: center;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: 160px;
    }
}