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

:root {
  --deep:        #3d5161;
  --deep-mid:    #445a6a;
  --mid:         #4d6475;
  --mid-light:   #566e80;
  --muted:       #6a8494;
  --fog:         #8fa4b0;
  --ash:         #b0c4cf;
  --ash-light:   #cfdce3;
  --white:       #f2f0ec;
  --white-dim:   rgba(242,240,236,0.72);
  --white-faint: rgba(242,240,236,0.12);
  --accent:      #c9a84c;
  --accent-light:#e2c47a;
  --accent-pale: rgba(201,168,76,0.1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(61,81,97,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(201,168,76,0.18);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.logo span { color: var(--accent); }

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

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: var(--accent);
  color: var(--deep);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { background: var(--accent-light); }

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: transparent;
  color: var(--ash);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0.5px solid rgba(176,196,207,0.35);
  transition: border-color 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* DIVIDER */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 4rem;
  margin: 0;
}

.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: rgba(201,168,76,0.2);
}

.divider-mark {
  width: 6px;
  height: 6px;
  border: 0.5px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* SECTIONS */
section { padding: 6rem 4rem; position: relative; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--accent-light); }

/* FOOTER */
footer {
  padding: 3rem 4rem;
  border-top: 0.5px solid rgba(201,168,76,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--deep);
  flex-wrap: wrap;
  gap: 1rem;
}

footer p { font-size: 0.7rem; color: var(--fog); letter-spacing: 0.08em; }
footer a.footer-link { color: var(--accent); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.1em; }
footer .footer-nav { display: flex; gap: 2rem; list-style: none; }
footer .footer-nav a { font-size: 0.7rem; color: var(--ash); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
footer .footer-nav a:hover { color: var(--accent); }

/* TESTIMONIALS */
.testimonials { background: var(--deep-mid); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  padding: 2rem;
  border: 0.5px solid rgba(201,168,76,0.14);
  background: rgba(255,255,255,0.03);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--ash-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  font-style: italic;
}

.testimonial-placeholder {
  font-size: 0.75rem;
  color: var(--fog);
  letter-spacing: 0.08em;
  font-style: normal;
  border-top: 0.5px solid rgba(201,168,76,0.1);
  padding-top: 1rem;
}

.testimonial-name {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.testimonial-role {
  font-size: 0.7rem;
  color: var(--fog);
  letter-spacing: 0.08em;
}

/* CONTACT FORM */
.contact-form-wrap {
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(176,196,207,0.25);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}

.form-group select option { background: var(--deep-mid); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 140px; }

.form-note {
  font-size: 0.75rem;
  color: var(--fog);
  margin-top: 1rem;
}

.form-success {
  display: none;
  padding: 1.5rem;
  border: 0.5px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
  margin-top: 1.5rem;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--ash-light);
}

.form-success strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
