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

:root {
  --navy:    #0f172a;
  --navy2:   #1e293b;
  --accent:  #c8943a;
  --accent2: #e8b460;
  --white:   #ffffff;
  --gray:    #64748b;
  --light:   #f8fafc;
  --border:  #e2e8f0;
  --text:    #1e293b;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PAGE TRANSITION ===== */
#pageTransition {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 50%, var(--navy) 100%);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
#pageTransition.active { opacity: 1; pointer-events: all; }

/* ===== LOGO IMG ===== */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all .3s;
}

.header.scrolled {
  background: rgba(15,23,42,.99);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { text-decoration: none; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.logo-pf { color: var(--white); }
.logo-finish { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }

.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--accent2) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .95rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 500;
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--accent); font-weight: 600; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,148,58,.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(200,148,58,.05) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  background: rgba(200,148,58,.15);
  color: var(--accent2);
  border: 1px solid rgba(200,148,58,.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-content h1 em { color: var(--accent); font-style: normal; }

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .2s;
}
.btn-secondary svg { width: 18px; height: 18px; }
.btn-secondary:hover { background: rgba(255,255,255,.13); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat span { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.service-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(200,148,58,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--accent); }
.service-card.featured .service-icon { background: rgba(200,148,58,.15); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card.featured h3 { color: var(--white); }

.service-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card.featured p { color: rgba(255,255,255,.6); }

.service-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: .85rem;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.service-card.featured .service-features li { color: rgba(255,255,255,.55); }

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s;
  gap: 4px;
}
.service-link:hover { gap: 8px; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }

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

.about-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 380px; }

.about-card-stack { position: relative; width: 280px; height: 320px; }

.about-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  min-width: 200px;
}
.about-card svg { width: 28px; height: 28px; stroke: var(--accent); flex-shrink: 0; }

.ac1 { top: 0; left: 0; transform: rotate(-3deg); }
.ac2 { top: 50%; left: 50%; transform: translate(-30%, -50%) rotate(2deg); }
.ac3 { bottom: 0; right: 0; transform: rotate(-1deg); }

.about-text .section-tag { display: block; margin-bottom: 12px; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.about-text > p { color: var(--gray); margin-bottom: 28px; line-height: 1.7; }

.about-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; font-size: .92rem; line-height: 1.5; color: var(--gray); }
.about-list li strong { color: var(--navy); }
.about-list-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(200,148,58,.12);
  color: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; background: var(--navy); }
.reviews .section-tag { color: var(--accent2); }
.reviews .section-header h2 { color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* MAP */
.map-section { line-height: 0; }

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 40px;
}

.stars { color: var(--accent); font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 20px; }

.review-card blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  font-style: italic;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}

.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: .85rem;
}
.reviewer strong { display: block; color: var(--white); font-size: .95rem; }
.reviewer span { color: rgba(255,255,255,.45); font-size: .8rem; }

.review-highlight {
  background: rgba(200,148,58,.08);
  border: 1px solid rgba(200,148,58,.2);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.rh-item { text-align: center; }
.rh-number { display: block; font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.rh-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 6px; }
.rh-label { color: rgba(255,255,255,.5); font-size: .82rem; }
.rh-divider { width: 40px; height: 1px; background: rgba(255,255,255,.1); }

/* ===== SERVICE AREA ===== */
.service-area { padding: 80px 0; background: var(--light); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-pill {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color .2s, color .2s;
}
.area-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text .section-tag { display: block; margin-bottom: 12px; }
.contact-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
.contact-text > p { color: var(--gray); line-height: 1.7; margin-bottom: 36px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.contact-item:hover { opacity: .8; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(200,148,58,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.contact-item strong { display: block; font-size: .95rem; color: var(--navy); }
.contact-item span { font-size: .82rem; color: var(--gray); }

.contact-form-wrap {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; }

.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 64px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-pf { color: var(--white); font-size: 1.3rem; font-weight: 800; }
.footer-brand .logo-finish { color: var(--accent); font-size: 1.3rem; font-weight: 800; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .88rem; margin-top: 14px; line-height: 1.65; max-width: 280px; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: .82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.footer-links a, .footer-contact a, .footer-contact span { color: rgba(255,255,255,.45); font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom span { font-size: .82rem; color: rgba(255,255,255,.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner, .contact-inner, .reviews-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 220px; }
  .about-card-stack { width: 100%; max-width: 320px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 120px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
