:root {
  --navy: #101b2d;
  --navy-soft: #17263d;
  --cream: #fff8ec;
  --cream-deep: #f5ead8;
  --white: #ffffff;
  --gold: #caa565;
  --gold-soft: #ead7ad;
  --copper: #9a6248;
  --ink-muted: #647085;
  --shadow: 0 24px 70px rgba(16, 27, 45, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(202, 165, 101, 0.18), transparent 31rem),
    linear-gradient(180deg, var(--cream) 0%, #fffdf8 45%, var(--cream-deep) 100%);
}

a {
  color: inherit;
}

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

/* Page shell and header */
.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  background-image:
    linear-gradient(rgba(16, 27, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 27, 45, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 68%);
  pointer-events: none;
  position: absolute;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 22px clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 3;
}

.brand-mark {
  align-items: center;
  background: rgba(16, 27, 45, 0.96);
  border: 1px solid rgba(202, 165, 101, 0.32);
  border-radius: var(--radius);
  display: inline-flex;
  min-height: 54px;
  padding: 8px 12px;
  text-decoration: none;
  width: 172px;
}

.brand-mark img {
  width: 100%;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
}

.nav-links a {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--copper);
}

/* Hero section */
.hero-section {
  align-items: center;
  display: grid;
  min-height: calc(100vh - 98px);
  padding: clamp(52px, 8vw, 98px) clamp(20px, 5vw, 56px) clamp(58px, 9vw, 112px);
  position: relative;
}

.hero-content {
  margin: 0 auto;
  max-width: 860px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.status-badge,
.section-label {
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.status-badge {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(202, 165, 101, 0.42);
  border-radius: 999px;
  display: inline-flex;
  padding: 8px 14px;
}

.hero-logo {
  background: var(--navy);
  border: 1px solid rgba(202, 165, 101, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto 28px;
  max-width: min(420px, 88vw);
  padding: clamp(18px, 4vw, 34px);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  color: var(--navy);
  font-size: clamp(4rem, 11vw, 8.6rem);
  font-weight: 700;
}

.hero-kicker {
  color: var(--copper);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  margin: 12px 0 18px;
}

.hero-copy {
  color: #435069;
  font-size: clamp(1rem, 1.65vw, 1.12rem);
  margin: 0 auto 30px;
  max-width: 720px;
}

.primary-button {
  align-items: center;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.hero-art {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.orb {
  border-radius: 999px;
  position: absolute;
}

.orb-one {
  background: rgba(202, 165, 101, 0.17);
  height: 270px;
  right: -70px;
  top: 14%;
  width: 270px;
}

.orb-two {
  background: rgba(154, 98, 72, 0.1);
  bottom: 16%;
  height: 210px;
  left: -80px;
  width: 210px;
}

.line {
  border: 1px solid rgba(202, 165, 101, 0.45);
  border-radius: 999px;
  position: absolute;
  transform: rotate(-14deg);
}

.line-one {
  height: 170px;
  right: 12%;
  top: 24%;
  width: 360px;
}

.line-two {
  bottom: 15%;
  height: 110px;
  left: 10%;
  width: 250px;
}

/* Shared sections */
.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(66px, 10vw, 110px) clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 2;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 700px;
}

.section-heading h2,
.statement-inner h2,
.contact-panel h2 {
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  font-weight: 700;
}

/* Services preview */
.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(202, 165, 101, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 27, 45, 0.08);
  padding: clamp(24px, 4vw, 34px);
}

.service-icon {
  align-items: center;
  background: rgba(202, 165, 101, 0.13);
  border: 1px solid rgba(202, 165, 101, 0.36);
  border-radius: var(--radius);
  color: var(--copper);
  display: flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 24px;
  width: 54px;
}

.service-icon svg {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 32px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #4f5b70;
  margin: 0;
}

/* Brand statement */
.statement-section {
  background:
    linear-gradient(135deg, rgba(16, 27, 45, 0.96), rgba(23, 38, 61, 0.97)),
    radial-gradient(circle at 15% 20%, rgba(202, 165, 101, 0.3), transparent 22rem);
  color: var(--cream);
  padding: clamp(74px, 10vw, 118px) clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 2;
}

.statement-section::before {
  border: 1px solid rgba(234, 215, 173, 0.24);
  border-radius: 50%;
  content: "";
  height: 300px;
  position: absolute;
  right: -120px;
  top: -90px;
  width: 300px;
}

.statement-inner {
  margin: 0 auto;
  max-width: 850px;
  position: relative;
  text-align: center;
}

.statement-inner h2 {
  color: var(--cream);
}

.statement-inner p:last-child {
  color: rgba(255, 248, 236, 0.82);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  margin: 20px auto 0;
  max-width: 720px;
}

/* Contact */
.contact-section {
  padding-bottom: clamp(70px, 11vw, 128px);
}

.contact-panel {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(202, 165, 101, 0.36);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(32px, 6vw, 58px);
  text-align: center;
}

.contact-panel p {
  color: #4f5b70;
  margin: 16px auto 22px;
  max-width: 580px;
}

.email-link {
  color: var(--copper);
  display: block;
  font-weight: 800;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--navy);
}

/* Footer */
.site-footer {
  color: #59657b;
  font-size: 0.9rem;
  padding: 28px 20px 38px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .line-one,
  .line-two {
    opacity: 0.45;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    padding-top: 18px;
  }

  .brand-mark {
    width: 142px;
  }

  .nav-links {
    gap: 14px;
    padding-top: 14px;
  }

  .nav-links a {
    font-size: 0.74rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-logo {
    max-width: min(330px, 92vw);
  }

  .service-card,
  .contact-panel {
    padding: 24px;
  }
}
