@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --zc-navy: #0a2540;
  --zc-navy-deep: #061a2e;
  --zc-cream: #f5f0e6;
  --zc-cream-dark: #ebe4d6;
  --zc-gold: #b8860b;
  --zc-gold-light: #d4a843;
  --zc-white: #ffffff;
  --zc-text: #1a2b3c;
  --zc-muted: #5c6b7a;
  --zc-border: #d9d2c4;
  --zc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --zc-radius: 4px;
  --zc-shadow: 0 8px 32px rgba(10, 37, 64, 0.08);
  --zc-shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--zc-white);
  color: var(--zc-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }

/* Utility bar */
.utility-bar {
  background: var(--zc-navy-deep);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.utility-bar a { color: var(--zc-gold-light); transition: color 0.2s; }
.utility-bar a:hover { color: #fff; }

/* Header */
.site-header {
  background: var(--zc-navy);
  color: #fff;
  transition: box-shadow 0.3s var(--zc-ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--zc-gold);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  border: none;
  transition: all 0.25s var(--zc-ease);
}
.btn-gold:hover { background: #9a7209; transform: translateY(-1px); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.25s var(--zc-ease);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--zc-navy);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border: none;
  transition: all 0.25s var(--zc-ease);
}
.btn-navy:hover { background: var(--zc-navy-deep); }

/* Split hero */
.hero-split {
  display: grid;
  min-height: 85vh;
}
@media (min-width: 1024px) {
  .hero-split { grid-template-columns: 2fr 3fr; min-height: 90vh; }
}

.hero-brand-panel {
  background: var(--zc-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}
.hero-brand-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--zc-gold);
}

.hero-image-panel {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.55) 0%, rgba(10,37,64,0.25) 100%);
}

.hero-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  color: #fff;
}
@media (min-width: 768px) {
  .hero-overlay-content { padding: 4rem 5rem; }
}

/* Pattern bg */
.pattern-bg {
  background-color: var(--zc-navy);
  background-image:
    linear-gradient(rgba(10,37,64,0.92), rgba(10,37,64,0.92)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.06'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3Cpath d='M0 0l60 60M60 0L0 60'/%3E%3C/g%3E%3C/svg%3E");
}

/* Service cards */
.service-card {
  background: var(--zc-white);
  padding: 2rem;
  box-shadow: var(--zc-shadow);
  transition: transform 0.3s var(--zc-ease), box-shadow 0.3s var(--zc-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zc-shadow-lg);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zc-cream);
  color: var(--zc-navy);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--zc-navy);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.875rem; line-height: 1.7; color: var(--zc-muted); flex: 1; }
.service-card a {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zc-gold);
  letter-spacing: 0.02em;
}

/* Feature blocks */
.feature-block {
  padding: 2rem;
  border: 1px solid var(--zc-border);
  background: var(--zc-white);
  transition: border-color 0.25s;
}
.feature-block:hover { border-color: var(--zc-gold); }

/* Page hero */
.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: var(--zc-navy);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }

/* Services page */
.services-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (min-width: 768px) { .services-hero { min-height: 520px; } }
.services-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,26,46,0.35) 0%, rgba(10,37,64,0.88) 100%);
}
.services-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 0 4rem;
  color: #fff;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.service-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  transition: all 0.2s var(--zc-ease);
}
.service-nav a:hover {
  background: var(--zc-gold);
  border-color: var(--zc-gold);
  color: #fff;
}

.service-card-image {
  background: var(--zc-white);
  box-shadow: var(--zc-shadow);
  transition: transform 0.3s var(--zc-ease), box-shadow 0.3s var(--zc-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--zc-shadow-lg);
}
.service-card-image .card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card-image .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--zc-ease);
}
.service-card-image:hover .card-img img { transform: scale(1.04); }
.service-card-image .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-image h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--zc-navy);
  margin-bottom: 0.5rem;
}
.service-card-image p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--zc-muted);
  flex: 1;
}
.service-card-image a {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--zc-gold);
  letter-spacing: 0.02em;
}

.service-detail {
  display: grid;
  gap: 2rem;
  align-items: center;
  scroll-margin-top: 6rem;
}
@media (min-width: 1024px) {
  .service-detail { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .service-detail.reverse .service-detail-media { order: 2; }
}
.service-detail-media {
  overflow: hidden;
  box-shadow: var(--zc-shadow-lg);
}
.service-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.service-detail-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--zc-navy);
  margin-bottom: 1rem;
}
.service-detail-content p {
  color: var(--zc-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-detail-content ul {
  color: var(--zc-muted);
  line-height: 1.75;
  list-style: disc;
  padding-left: 1.25rem;
}
.service-detail-content ul li + li { margin-top: 0.35rem; }
.service-detail-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zc-gold);
  margin-bottom: 0.75rem;
}

