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

:root {
  --navy:        #1B3055;
  --navy-deep:   #0F1E38;
  --navy-mid:    #2A4472;
  --soft-white:  #EDE8E1;
  --off-white:   #F5F1EC;
  --white:       #FAFAF8;
  --gold:        #B8945A;
  --gold-light:  #D4B07A;
  --mist:        #D6DCE8;
  --text:        #0F1E38;
  --text-mid:    #2E4265;
  --text-light:  #6B7FA0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 5%;
  background: rgba(27, 48, 85, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--soft-white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 5rem;
  gap: 2.5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 65%; height: 130%;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,148,90,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 80%, rgba(42,68,114,0.5) 0%, transparent 60%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(237,232,225,0.15), transparent);
}

.hero-text {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease both;
}

.hero-logo {
  margin-bottom: 2.5rem;
}

.hero-logo img {
  height: 120px;
  width: auto;
}

h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--soft-white);
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtext {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(237, 232, 225, 0.7);
  max-width: 440px;
  margin-bottom: 2.8rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(237,232,225,0.35);
  color: var(--soft-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(237,232,225,0.15);
  border-radius: 6px;
  padding: 2.5rem;
  backdrop-filter: blur(4px);
  position: relative;
}

.hero-card::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(184,148,90,0.25);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}

.hero-quote {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--soft-white);
  padding-top: 2.5rem;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(184,148,90,0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 100px;
  border: 1px solid rgba(184,148,90,0.25);
}

/* ─── DIVIDER ─── */
.divider {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--mist), transparent);
}

/* ─── SECTION SHARED ─── */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ─── SERVICES ─── */
#services { background: var(--off-white); }

.services-header {
  max-width: 560px;
  margin-bottom: 4rem;
}

.services-header p {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 30, 56, 0.1);
  border-color: var(--mist);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

.service-list {
  list-style: none;
  margin-top: 1.2rem;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}

/* ─── ABOUT ─── */
#about {
  display: block;
  background: var(--white);
}

.about-box {
  background: var(--navy);
  border-radius: 6px;
  padding: 3rem 2.5rem;
}

.about-box-inner {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid rgba(237,232,225,0.12);
}

.about-stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(237,232,225,0.1);
}

.about-stat:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.about-stat-num {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.82rem;
  color: rgba(237,232,225,0.55);
  margin-top: 0.3rem;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.about-values .tag {
  background: rgba(27,48,85,0.08);
  color: var(--navy-mid);
  border-color: rgba(27,48,85,0.15);
}

/* ─── CTA ─── */
#contact {
  text-align: center;
  padding: 7rem 5%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,48,85,0.04) 0%, transparent 70%);
  pointer-events: none;
}

#contact .section-label { justify-content: center; }
#contact .section-label::after { display: none; }
#contact h2 { max-width: 560px; margin: 0 auto 1.5rem; }

#contact p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.contact-email {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 0.1rem;
  transition: color 0.2s;
}

.contact-email:hover { color: var(--gold); border-color: var(--gold); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep);
  color: rgba(237,232,225,0.45);
  padding: 2rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

footer img { height: 36px; width: auto; }

.hero-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-photo {
  width: 75%;
  max-width: 360px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  display: block;
  filter: brightness(0.95);
  margin: 0 auto;
}

.hero-photo-card {
  position: relative;
  bottom: auto;
  left: auto;
  margin-top: 1.2rem;
  background: rgba(15, 30, 56, 0.92);
  border: 1px solid rgba(237,232,225,0.15);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  max-width: 300px;
  backdrop-filter: blur(8px);
}

.hero-quote-small {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--soft-white);
  margin-bottom: 1rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.pre-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding: 7rem 5% 4rem; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  nav .nav-links { display: none; }
}

@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
