*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1a5fa8;
  --blue-dk: #0e3d72;
  --gold:    #c9a84c;
  --bg:      #ffffff;
  --gray:    #f5f6f8;
  --text:    #1e1e1e;
  --muted:   #6b7280;
  --nav-h:   72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { position: relative; width: 72px; height: 72px; }
.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #1a5fa8;
  border-right-color: #c9a84c;
  animation: loader-spin 1s cubic-bezier(.6,.15,.4,.85) infinite;
}
.loader-ring--2 {
  inset: 10px;
  border-top-color: #c9a84c;
  border-right-color: #1a5fa8;
  animation-direction: reverse;
  animation-duration: .75s;
}
.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7280;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-dk);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 6px;
  object-fit: contain;
  padding: 2px;
}

.nav-name {
  display: flex;
  flex-direction: column;
}

.nav-name span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}

.nav-name span:last-child {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 5%;
  background: var(--blue-dk);
}

.mobile-menu a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-menu.open { display: flex; }

.hero {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 55%, #2980b9 100%);
  padding: 60px 5% 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,.25);
}

.hero::before {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  animation: hero-ring-float 7s ease-in-out infinite;
}

.hero::after {
  width: 360px;
  height: 360px;
  bottom: -160px;
  left: -60px;
  animation: hero-ring-pulse 6s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.flower-corner {
  position: absolute;
  width: 300px;
  pointer-events: none;
  opacity: 0.85;
}

.flower-corner-top { top: -20px; left: -20px; }

.flower-corner-bottom {
  bottom: -20px;
  right: -20px;
  transform: rotate(180deg);
}

.hero-logo {
  width: 440px;
  max-width: 100%;
  height: auto;
  background: #fff;
  border: 4px solid var(--gold);
  border-radius: 12px;
  object-fit: contain;
  padding: 4px;
  margin: 0 auto 22px;
}

.hero p.tagline {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero p.desc {
  font-size: 16px;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: all .22s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #a8853a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

.contact-section {
  padding: 60px 5% 80px;
  background: var(--gray);
}

.contact-shell {
  max-width: 960px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(32, 54, 89, 0.08);
  padding: 48px;
}

.section-label {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(26,95,168,.1);
  color: var(--blue-dk);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 16px;
  line-height: 1.05;
}

.intro {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.inquire-form {
  display: grid;
  gap: 24px;
}

.field-row {
  display: grid;
  gap: 10px;
}

.inquire-form label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.inquire-form input,
.inquire-form textarea {
  width: 100%;
  border: 1px solid #d9dbe8;
  border-radius: 16px;
  padding: 18px 22px;
  font: inherit;
  color: var(--text);
  background: #fbfcff;
}

.inquire-form input:focus,
.inquire-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,95,168,.12);
}

.inquire-form textarea {
  min-height: 170px;
  resize: vertical;
}

.form-response {
  font-size: 0.95rem;
}

.form-response.success { color: #0f6f3d; }

.form-response.error { color: #b02a37; }

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.18), transparent 34%),
    rgba(14, 61, 114, 0.54);
  backdrop-filter: blur(8px);
}

.success-modal__dialog {
  position: relative;
  width: min(100%, 500px);
  padding: 88px 34px 34px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 246, 248, 0.98)),
    #fff;
  box-shadow: 0 30px 70px rgba(10, 35, 67, 0.28);
  text-align: center;
  transform: translateY(26px) scale(0.94);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.2, .9, .2, 1), opacity 0.35s ease;
  overflow: visible;
}

.success-modal__dialog::before,
.success-modal__dialog::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.success-modal__dialog::before {
  width: 190px;
  height: 190px;
  top: -94px;
  right: -34px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.24), transparent 68%);
}

.success-modal__dialog::after {
  width: 150px;
  height: 150px;
  bottom: -76px;
  left: -28px;
  background: radial-gradient(circle, rgba(26, 95, 168, 0.12), transparent 68%);
}

.success-modal.is-open .success-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.success-modal__badge {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, #dec26e 100%);
  box-shadow:
    0 18px 32px rgba(201, 168, 76, 0.35),
    0 0 0 10px rgba(255, 255, 255, 0.94);
  animation: success-badge-float 2.8s ease-in-out infinite;
}

.success-modal__icon {
  width: 60px;
  height: 60px;
}

.success-modal__icon circle,
.success-modal__icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-modal__icon circle,
.success-modal__icon path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.success-modal.is-open .success-modal__icon circle {
  animation: success-stroke 0.65s ease forwards 0.15s;
}

.success-modal.is-open .success-modal__icon path {
  animation: success-stroke 0.45s ease forwards 0.5s;
}

.success-modal__eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.success-modal h3 {
  font-family: 'Playfair Display', serif;
  color: var(--blue-dk);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.success-modal__message {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 auto 26px;
  max-width: 34ch;
}

.success-modal__button {
  min-width: 180px;
}

footer {
  background: #11284d;
  color: #fff;
  padding: 32px 5% 36px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
}

footer h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

footer p { color: rgba(255,255,255,.72); line-height: 1.7; }

@media (max-width: 840px) {
  nav { padding: 0 4%; }
  .nav-links { gap: 18px; }
  .hero { padding: 50px 4% 60px; }
  .hero::before { width: 420px; height: 420px; top: -180px; right: -90px; }
  .hero::after { width: 300px; height: 300px; bottom: -140px; left: -50px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .hero { padding: 44px 4% 50px; }
  .hero p.desc { font-size: 15px; }
  .hero-logo { width: 100%; max-width: 360px; }
  .contact-card { padding: 30px 22px; }
  .btn { width: 100%; text-align: center; }
  .contact-section { padding: 40px 4% 60px; }

  .success-modal__dialog {
    padding: 78px 22px 24px;
    border-radius: 24px;
  }

  .success-modal__badge {
    width: 98px;
    height: 98px;
    top: -36px;
  }

  .success-modal__message {
    font-size: 15px;
  }
}

@keyframes hero-ring-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(12px) scale(1.02); }
}

@keyframes hero-ring-pulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.04); opacity: .7; }
}

@keyframes success-stroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes success-badge-float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

footer {
  background: var(--blue-dk);
  color: rgba(255,255,255,.75);
  padding: 52px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-brand .logo-badge {
  margin-bottom: 14px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col ul li svg { flex-shrink: 0; margin-top: 2px; }

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
}

.social-btn:hover { background: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.footer-logo {
  width: 56px;
  height: 56px;
  background: #fff;
  
  border-radius: 8px;
  object-fit: contain;
  padding: 3px;
  margin-bottom: 14px;
}
