/* ---------- COLORS / VARIABLES ---------- */

:root {
--tan: #d9a56a;
--tan-light: #e8b87f;
--burnt: #8a4a1f;
--burnt-dark: #5b2a0f;
--cream: #e9f1e9;
--orange: #f2541b;
--text-dark: #2b1b12;
--text-muted: #4f4138;
--bg-body: #f5f2ee;

--card-radius: 14px;
--shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.22);
--shadow-small: 0 8px 18px rgba(0, 0, 0, 0.16);
--max-width: 1080px;

--font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
}

/* ---------- BASIC RESET ---------- */

*,
*::before,
*::after {
box-sizing: border-box;
}

body {
margin: 0;
font-family: var(--font-main);
background: var(--bg-body);
color: var(--text-dark);
line-height: 1.6;
}

img {
max-width: 100%;
display: block;
}

a {
color: inherit;
}

.container {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 1.2rem;
}

/* ---------- HEADER ---------- */

.site-header {
position: sticky;
top: 0;
z-index: 20;
background: #f5e6d6;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.35rem 0; /* tighter top/bottom spacing */
}

/* LOGO */

.logo {
display: flex;
align-items: center;
}

.logo-img {
height: 60px;  /* adjust size here */
width: auto;
display: block;
}

@media (max-width: 719px) {
.logo-img {
height: 40px;
}
}

/* NAV */

.main-nav {
display: none;
gap: 1rem;
font-size: 0.9rem;
}

.main-nav a {
text-decoration: none;
padding: 0.25rem 0.55rem;
border-radius: 999px;
color: #4c3a2a;
transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
background: rgba(242, 84, 27, 0.08);
color: var(--burnt-dark);
}

/* HAMBURGER */

.nav-toggle {
border: none;
background: none;
padding: 0.25rem;
display: inline-flex;
flex-direction: column;
gap: 0.18rem;
cursor: pointer;
}

