/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #1a1a2e;
  background: #fdfbf7;
  line-height: 1.7;
  overflow-x: hidden;
  -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 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.25;
  color: #0a1628;
}
.em-gold { color: #b8943e; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--gold {
  background: linear-gradient(135deg, #c9a84c, #a8842a);
  color: #fff;
  border-color: #c9a84c;
  box-shadow: 0 4px 15px rgba(201,168,76,.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #d4b55a, #b8943e);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,.45);
}
.btn--dark {
  background: #0a1628;
  color: #fff;
  border-color: #0a1628;
}
.btn--dark:hover {
  background: #162238;
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn--outline-dark {
  background: transparent;
  color: #0a1628;
  border-color: #0a1628;
}
.btn--outline-dark:hover {
  background: #0a1628;
  color: #fff;
}
.btn--full { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,22,40,.06);
  transition: all .35s ease;
}
.header.scrolled {
  background: rgba(253, 251, 247, 0.97);
  box-shadow: 0 2px 30px rgba(10,22,40,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a1628;
}
.logo em { font-style: italic; color: #b8943e; }
.logo--light { color: #fff; }
.logo__mark { color: #b8943e; }

.nav__list {
  display: flex;
  gap: 2rem;
}
.nav__link {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0a1628;
  position: relative;
  transition: color .3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #b8943e;
  transition: width .3s;
}
.nav__link:hover { color: #b8943e; }
.nav__link:hover::after { width: 100%; }
.nav__cta { display: none; }

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #0a1628;
  border-radius: 2px;
  transition: all .3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,22,40,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__inner { text-align: center; }
.mobile-menu__link {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #fff;
  padding: .75rem 0;
  transition: color .3s;
}
.mobile-menu__link:hover { color: #c9a84c; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(184,106,60,.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(74,106,130,.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 50% 80%, rgba(10,22,40,.85) 0%, transparent 60%),
    linear-gradient(160deg, #0a1628 0%, #1a2d4a 35%, #2a4a6a 55%, #8B5E3C 78%, #c9a84c 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.3);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.25rem;
}
.hero__headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
}
.hero__trust-item svg { color: #c9a84c; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.6); }
}

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #b8943e;
  margin-bottom: .75rem;
}
.section-header__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-header__desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
}
.section-header--center .section-header__desc { margin: 0 auto; }

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: #fdfbf7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(10,22,40,.06);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #a8842a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10,22,40,.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8943e;
  margin-bottom: 1.25rem;
}
.service-card__title {
  font-size: 1.2rem;
  margin-bottom: .6rem;
}
.service-card__text {
  font-size: .92rem;
  color: #555;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: #0a1628;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.about__image-wrap {
  position: relative;
}
.about__image-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
}
.about__image-main img { width: 100%; height: 100%; object-fit: cover; }
.about__image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid #0a1628;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.about__image-accent img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  background: linear-gradient(135deg, #c9a84c, #a8842a);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201,168,76,.4);
}
.about__badge-text {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
}
.about__badge-sub {
  font-size: .75rem;
  opacity: .85;
  letter-spacing: .05em;
}
.about__content { color: #fff; }
.about__content .section-header__eyebrow { color: #c9a84c; }
.about__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.about__text {
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
  font-size: .95rem;
}
.about__highlights {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.highlight-item { text-align: center; }
.highlight-item__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #c9a84c;
}
.highlight-item__label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 0;
  background: #fdfbf7;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}
.gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}
.gallery__item--large { grid-column: span 5; }
.gallery__item--tall { grid-column: span 4; grid-row: span 2; }
.gallery__item:not(.gallery__item--large):not(.gallery__item--tall) { grid-column: span 4; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background: #f5f0e8;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(10,22,40,.05);
  transition: all .3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10,22,40,.08);
}
.testimonial-card__stars {
  display: flex;
  gap: .25rem;
  color: #c9a84c;
  margin-bottom: 1rem;
}
.testimonial-card__text {
  font-size: .95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card__author {
  font-size: .85rem;
  font-weight: 600;
  color: #0a1628;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,106,60,.5), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(74,106,130,.5), transparent 60%),
    linear-gradient(135deg, #0a1628, #1a3a5c, #8B5E3C, #c9a84c);
}
.cta-banner__inner {
  position: relative;
  text-align: center;
}
.cta-banner__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: .75rem;
}
.cta-banner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner__text {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: #fdfbf7;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}
.contact__desc {
  color: #555;
  font-size: .95rem;
  margin-bottom: 2rem;
}
.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;
  min-width: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8943e;
}
.contact-detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  margin-bottom: .2rem;
  color: #0a1628;
}
.contact-detail span,
.contact-detail a {
  font-size: .9rem;
  color: #555;
}
.contact-detail a:hover { color: #b8943e; }

/* Contact form */
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: 0 10px 40px rgba(10,22,40,.06);
}
.contact-form__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0a1628;
  margin-bottom: .4rem;
}
.form-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #e0dbd3;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: .9rem;
  color: #1a1a2e;
  background: #fdfbf7;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-input:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(201,168,76,.1);
  border-radius: 6px;
  color: #6a5a2e;
  font-weight: 500;
  font-size: .9rem;
}

/* ===== MAP ===== */
.map-section { height: 350px; }
.map-section iframe { width: 100%; height: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: #0a1628;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__tagline {
  font-size: .9rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}
.footer__links h4,
.footer__contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
  font-size: .9rem;
  transition: color .3s;
}
.footer__links a:hover { color: #c9a84c; }
.footer__contact p {
  font-size: .9rem;
  margin-bottom: .4rem;
}
.footer__contact a:hover { color: #c9a84c; }
.footer__bottom {
  padding: 1.5rem 0;
  background: rgba(0,0,0,.15);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .testimonial-card:last-child { grid-column: span 2; }
  .about__inner { gap: 2.5rem; }
  .gallery__grid { grid-template-rows: repeat(2, 240px); }
}

@media (max-width: 768px) {
  .nav__list, .nav__cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 5rem 1.5rem 3rem; min-height: auto; padding-top: 8rem; padding-bottom: 5rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__trust { flex-direction: column; align-items: center; gap: .75rem; }
  .services__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__image-wrap { max-width: 400px; }
  .about__image-accent { right: -1rem; bottom: -1rem; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--large { grid-column: span 2; }
  .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .gallery__item { height: 220px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial-card:last-child { grid-column: span 1; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 1.75rem; }
  .services, .about, .gallery, .testimonials, .contact { padding: 4rem 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--large { grid-column: span 1; }
  .contact-form { padding: 1.5rem; }
}
