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

:root {
  --orange: #f47c20;
  --dark: #0e0e0e;
  --text: #2a2a2a;
  --mid: #888;
  --light-bg: #f5f3f0;
  --rule: #e0dbd4;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); overflow-x: hidden; background: #fff; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  background: transparent;
  transition: background 0.4s, padding 0.3s;
}
nav.scrolled, nav.solid {
  background: var(--dark);
  padding: 14px 52px;
}
.nav-logo { height: 42px; }
.nav-logo-text { display:none; color:#fff; font-family:'Oswald',sans-serif; font-size:18px; font-weight:700; letter-spacing:3px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: #fff; border-bottom-color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 10px 22px !important; border: none !important;
  letter-spacing: 2px; line-height: 1;
}
.nav-cta:hover { background: #e06810 !important; border-bottom-color: transparent !important; }
.nav-cta:hover { background: #e06810 !important; }

/* PAGE HERO */
.page-hero {
  position: relative; height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  filter: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 40px;
}
.page-hero-label {
  font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px; display: block;
}
.page-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700; color: #fff; text-transform: uppercase; line-height: 0.95;
  letter-spacing: -1px;
}
.page-hero-title span { color: var(--orange); }

/* FULL HERO (home) */
#hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/about-image.jpg') center/cover no-repeat;
  filter: none;
}
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 0 60px; max-width: 780px; }
.hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px; display: block;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(60px, 9vw, 108px);
  font-weight: 700; color: #fff; line-height: 0.93; text-transform: uppercase;
  letter-spacing: -2px;
}
.hero-title span { color: var(--orange); }
.hero-sub { margin-top: 28px; color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.8; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-num {
  position: absolute; bottom: 32px; right: 52px;
  font-family: 'Oswald', sans-serif; font-size: 160px; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; z-index: 1;
}

/* BUTTONS */
.btn {
  display: inline-block; padding: 14px 34px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 0;
  transition: all 0.2s; cursor: pointer; border: none;
  font-family: 'Open Sans', sans-serif;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #e06810; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* SECTIONS */
section { padding: 100px 60px; }
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 700; text-transform: uppercase; color: var(--dark);
  line-height: 0.95; letter-spacing: -1px;
}
.section-title span { color: var(--orange); }
.section-body { font-size: 15px; line-height: 1.85; color: #666; max-width: 600px; margin-top: 20px; }
.centered { text-align: center; }
.centered .section-title, .centered .section-body { margin-left: auto; margin-right: auto; }

/* ABOUT TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; max-width: 1200px; margin: 0 auto; }
.two-col-img img { width: 100%; height: 520px; object-fit: cover; display: block; }
.body-text p { font-size: 15px; line-height: 1.85; color: #555; margin-top: 20px; }
.body-text p:first-child { margin-top: 0; }
.cta-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.callout-box {
  margin-top: 36px; padding: 28px 28px 28px 24px;
  background: var(--dark); color: #fff;
  border-left: 5px solid var(--orange);
}
.callout-box h3 {
  font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 10px; letter-spacing: 0.5px;
}
.callout-box p { font-size: 14px; line-height: 1.7; opacity: 0.75; margin: 0; }

/* FEATURES GRID */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1100px; margin: 52px auto 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.feature-item {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feature-icon { display: none; }
.feature-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 700; text-transform: uppercase;
  color: var(--dark); margin-bottom: 8px; letter-spacing: 0.3px;
}
.feature-item h4::before {
  content: ''; display: block; width: 28px; height: 3px;
  background: var(--orange); margin-bottom: 12px;
}
.feature-item p { font-size: 13px; line-height: 1.65; color: #888; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 3px; margin-top: 48px; }
.gall-item { overflow: hidden; }
.gall-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.gall-item:hover img { transform: scale(1.05); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 52px auto 0; }
.pricing-card { background: #fff; padding: 36px 28px; border: 1px solid var(--rule); }
.pricing-card.featured { border-top: 4px solid var(--orange); }
.pricing-card h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.pricing-card .price { font-family: 'Oswald', sans-serif; font-size: 46px; font-weight: 700; color: var(--orange); line-height: 1; margin: 16px 0; }
.pricing-card .price span { font-size: 15px; color: #888; font-family: 'Open Sans', sans-serif; font-weight: 400; }
.pricing-card ul { list-style: none; margin-top: 20px; }
.pricing-card ul li { font-size: 14px; color: #555; line-height: 1.7; padding: 7px 0; border-bottom: 1px solid var(--rule); }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before { content: '— '; color: var(--orange); font-weight: 700; }
.pricing-note { font-size: 13px; color: #888; margin-top: 12px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; max-width: 1200px; margin: 52px auto 0; }
.team-card { overflow: hidden; position: relative; background: var(--light-bg); transition: none; }
.team-card:hover { transform: none; }
.team-photo { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; background: #ccc; }
.team-info { padding: 22px 20px; border-top: 3px solid var(--orange); }
.team-name { font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 700; text-transform: uppercase; color: var(--dark); letter-spacing: 0.3px; }
.team-role { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-top: 4px; margin-bottom: 12px; display: block; }
.team-bio { font-size: 13px; line-height: 1.75; color: #666; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; max-width: 1100px; margin: 52px auto 0; border: 1px solid var(--rule); }
.review-card {
  padding: 40px 36px; position: relative;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.review-card:nth-child(2n) { border-right: none; }
.review-card:nth-last-child(-n+2) { border-bottom: none; }
.review-card::before {
  content: '\201C';
  font-family: Georgia, serif; font-size: 80px; line-height: 1;
  color: var(--orange); opacity: 0.25;
  position: absolute; top: 20px; left: 28px;
  pointer-events: none;
}
.stars { color: var(--orange); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; line-height: 1.85; color: #555; }
.reviewer { margin-top: 22px; font-weight: 700; font-size: 12px; color: var(--dark); letter-spacing: 1px; text-transform: uppercase; }
.ta-badge { margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 12px; color: #888; font-size: 13px; }
.ta-badge img { height: 36px; }

/* CONTACT */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1100px; margin: 0 auto; }
.contact-detail { margin-top: 28px; }
.contact-detail h4 { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.contact-detail p { font-size: 14px; color: #666; line-height: 1.7; }
.contact-detail a { color: var(--orange); text-decoration: none; }
.map-embed { margin-top: 32px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--rule); border-radius: 0;
  font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--dark);
  outline: none; transition: border-color 0.2s; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--orange); }
.contact-form textarea { height: 130px; resize: none; }
.form-note { font-size: 12px; color: #aaa; letter-spacing: 0.5px; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.45); padding: 70px 60px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; max-width: 1200px; margin: 0 auto; }
.footer-brand img { height: 38px; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.85; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 1px; flex-wrap: wrap; gap: 12px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: all 0.2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); background: transparent; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,0.28); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* DARK SECTION */
.dark-section { background: var(--dark); }
.dark-section .section-title { color: #fff; }
.dark-section .section-body { color: rgba(255,255,255,0.55); }

/* SUP PAGE */
.sup-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 70px; max-width: 1100px; margin: 0 auto; align-items: start; }
.sup-imgs img { width: 100%; margin-bottom: 3px; display: block; }
.content-section h3 {
  font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700;
  text-transform: uppercase; color: var(--dark); margin-top: 44px; margin-bottom: 10px;
  padding-left: 14px; border-left: 4px solid var(--orange);
}
.content-section h4 { font-size: 13px; font-weight: 700; color: var(--orange); margin-top: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.content-section p { font-size: 15px; line-height: 1.85; color: #555; margin-top: 12px; }

/* RESPONSIVE */
/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: transform 0.3s, opacity 0.3s;
}
nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  nav { padding: 14px 20px; }
  nav.scrolled, nav.solid { padding: 12px 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column; gap: 0;
    padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 13px 24px;
    border-bottom: none !important;
    font-size: 12px;
  }
  .nav-cta { margin: 8px 24px 0; display: block; text-align: center; }
  section { padding: 64px 20px; }
  .page-hero { padding: 0; }
  .page-hero-title { font-size: clamp(42px, 10vw, 72px); }
  .hero-title { font-size: clamp(48px, 11vw, 80px); }
  .two-col, .sup-grid, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-content { padding: 0 24px; }
}