.nav-toggle span {
width: 20px;
height: 2px;
background: #4c3a2a;
border-radius: 999px;
transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.nav-open span:nth-child(1) {
transform: translateY(4px) rotate(45deg);
}
.nav-toggle.nav-open span:nth-child(2) {
opacity: 0;
}
.nav-toggle.nav-open span:nth-child(3) {
transform: translateY(-4px) rotate(-45deg);
}

/* MOBILE NAV DROPDOWN */

.main-nav.nav-open {
display: flex;
flex-direction: column;
position: absolute;
inset: 56px 0 auto 0; /* just below header */
background: #f5e6d6;
padding: 0.75rem 1.2rem 1rem;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ---------- HERO ---------- */

.hero {
position: relative;
color: #fff;
padding: 4rem 0 3.25rem;
overflow: hidden;
}

.hero-bg {
position: absolute;
inset: 0;
background-image: linear-gradient(
rgba(0, 0, 0, 0.15),
rgba(0, 0, 0, 0.15)
),
url("Road.jpg");
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
z-index: -1;
}

.hero-inner {
display: flex;
justify-content: center;
}

.hero-card {
background: var(--tan);
max-width: 460px;
padding: 1.75rem 1.6rem 2rem;
border-radius: 18px;
box-shadow: var(--shadow-soft);
color: var(--text-dark);
}

.hero-eyebrow {
text-transform: uppercase;
letter-spacing: 0.16em;
font-size: 0.75rem;
margin-bottom: 0.5rem;
color: #4c3120;
}

.hero-card h1 {
font-size: 1.6rem;
margin: 0 0 0.75rem;
line-height: 1.25;
}

.hero-copy {
font-size: 0.95rem;
color: var(--text-muted);
margin-bottom: 1.2rem;
}

.btn {
display: inline-block;
padding: 0.7rem 1.8rem;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
border: none;
cursor: pointer;
}

.hero-btn {
background: var(--burnt);
color: #fff;
box-shadow: var(--shadow-small);
}

.hero-btn:hover {
background: var(--burnt-dark);
}

.hero-card.hero-center {
text-align: center !important;
}

.hero-card.hero-center .btn {
display: inline-block;
margin: 20px auto 0;
}

/* ---------- GENERAL SECTION STYLES ---------- */

.section {
padding: 3rem 0;
}

.section-alt {
background: #ffffff;
}

.section h2 {
margin-top: 0;
}

/* ---------- ABOUT ---------- */

.about {
background: #f5e6d6;
color: #4c3120;
}

.about h2 {
letter-spacing: 0.14em;
text-transform: uppercase;
font-size: 1.1rem;
margin-top: 0;
margin-bottom: 1.3rem;
}

.about p + p {
margin-top: 1rem;
}

/* ---------- BENEFITS ---------- */

.benefits {
position: relative;
color: #fff;
padding: 3rem 0;
}

.benefits-bg {
position: absolute;
inset: 0;
background-image: linear-gradient(
rgba(0, 0, 0, 0.62),
rgba(0, 0, 0, 0.72)
),
url("asphalt-bg.jpg");
background-size: cover;
background-position: center;
z-index: -1;
}

.benefits-inner {
display: grid;
gap: 1.4rem;
}

.benefit-card {
background: rgba(255, 255, 255, 0.08);
border-radius: 10px;
padding: 1.2rem 1rem;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-icon {
font-size: 1.4rem;
margin-bottom: 0.3rem;
}

/* ---------- SERVICES INTRO ---------- */

.services-intro {
background: var(--burnt);
color: #fef5eb;
padding-bottom: 1.5rem;
}

.services-header {
display: flex;
align-items: center;
justify-content: space-between;
}

.services-header h2 {
text-transform: uppercase;
letter-spacing: 0.12em;
font-size: 1.05rem;
margin: 0;
}

.services-arrow {
font-size: 1.7rem;
}

/* ---------- SERVICES LIST ---------- */

.services-list {
background: var(--cream);
padding-top: 1.5rem;
}

.service-block {
background: #f5fcf7;
border-radius: 12px;
padding: 1.4rem 1.3rem 1.3rem;
margin-bottom: 1.4rem;
border: 1px solid rgba(0, 0, 0, 0.04);
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
text-align: center;
}

.service-icon {
font-size: 1.7rem;
margin-bottom: 0.5rem;
}

.service-block h3 {
margin: 0 0 0.6rem;
font-size: 1.05rem;
}

/* ---------- PRICING ---------- */

.pricing {
background: #ffffff;
}

.pricing h2 {
text-align: center;
margin-top: 0;
margin-bottom: 2rem;
font-size: 1.3rem;
letter-spacing: 0.06em;
text-transform: uppercase;
}

.pricing-grid {
display: grid;
gap: 1.5rem;
}

.pricing-card {
background: #ffffff;
border-radius: 10px;
border: 1px solid rgba(0, 0, 0, 0.08);
padding: 1.5rem 1.4rem 1.4rem;
text-align: center;
box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.pricing-card h3 {
margin-top: 0;
margin-bottom: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
font-size: 0.9rem;
}

.pricing-price {
font-size: 2.4rem;
margin: 0;
}

.pricing-sub {
margin-top: 0.2rem;
font-size: 0.9rem;
color: #666;
}

.pricing-desc {
font-size: 0.9rem;
margin: 0.9rem 0 1.3rem;
color: #555;
}

.pricing-btn {
background: var(--orange);
color: #fff;
}

.pricing-btn:hover {
background: #d64716;
}

/* ---------- CONTACT ---------- */

.contact {
padding: 0;
}

.contact-top {
background: #151515;
color: #fff;
padding: 2.4rem 0 1.8rem;
}

.contact-top-inner {
display: flex;
flex-direction: column;
gap: 0.6rem;
}

.contact-top h2 {
margin: 0 0 0.5rem;
}

.contact-text {
max-width: 34rem;
color: #e0e0e0;
}

.contact-details a {
text-decoration: none;
color: #fff;
}

.contact-details a:hover {
text-decoration: underline;
}

.contact-form-wrap {
background: var(--burnt);
padding: 2.4rem 0 3rem;
}

.contact-form {
background: transparent;
color: #fff;
}

.contact-form label {
display: block;
font-size: 0.9rem;
margin-bottom: 0.8rem;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 0.55rem 0.55rem;
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.3);
font-family: inherit;
font-size: 0.95rem;
background: rgba(0, 0, 0, 0.12);
color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: 2px solid rgba(255, 255, 255, 0.7);
outline-offset: 1px;
}

.field-row {
display: grid;
gap: 0.8rem;
margin-bottom: 0.2rem;
}

.contact-btn {
margin-top: 0.5rem;
background: var(--orange);
color: #fff;
border: none;
box-shadow: var(--shadow-small);
}

.contact-btn:hover {
background: #d64716;
}

/* ---------- FOOTER ---------- */

.site-footer {
background: #111;
color: #aaa;
padding: 1.2rem 0;
font-size: 0.8rem;
}

.footer-inner {
text-align: center;
}

/* ---------- MOBILE RESPONSIVE ---------- */

@media (max-width: 719px) {
/* Header spacing on mobile */
.header-inner {
padding: 0.25rem 0.1rem;
}

.logo-text {
font-size: 1.1rem;
}

.logo-mark {
font-size: 1.1rem;
}

.main-nav a {
font-size: 1.05rem;
padding: 0.6rem 0;
}

/* Hero */
.hero {
padding: 3rem 0 2.5rem;
}

.hero-card {
padding: 1.5rem 1.3rem 1.8rem;
max-width: 100%;
}

.hero-card h1 {
font-size: 1.4rem;
line-height: 1.35;
}

.hero-copy {
font-size: 0.98rem;
}

.hero-btn {
width: 100%;
text-align: center;
}

/* Global text sizing slightly tweaked */
p {
font-size: 0.98rem;
line-height: 1.55;
}

/* Benefits grid: single column */
.benefits-inner {
grid-template-columns: minmax(0, 1fr);
}

/* Services blocks */
.service-block {
padding: 1.25rem 1.1rem 1.2rem;
}

.service-block h3 {
font-size: 1.05rem;
}

.service-block p {
font-size: 0.96rem;
}

/* Pricing cards */
.pricing-card {
padding: 1.4rem 1.2rem 1.3rem;
}

.pricing-price {
font-size: 2rem;
}

/* Contact form layout */
.field-row {
grid-template-columns: minmax(0, 1fr);
gap: 1rem;
}

.contact-form input,
.contact-form textarea {
width: 100%;
}
}

/* ---------- DESKTOP / WIDER SCREENS ---------- */

@media (min-width: 720px) {
.main-nav {
display: flex;
}

.nav-toggle {
display: none;
}

.hero {
padding: 5rem 0 4rem;
}

.hero-card {
text-align: left;
}

.benefits-inner {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field-row {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}