
:root {
  --navy:      #1E2B4D;
  --yellow:    #FDB913;
  --sky:       #5DADE2;
  --white:     #ffffff;
  --off-white: #f8f9fa;
  --light-bg:  #eef2f6;
  --gray:      #D5DBDB;
  --text:      #1E2B4D;
  --muted:     #5b6b7a;
  --radius:    16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 72px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
p  { line-height: 1.75; color: var(--muted); }
em { font-style: italic; color: var(--sky); }

/* ── LABELS ── */
.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.75rem;
  display: block;
}
.label.light { color: rgba(255,255,255,0.85); }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: #e6a800; transform: translateY(-2px); }
.btn-primary.full  { width: 100%; padding: 1rem; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--sky);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-ghost:hover { background: var(--light-bg); border-color: var(--navy); }

.btn-nav {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
}
.btn-nav:hover { background: #e6a800 !important; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray);
}
.nav-inner {
  max-width: 1180px;
  margin: auto;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 45px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; width: 100%;
  background: white;
  padding: 2rem;
  gap: 1.25rem;
  border-bottom: 1px solid var(--gray);
  z-index: 99;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--navy); font-weight: 500; }
.mobile-menu .btn-nav { width: fit-content; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 2rem 80px;
  background: var(--off-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 80% 40%, rgba(93,173,226,0.25), transparent 60%),
    radial-gradient(circle at 20% 70%, rgba(253,185,19,0.15), transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-eyebrow {
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.hero h1 { color: var(--navy); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--yellow); }
.hero-sub { font-size: 1.05rem; margin-bottom: 2.25rem; max-width: 500px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SERVICES ── */
.services {
  padding: 7rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--light-bg);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(30,43,77,0.1);
  border-color: var(--sky);
}
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--navy); }
.service-card p  { font-size: 0.9rem; margin-top: 0.5rem; }

/* ── AREAS ── */
.areas { background: var(--navy); color: white; padding: 7rem 2rem; }
.areas-inner { max-width: 1180px; margin: auto; }
.areas-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.areas-desc { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.8; }

/* ── WHY ── */
.why { background: var(--off-white); padding: 7rem 2rem; }
.why .section-header { margin: 0 auto 3.5rem; }
.why-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-item {
  background: white;
  border: 1px solid var(--gray);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover { box-shadow: 0 8px 28px rgba(30,43,77,0.08); border-color: var(--sky); }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--sky);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.why-item p { font-size: 0.88rem; margin-top: 0.35rem; }

/* ── CONTACT ── */
.contact { padding: 7rem 2rem; background: var(--white); }
.contact-inner {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-left h2  { color: var(--navy); margin-bottom: 1rem; }
.contact-desc     { font-size: 0.95rem; margin-bottom: 1.75rem; }

.phone-link {
  display: block;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--yellow); }

.contact-detail-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}
.contact-detail-link:hover { color: var(--sky); }
.instagram-link { margin-bottom: 1.5rem; }
.ig-icon { width: 18px; height: 18px; flex-shrink: 0; }

.contact-note {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* Contact form */
.contact-form {
  background: var(--light-bg);
  border: 1px solid var(--gray);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--gray);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--sky); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); opacity: 0.6; }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--yellow);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer p { font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-links .ig-icon { width: 15px; height: 15px; }

/* ── VIDEO SHOWCASE ── */
.video-showcase {
  padding: 5rem 2rem;
  background: var(--off-white);
  border-top: 1px solid var(--gray);
}
.video-inner {
  max-width: 860px;
  margin: 0 auto;
}
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.video-wrapper:hover {
  border-color: var(--sky);
  box-shadow: 0 16px 48px rgba(30,43,77,0.15);
}
.showcase-video {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(30,43,77,0.35);
  transition: background var(--transition), opacity var(--transition);
}
.video-overlay.playing {
  background: transparent;
  opacity: 0;
  pointer-events: none;
}
.video-wrapper:hover .video-overlay.playing {
  opacity: 1;
  pointer-events: auto;
  background: rgba(30,43,77,0.25);
}
.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.play-btn:hover { transform: scale(1.1); background: #e6a800; }
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.video-overlay.playing .play-btn svg polygon {
  points: "4,4 12,4 12,20 4,20 M14,4 22,4 22,20 14,20";
}
.video-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .play-btn { width: 58px; height: 58px; }
  .play-btn svg { width: 22px; height: 22px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .areas-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .services-grid,
  .why-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
}