.service-highlight {
  background: var(--zc-cream);
  border: 1px solid var(--zc-border);
  border-left: 4px solid var(--zc-gold);
  padding: 2.5rem;
  scroll-margin-top: 6rem;
}
@media (min-width: 1024px) {
  .service-highlight {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0;
    border-left: none;
    overflow: hidden;
  }
  .service-highlight .service-detail-media { box-shadow: none; }
  .service-highlight .service-detail-content { padding: 2.5rem 2.5rem 2.5rem 0; }
}

/* Contact page */
.contact-quick-bar {
  background: var(--zc-cream);
  border-bottom: 1px solid var(--zc-border);
}
.contact-quick-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.contact-quick-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zc-navy);
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--zc-border);
  background: var(--zc-white);
  transition: all 0.2s var(--zc-ease);
}
.contact-quick-bar a:hover {
  border-color: var(--zc-gold);
  color: var(--zc-gold);
}
.contact-quick-bar a.primary {
  background: var(--zc-navy);
  border-color: var(--zc-navy);
  color: #fff;
}
.contact-quick-bar a.primary:hover {
  background: var(--zc-navy-deep);
  border-color: var(--zc-navy-deep);
  color: #fff;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--zc-border);
  background: var(--zc-white);
  transition: border-color 0.2s;
}
.contact-info-card:hover { border-color: var(--zc-gold); }
.contact-info-card .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zc-cream);
  color: var(--zc-navy);
}
.contact-info-card h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--zc-navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.875rem;
  color: var(--zc-muted);
  line-height: 1.5;
}
.contact-info-card a.value {
  color: var(--zc-gold);
  font-weight: 600;
}
.contact-info-card a.value:hover { text-decoration: underline; }

.contact-form-panel {
  background: var(--zc-white);
  border: 1px solid var(--zc-border);
  padding: 2rem;
  box-shadow: var(--zc-shadow);
}
@media (min-width: 640px) { .contact-form-panel { padding: 2.5rem; } }
.contact-form-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--zc-navy);
}
.contact-form-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .contact-form-grid.two-col { grid-template-columns: 1fr 1fr; }
}

.contact-sidebar-image {
  overflow: hidden;
  box-shadow: var(--zc-shadow-lg);
}
.contact-sidebar-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.contact-expect {
  background: var(--zc-cream);
  padding: 1.5rem;
  border-left: 3px solid var(--zc-gold);
}
.contact-expect h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--zc-navy);
  margin-bottom: 0.75rem;
}
.contact-expect ul {
  font-size: 0.8125rem;
  color: var(--zc-muted);
  line-height: 1.7;
  list-style: none;
  padding: 0;
}
.contact-expect li {
  padding-left: 1.25rem;
  position: relative;
}
.contact-expect li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--zc-gold);
  font-weight: 700;
}
.contact-expect li + li { margin-top: 0.35rem; }

/* Stats */
.stat-item { text-align: center; padding: 1.5rem; }
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--zc-gold);
  line-height: 1;
}
.stat-label { font-size: 0.8125rem; color: var(--zc-muted); margin-top: 0.5rem; letter-spacing: 0.04em; }

/* Testimonial */
.testimonial-card {
  background: var(--zc-cream);
  padding: 2.5rem;
  border-left: 3px solid var(--zc-gold);
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--zc-navy);
}

/* Form */
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--zc-navy); }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--zc-border);
  background: var(--zc-white);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--zc-navy); }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c6b7a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Footer */
.site-footer { background: var(--zc-navy-deep); color: rgba(255,255,255,0.7); }
.site-footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.site-footer a:hover { color: #fff; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--zc-ease), transform 0.7s var(--zc-ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Mobile menu */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }

/* Gold line accent */
.gold-line { width: 60px; height: 2px; background: var(--zc-gold); }

/* Breadcrumb */
.breadcrumb { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--zc-gold-light); }

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  gap: 0;
  transform: translateY(100%);
  transition: transform 0.3s var(--zc-ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta a { flex: 1; text-align: center; padding: 1rem; font-size: 0.875rem; font-weight: 600; }
@media (min-width: 768px) { .mobile-cta { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 767px) { body.has-mobile-cta { padding-bottom: 3.5rem; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}