:root {
  --navy: #1b2a4a;
  --navy-dark: #121d36;
  --yellow: #f2c14e;
  --yellow-dark: #d9a72c;
  --white: #ffffff;
  --off-white: #f7f7f4;
  --text: #1b2a4a;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.5;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 0.5em;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text {
  color: var(--white);
  font-family: Georgia, serif;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 1px;
}
.brand-text small {
  font-size: 0.55em;
  letter-spacing: 2px;
  color: var(--yellow);
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--yellow); }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow);
  color: var(--navy-dark);
  box-shadow: 0 6px 16px rgba(242,193,78,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-call {
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 10px 18px;
  font-size: 0.95rem;
}
.header-call { white-space: nowrap; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 90px 0 140px;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(27,42,74,0.78) 0%, rgba(18,29,54,0.85) 100%),
              radial-gradient(circle at 80% 20%, rgba(242,193,78,0.15), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.eyebrow {
  display: inline-block;
  background: rgba(242,193,78,0.15);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 0.4em;
  letter-spacing: 1px;
}
.hero-sub {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
.speak-english {
  opacity: 0.85;
  font-weight: 600;
}
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}
.wave-divider path {
  fill: var(--off-white);
}

/* Services */
.services { padding: 80px 0; text-align: center; }
.section-sub { color: #555; margin-bottom: 2.5em; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 18px rgba(27,42,74,0.08);
  border-bottom: 4px solid var(--yellow);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-icon { font-size: 2.4rem; margin-bottom: 0.4em; }
.service-card h3 { color: var(--navy); }
.service-card p { color: #555; font-size: 0.95rem; }

/* Gallery */
.gallery { padding: 80px 0; background: var(--navy); color: var(--white); text-align: center; }
.gallery .section-sub { color: #c8cfe0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* CTA band */
.cta-band {
  background: var(--yellow);
  padding: 56px 0;
  text-align: center;
}
.cta-band-inner h2 {
  color: var(--navy-dark);
  margin-bottom: 0.8em;
}

/* Contact */
.contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-list { list-style: none; padding: 0; margin: 1.5em 0; }
.contact-list li { margin-bottom: 0.9em; }
.contact-list a { color: var(--navy); text-decoration: underline; }
.note { font-size: 0.85rem; color: #888; }

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(27,42,74,0.08);
}
.contact-form h3 { color: var(--navy); }
.contact-form label {
  display: block;
  margin-bottom: 1em;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.form-note { font-size: 0.9rem; color: green; min-height: 1.2em; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-call { font-size: 0.85rem; padding: 8px 14px; }
}
