/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #1a2744;
  background: #f8f4f0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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 { position: absolute; left: -999px; top: 0; background: #1a2744; color: #fff; padding: 8px 16px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ─── Typography ─── */
:root {
  --navy: #1a2744;
  --navy-light: #2a3f66;
  --gold: #c9963f;
  --gold-dark: #a0702a;
  --cream: #f8f4f0;
  --blush: #f5e6d8;
  --lavender: #ede8f5;
  --sage: #e8f0e8;
  --white: #ffffff;
  --gray: #6b7a99;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
}
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; color: var(--navy); }
.gold { color: var(--gold); }
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray);
  max-width: 520px;
  font-size: 0.95rem;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: linear-gradient(135deg, #d4a54f, var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,150,63,0.35); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,244,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,39,68,0.07);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(26,39,68,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu ul { display: flex; gap: 28px; }
.nav-menu a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: color 0.2s;
}
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-menu a:not(.btn):hover { color: var(--gold); }
.nav-menu a:not(.btn):hover::after { width: 100%; }
.nav-menu .btn { margin-left: 8px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(248,244,240,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(26,39,68,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-menu ul { flex-direction: column; gap: 16px; text-align: center; }
  .nav-menu a:not(.btn) { font-size: 1rem; }
  .nav-menu .btn { margin-left: 0; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a2744 0%, #2a3f66 50%, #1e3050 100%);
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/8834029/pexels-photo-8834029.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900') center/cover no-repeat;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.88) 0%, rgba(42,63,102,0.75) 60%, rgba(26,39,68,0.6) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.hero-content { color: var(--white); }
.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
  width: 340px;
  height: 440px;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  width: 180px;
  height: 216px;
  border: 4px solid rgba(255,255,255,0.2);
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-badge svg { color: var(--gold); }
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { order: 2; }
  .hero-image-wrap { order: 1; justify-content: center; }
  .hero-img-main { width: 260px; height: 340px; }
  .hero-img-accent { width: 140px; height: 168px; left: -10px; bottom: -10px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-img-main { width: 220px; height: 290px; }
  .hero-img-accent { width: 120px; height: 144px; }
}

/* ─── Services ─── */
.services {
  padding: 100px 0 110px;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(26,39,68,0.05);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,39,68,0.1); }
.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,150,63,0.12), rgba(201,150,63,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}
.services-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}
.services-note a {
  color: var(--gold-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(160,112,42,0.3);
  transition: border-color 0.2s;
}
.services-note a:hover { border-color: var(--gold-dark); }

@media (max-width: 800px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 70px 0 80px; }
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(26,39,68,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26,39,68,0.15);
  width: 55%;
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-bar {
  position: absolute;
  top: -20px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-content > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(26,39,68,0.08);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content .section-tag, .about-content .section-title { text-align: center; }
  .about-content > p { text-align: center; }
  .about-stats { justify-content: center; }
}

/* ─── Gallery ─── */
.gallery {
  padding: 100px 0 110px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(4) img { height: 100%; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-row: span 1; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── Reviews ─── */
.reviews {
  padding: 100px 0 110px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201,150,63,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.reviews .section-tag { color: var(--gold); }
.reviews .section-title { color: var(--white); }
.reviews .section-sub { color: rgba(255,255,255,0.55); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.review-quote { margin-bottom: 20px; opacity: 0.85; }
.review-card p {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-source {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ─── CTA Banner ─── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/7195808/pexels-photo-7195808.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=400') center/cover no-repeat;
  opacity: 0.1;
}
.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 260px; }
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-sub { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 420px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .cta-grid { flex-direction: column; text-align: center; }
  .cta-sub { margin: 0 auto; }
  .cta-actions { justify-content: center; }
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0 110px;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 20px; }
.contact-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-details svg { flex-shrink: 0; margin-top: 2px; }
.contact-details strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-details span, .contact-details a {
  font-size: 0.92rem;
  color: var(--gray);
}
.contact-details a:hover { color: var(--gold-dark); }
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(26,39,68,0.08); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 16px 48px rgba(26,39,68,0.07);
  border: 1px solid rgba(26,39,68,0.05);
}
.form-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.form-sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.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: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(26,39,68,0.12);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,63,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  color: var(--navy);
}
.form-success svg { color: var(--gold); }
.form-success p { font-size: 0.95rem; font-weight: 500; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-tag, .contact-info .section-title { text-align: center; }
  .contact-desc { text-align: center; }
  .contact-details { align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-links strong, .footer-contact strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-links li span { font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-logo { justify-content: center; }
}
