:root {
  --navy: #0f2744;
  --navy-deep: #0a1c33;
  --navy-soft: #e8eef5;
  --gold: #c4a052;
  --gold-dark: #a8843a;
  --gold-soft: #f7f1e4;
  --white: #ffffff;
  --text: #2c3340;
  --muted: #5c6573;
  --border: #e4e7ec;
  --bg-soft: #f7f8fa;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.center,
.center {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin-top: 0.6rem;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  margin-top: 0.6rem;
}

h3 {
  font-size: 1.25rem;
}

.muted {
  color: var(--muted);
  margin-top: 1rem;
}

.intro {
  max-width: 540px;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(15, 39, 68, 0.18);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: 0.25s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(15, 39, 68, 0.06);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  max-width: min(58%, 340px);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.brand:hover .brand-name {
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  margin-inline: auto;
  transition: 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 8rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(196, 160, 82, 0.12), transparent 50%),
    linear-gradient(180deg, var(--navy-soft) 0%, var(--white) 70%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(to right, #d9dee7 1px, transparent 1px),
    linear-gradient(to bottom, #d9dee7 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.tagline {
  margin-top: 0.55rem;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.lead {
  margin-top: 1.1rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-photo-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-photo {
  width: min(320px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 14px 40px rgba(15, 39, 68, 0.16);
  position: relative;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 160, 82, 0.35), transparent 60%);
  z-index: -1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* About */
.about {
  background: var(--white);
}

/* Services */
.services {
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 160, 82, 0.45);
  box-shadow: 0 12px 28px rgba(15, 39, 68, 0.08);
}

.service-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
  transition: 0.25s ease;
}

.service-card:hover .icon {
  background: var(--navy);
  color: var(--gold);
}

.service-card .icon svg {
  width: 20px;
  height: 20px;
}

.service-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.contact-info h3 {
  font-size: 1.6rem;
}

.contact-info .sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.contact-info li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
}

.contact-info p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.contact-info a:hover {
  color: var(--gold-dark);
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 160, 82, 0.18);
}

.form-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
}

.form-status.ok {
  color: var(--navy);
}

.form-status.err {
  color: #b42318;
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.footer-tag {
  margin-top: 0.65rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-text {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact p {
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.footer-heading {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  font-size: 0.92rem;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-photo-wrap {
    justify-content: center;
    order: -1;
  }

  .hero-content {
    text-align: center;
  }

  .lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.8rem 0.4rem;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: var(--navy-soft);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 7rem;
  }

  .brand {
    max-width: 70%;
  }

  .brand-name {
    font-size: 0.95rem;
  }
}
