/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #C95D1A;
  --orange-dark: #A84A10;
  --orange-light: #E07030;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --white: #ffffff;
  --dark: #1A1208;
  --mid: #4a3520;
  --font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Remove WordPress admin bar offset when logged in */
.admin-bar nav#mainNav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav#mainNav { top: 46px; }
}

/* ── NAV ── */
nav#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 72px;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,93,26,0.12);
  transition: box-shadow 0.3s;
}
nav#mainNav.scrolled { box-shadow: 0 4px 32px rgba(201,93,26,0.10); }

.nav-logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--orange);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--cream) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 72px 6vw 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 55vw;
  height: 110vh;
  background: var(--orange);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 4vw;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s both;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s both;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s both;
}

.btn-primary {
  background: var(--orange);
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--orange); color: var(--cream); transform: translateY(-2px); }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 400px;
}
.hero-card {
  position: absolute;
  border-radius: 4px;
  animation: fadeUp 0.7s 0.4s both;
}
.hero-card-1 {
  width: 280px;
  height: 340px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  top: 30px; left: 30px;
  transform: rotate(-4deg);
}
.hero-card-2 {
  width: 280px;
  height: 340px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  top: 15px; left: 15px;
  transform: rotate(-1deg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
  animation-delay: 0.5s;
}
.hero-card-2 .card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}
.hero-card-2 .card-stat {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp 0.7s 0.4s both;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mid);
  margin-top: 0.2rem;
}

/* ── SECTION BASE ── */
section { padding: 100px 6vw; }

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--mid);
  max-width: 520px;
}

/* ── ABOUT ── */
#about {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}
#about .section-title { color: var(--cream); }
#about .section-sub { color: rgba(245,240,232,0.65); }

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  transition: background 0.2s;
}
.about-box:hover { background: rgba(201,93,26,0.15); }
.about-box:first-child { grid-column: span 2; background: var(--orange); border-color: var(--orange); }
.about-box-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.about-box h4 { font-size: 0.95rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.about-box p { font-size: 0.8rem; font-weight: 400; color: rgba(245,240,232,0.7); line-height: 1.6; }
.about-box:first-child h4 { font-size: 1.3rem; }
.about-box:first-child p { color: rgba(245,240,232,0.85); font-size: 0.9rem; }

/* ── SERVICES ── */
#services { background: var(--cream); }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,93,26,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { background: var(--cream-dark); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; color: var(--orange); margin-bottom: 1.2rem; }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.8rem; }
.service-desc { font-size: 0.85rem; font-weight: 400; line-height: 1.7; color: var(--mid); }

/* ── WHY US ── */
#why {
  background: var(--orange);
  text-align: center;
}
#why .section-tag { color: rgba(245,240,232,0.7); }
#why .section-title { color: var(--cream); margin-bottom: 0.5rem; }
#why .section-sub { color: rgba(245,240,232,0.8); margin: 0 auto 4rem; text-align: center; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.why-item { background: transparent; padding: 2.5rem 1.8rem; transition: background 0.2s; }
.why-item:hover { background: rgba(255,255,255,0.08); }
.why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.6rem; }
.why-item p { font-size: 0.82rem; color: rgba(245,240,232,0.75); line-height: 1.65; }

/* ── PROCESS ── */
#process { background: var(--cream-dark); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--orange-light));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--cream-dark);
  transition: transform 0.2s;
}
.process-step:hover .step-dot { transform: scale(1.12); }
.step-title { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.78rem; color: var(--mid); line-height: 1.6; }

/* ── CONTACT ── */
#contact {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}
#contact .section-tag { color: rgba(201,93,26,0.9); }
#contact .section-title { color: var(--cream); }
#contact .section-sub { color: rgba(245,240,232,0.6); margin-bottom: 2.5rem; }

.contact-details { margin-top: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(201,93,26,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.2rem; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.9rem; color: rgba(245,240,232,0.75); text-decoration: none; line-height: 1.5; }
.contact-detail-text a:hover { color: var(--orange); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.55); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { height: 130px; resize: vertical; }
.form-group select option { background: var(--dark); color: var(--cream); }

/* ── FOOTER ── */
footer {
  background: #0f0b04;
  padding: 2.5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(201,93,26,0.15);
}
.footer-logo { font-size: 1.4rem; font-weight: 900; color: var(--orange); letter-spacing: -0.02em; }
.footer-copy { font-size: 0.78rem; color: rgba(245,240,232,0.35); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.footer-links a { font-size: 0.78rem; font-weight: 500; color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding-top: 100px; min-height: auto; padding-bottom: 60px; }
  .hero-bg-shape { display: none; }
  .hero-visual { display: none; }
  #about { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-step { display: flex; gap: 1.5rem; text-align: left; margin-bottom: 1.5rem; }
  .step-dot { margin: 0; flex-shrink: 0; }
  #contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr; }
  .about-box:first-child { grid-column: span 1; }
  section { padding: 70px 5vw; }
}

/* Mobile nav open */
nav#mainNav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  padding: 1.5rem 6vw 2rem;
  border-bottom: 1px solid rgba(201,93,26,0.12);
  gap: 1.2rem;
}

/* WP Contact Form 7 styling overrides */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 2px !important;
  padding: 0.85rem 1rem !important;
  color: var(--cream) !important;
  font-family: var(--font) !important;
  font-size: 0.9rem !important;
}
.wpcf7-form input[type="submit"] {
  background: var(--orange) !important;
  color: var(--cream) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  cursor: pointer !important;
  border: none !important;
  width: 100% !important;
  padding: 1rem !important;
}
