/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Skip Link ─── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #1a1a1a; color: #fff;
  padding: 8px 16px; border-radius: 4px; z-index: 999;
  font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.2; }
.section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: #f26b3d; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px; color: #1a1a1a;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 500; letter-spacing: 0.02em;
  transition: all 0.25s ease; cursor: pointer; border: 1.5px solid transparent;
}
.btn-coral {
  background: #f26b3d; color: #fff; border-color: #f26b3d;
}
.btn-coral:hover { background: #e05a2b; border-color: #e05a2b; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #1a1a1a; border-color: #1a1a1a;
}
.btn-outline:hover { background: #1a1a1a; color: #fff; }
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: #fff; color: #1a1a1a; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,26,0.06);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 500;
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  color: #555; transition: color 0.2s;
}
.nav a:hover { color: #1a1a1a; }

/* ─── Nav Toggle ─── */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; padding: 4px 0; flex-direction: column; gap: 5px;
}
.nav-toggle-bar {
  display: block; width: 100%; height: 1.5px;
  background: #1a1a1a; border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero { padding-top: 120px; padding-bottom: 80px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: #f26b3d; margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; margin-bottom: 20px;
}
.hero-headline em { color: #f26b3d; font-style: italic; }
.hero-sub {
  font-size: 15px; color: #555; max-width: 460px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual + stat cards */
.hero-visual { position: relative; min-height: 480px; }
.hero-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.hero-card img { width: 100%; height: 420px; object-fit: cover; }
.stat-card {
  position: absolute; background: #fff;
  border-radius: 10px; padding: 18px 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; gap: 4px;
  animation: float 4s ease-in-out infinite;
}
.stat-card--1 {
  bottom: -20px; left: -30px;
  animation-delay: 0s;
}
.stat-card--2 {
  top: 20px; right: -20px;
  animation-delay: 1.3s;
}
.stat-card--3 {
  bottom: 80px; right: -40px;
  animation-delay: 2.6s;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 500; color: #f26b3d;
}
.stat-label { font-size: 12px; color: #777; letter-spacing: 0.02em; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(26,26,26,0.08);
}

/* ─── Services ─── */
.services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(26,26,26,0.06);
  border-radius: 10px; padding: 36px 28px;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: #f26b3d;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(242,107,61,0.08);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 8px; background: #fafafa;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #f26b3d;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 500;
  margin-bottom: 10px; color: #1a1a1a;
}
.service-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ─── About ─── */
.about { padding: 100px 0; background: #1a1a1a; color: #fff; }
.about .section-title { color: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-image-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.about-image-wrap img { width: 100%; height: 640px; object-fit: cover; border-radius: 12px; }
.about-accent {
  position: absolute; bottom: -12px; right: -12px;
  width: 120px; height: 120px;
  border: 2px solid #f26b3d; border-radius: 12px;
  z-index: -1;
}
.about-content p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.about-values {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.value-item { display: flex; align-items: center; gap: 10px; }
.value-label { font-size: 14px; color: rgba(255,255,255,0.8); }
.value-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #f26b3d; flex-shrink: 0;
}

/* ─── Gallery ─── */
.gallery { padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 100px 0;
  background: #f26b3d;
  color: #fff;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.8; }
.cta-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta-sub { font-size: 15px; opacity: 0.85; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* ─── Contact ─── */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-intro { font-size: 15px; color: #666; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: #fafafa; border: 1px solid rgba(26,26,26,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #f26b3d;
}
.contact-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #999; margin-bottom: 4px; }
.contact-item a { font-size: 15px; color: #1a1a1a; text-decoration: underline; text-decoration-color: rgba(26,26,26,0.15); text-underline-offset: 4px; transition: text-decoration-color 0.2s; }
.contact-item a:hover { text-decoration-color: #f26b3d; }

.hours h3 { font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.hours ul { display: flex; flex-direction: column; gap: 10px; }
.hours li {
  display: flex; justify-content: space-between;
  font-size: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(26,26,26,0.06);
  color: #555;
}
.hours li span:first-child { font-weight: 400; }

/* Form */
.contact-form-wrap {
  background: #fff; border: 1px solid rgba(26,26,26,0.06);
  border-radius: 12px; padding: 40px;
}
.contact-form h3 { font-size: 18px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #888; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(26,26,26,0.12);
  border-radius: 6px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 300; color: #1a1a1a;
  background: #fafafa; transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #f26b3d; background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 16px;
  background: #f0faf4; border-radius: 6px;
  color: #1a7a4a; font-size: 14px;
}
.form-success svg { flex-shrink: 0; }

/* ─── Footer ─── */
.footer { background: #111; color: rgba(255,255,255,0.5); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 14px; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 14px; transition: color 0.2s; }
.footer-contact a:hover { color: #f26b3d; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom p { font-size: 13px; }

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 360px; order: -1; }
  .hero-card img { height: 320px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250,250,250,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column; align-items: flex-start;
    padding: 24px; gap: 16px;
    border-bottom: 1px solid rgba(26,26,26,0.06);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 15px; }
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero-grid { gap: 32px; }
  .stat-card { padding: 14px 16px; }
  .stat-number { font-size: 20px; }
  .stat-card--1 { left: 0; bottom: -10px; }
  .stat-card--2 { right: 0; top: 10px; }
  .stat-card--3 { right: 0; bottom: 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}
