:root {
  --bg: #f5f5f7;
  --white: #ffffff;

  --text: #111111;
  --muted: #6e6e73;

  /* DHM brand colors */
  --accent: #e0b35e;
  --accent-strong: #edbd63;
  --accent-soft: #fdefb6;
  --accent-dark: #e6b86a;
  --accent-light: #f3e4ad;

  --line: rgba(17, 17, 17, 0.08);

  --radius-lg: 24px;
  --radius-md: 18px;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.06);

  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fdfbf6 0%, #f5f5f7 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 246, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--accent-light);
}

.header-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(10deg) scale(1.03);
}

.logo-text {
  color: #111111;
  font-weight: 500;
  line-height: 1;
}

.logo-text strong {
  color: var(--accent);
  font-weight: 700;
}

/* NAV */

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111111;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(224, 179, 94, 0.18);
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-light));
  transform: translateY(-1px);
}

/* HERO */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  background-image: url("../img/images_web/51TREEFEST.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.62) 0%,
      rgba(10, 10, 10, 0.42) 35%,
      rgba(10, 10, 10, 0.68) 100%
    );
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: auto;
  width: 620px;
  height: 620px;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(224, 179, 94, 0.28) 0%,
    rgba(237, 189, 99, 0.16) 28%,
    rgba(243, 228, 173, 0.08) 46%,
    rgba(243, 228, 173, 0) 72%
  );
  filter: blur(22px);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--accent-soft);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero-text {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  padding: 14px 24px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #111111;
  box-shadow: 0 12px 28px rgba(224, 179, 94, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-light));
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1px solid rgba(224, 179, 94, 0.28);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: #faf7ef;
}

/* SECTIONS */

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(253, 239, 182, 0.18), rgba(255, 255, 255, 0.55));
}

.section-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-text {
  margin: 0 0 18px;
  font-size: 1.06rem;
  color: var(--muted);
}

/* CARDS */

.cards-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(224, 179, 94, 0.16);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.08);
  border-color: rgba(224, 179, 94, 0.32);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}
/* ABOUT SECTION */

.about-section{
position:relative;
padding:120px 0;
overflow:hidden;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:18px;
filter:grayscale(100%);
box-shadow:0 30px 80px rgba(0,0,0,0.35);
}

.about-content{
max-width:540px;
}

/* GOLD GLOW */

.about-glow{
position:absolute;
left:-120px;
top:50%;
transform:translateY(-50%);
width:500px;
height:500px;

background:radial-gradient(
circle,
rgba(224,179,94,0.25) 0%,
rgba(237,189,99,0.12) 30%,
rgba(243,228,173,0.05) 50%,
transparent 70%
);

filter:blur(40px);
pointer-events:none;
}
/* ABOUT SECTION BACKGROUND */

.about-section{
position:relative;
padding:160px 0;
background-image:url("../img/images_web/66TREEFEST.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;

color:white;
overflow:hidden;
}

/* DARK OVERLAY */

.about-overlay{
position:absolute;
inset:0;

background:linear-gradient(
180deg,
rgba(5,5,5,0.82),
rgba(5,5,5,0.65),
rgba(5,5,5,0.85)
);

z-index:1;
}

/* GOLD LIGHT EFFECT */

.about-glow{
position:absolute;
left: -200px;
top:50%;
transform:translateY(-50%);

width:600px;
height:600px;

background:radial-gradient(
circle,
rgba(224,179,94,0.25) 0%,
rgba(237,189,99,0.15) 30%,
rgba(243,228,173,0.08) 50%,
transparent 70%
);

filter:blur(40px);

z-index:1;
pointer-events:none;
}

/* TEXT */

.about-content{
position:relative;
z-index:2;
max-width:720px;
text-align:center;
margin:auto;
}

.about-content .section-text{
color:rgba(255,255,255,0.85);
}
/* SPLIT SECTION */

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: start;
}

/* CTA */

.cta-section {
  padding-bottom: 100px;
}

.cta-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(253, 239, 182, 0.28));
  border: 1px solid rgba(224, 179, 94, 0.18);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
}
.cta-box .section-label {
  color: #e0b35e;
  letter-spacing: 0.12em;
}
.cta-box .section-title {
  margin: 0 auto 28px;
}
#about{
  scroll-margin-top: 120px;
}

#services{
  scroll-margin-top: 120px;
}

/* TABLET */

@media (max-width: 980px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 18px;
  }

  .logo {
    font-size: 22px;
  }

  .logo img {
    height: 58px;
    transform: scale(4);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0 16px;
  }

  .logo {
    font-size: 22px;
    gap: 10px;
  }

  .logo img {
    height: 54px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.92rem;
  }

  .nav-cta {
    padding: 10px 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 32px 22px;
  }

  @media (max-width:900px){

    .about-grid{
    grid-template-columns:1fr;
    gap:40px;
    }

    .about-content{
    max-width:100%;
    text-align:center;
    }

    .about-image img{
    max-width:500px;
    margin:auto;
    }
}
@media (max-width:768px){

.logo img{
height: 12px;
}

.header-inner{
min-height:64px;
}

}
.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
margin-top:40px;
}

.contact-info a{
color:var(--accent);
}

.contact-form form{
display:flex;
flex-direction:column;
gap:16px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border:1px solid rgba(0,0,0,0.1);
border-radius:8px;
font-size:16px;
}

.contact-form textarea{
min-height:140px;
resize:vertical;
}

@media (max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

}


}