/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Raleway', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #1E2D42;
  background: #FDF9F4;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 { font-family: 'Lora', Georgia, serif; font-weight: 600; line-height: 1.25; }

/* ── Utility ──────────────────────────────────────── */
.section { padding: 6rem 0; }
.section--alt { background: #FAF0E4; }
@media (max-width: 767px) {
  .section { padding: 4rem 0; }
}

.section-header { margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: #B85C38;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: #121C2A;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.0625rem;
  color: #5074A0;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: #B85C38;
  color: #fff;
  border: 2px solid #B85C38;
}
.btn--primary:hover {
  background: #A04A2E;
  border-color: #A04A2E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 92, 56, 0.3);
}
.btn--ghost {
  background: transparent;
  color: #F5E6D3;
  border: 2px solid rgba(245, 230, 211, 0.5);
}
.btn--ghost:hover {
  background: rgba(245, 230, 211, 0.1);
  border-color: #F5E6D3;
  transform: translateY(-2px);
}
.btn--ghost-light {
  background: transparent;
  color: #1E2D42;
  border: 2px solid rgba(30, 45, 66, 0.2);
}
.btn--ghost-light:hover {
  background: #1E2D42;
  color: #FDF9F4;
  border-color: #1E2D42;
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 92, 56, 0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(18, 28, 42, 0.08);
}
.site-header .max-w-7xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  z-index: 101;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1E2D42;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: #B85C38; background: rgba(184, 92, 56, 0.06); }
.nav-link--cta {
  background: #B85C38;
  color: #fff !important;
  margin-left: 0.5rem;
}
.nav-link--cta:hover { background: #A04A2E; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: #1E2D42;
  transition: background 0.25s;
  z-index: 101;
}
.nav-toggle:hover { background: rgba(184, 92, 56, 0.08); }
.nav-toggle svg { transition: transform 0.3s; }
.nav-toggle.active svg { transform: rotate(90deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #FDF9F4;
    flex-direction: column;
    align-items: stretch;
    padding: 6rem 2rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(18, 28, 42, 0.12);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { padding: 0.875rem 1rem; font-size: 1rem; }
  .nav-link--cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 28, 42, 0.4);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav-overlay.visible { opacity: 1; pointer-events: all; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #121C2A 0%,
    #1E2D42 20%,
    #2E4462 35%,
    #3D5A80 50%,
    #B85C38 72%,
    #C47843 85%,
    #D4956A 100%
  );
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(184, 92, 56, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(46, 68, 98, 0.3) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5E6D3;
  background: rgba(245, 230, 211, 0.12);
  border: 1px solid rgba(245, 230, 211, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  color: #FDF9F4;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(245, 230, 211, 0.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5E6D3;
  line-height: 1.2;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(245, 230, 211, 0.6);
  letter-spacing: 0.03em;
}
.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(245, 230, 211, 0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 230, 211, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Services ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #FDF9F4;
  border: 1px solid rgba(184, 92, 56, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #B85C38, #D4956A);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(18, 28, 42, 0.08);
  border-color: rgba(184, 92, 56, 0.2);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(184, 92, 56, 0.1), rgba(212, 149, 106, 0.1));
  border-radius: 12px;
  color: #B85C38;
  margin-bottom: 1.25rem;
}
.service-name {
  font-size: 1.125rem;
  color: #121C2A;
  margin-bottom: 0.625rem;
}
.service-desc {
  font-size: 0.9375rem;
  color: #5074A0;
  line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18, 28, 42, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid #FDF9F4;
  box-shadow: 0 16px 48px rgba(18, 28, 42, 0.1);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #B85C38, #D4956A);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}
.about-content { max-width: 520px; }
.about-text { margin-bottom: 2rem; }
.about-text p {
  font-size: 1rem;
  color: #5074A0;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: #1E2D42; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1E2D42;
}
.about-value svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images { min-height: 400px; }
  .about-content { max-width: 100%; }
}

/* ── Gallery ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 28, 42, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-tag {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F5E6D3;
}

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Contact ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { max-width: 520px; }
.contact-desc {
  font-size: 1.0625rem;
  color: #5074A0;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.contact-details { display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(184, 92, 56, 0.1), rgba(212, 149, 106, 0.08));
  border-radius: 10px;
  color: #B85C38;
}
.contact-detail strong {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9375rem;
  color: #121C2A;
  margin-bottom: 0.25rem;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.9375rem;
  color: #5074A0;
  line-height: 1.6;
}
.contact-detail a:hover { color: #B85C38; text-decoration: underline; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { max-width: 100%; }
}

/* ── Form ─────────────────────────────────────────── */
.contact-form-wrap {
  background: #FDF9F4;
  border: 1px solid rgba(184, 92, 56, 0.12);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}
.contact-form { transition: opacity 0.3s; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E2D42;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9375rem;
  color: #1E2D42;
  background: #fff;
  border: 1.5px solid rgba(184, 92, 56, 0.18);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #B85C38;
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #C8D6E8; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235074A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeIn 0.4s ease;
}
.form-success.show { display: flex; }
.form-success h3 {
  font-size: 1.375rem;
  color: #121C2A;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.9375rem;
  color: #5074A0;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── CTA Section ──────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #121C2A 0%, #1E2D42 50%, #2E4462 100%);
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.5) 30px, rgba(255,255,255,0.5) 31px);
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #FDF9F4;
  margin-bottom: 1rem;
}
.cta-text {
  font-size: 1.0625rem;
  color: rgba(245, 230, 211, 0.75);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-phone {
  color: #F5E6D3;
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 230, 211, 0.3);
  transition: color 0.25s, border-color 0.25s;
}
.cta-phone:hover { color: #fff; border-color: #fff; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: #0D1520;
  color: #F5E6D3;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 230, 211, 0.08);
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1.25rem;
}
.footer-ul { display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-link {
  font-size: 0.875rem;
  color: rgba(245, 230, 211, 0.55);
  transition: color 0.25s;
  line-height: 1.5;
}
.footer-link:hover { color: #F5E6D3; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy,
.footer-loc {
  font-size: 0.8125rem;
  color: rgba(245, 230, 211, 0.35);
}
.footer-loc { margin: 0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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