/* ==== Base styles ==== */
:root {
  --navy: #141f36;
  --navy-soft: #1f2a44;
  --gold: #b18e4f;
  --gold-soft: #cba862;
  --bg-light: #f6f5f2;
  --text-main: #222222;
  --text-muted: #626262;
  --max-width: 1100px;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: white;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==== Layout helpers ==== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.1rem;
  margin: 0 0 1rem;
  color: var(--navy);
  position: relative;
  padding-bottom: 0.4rem;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-intro p {
  margin: 0;
  color: var(--text-muted);
}

/* Background variations */
.section-light {
  background-color: var(--bg-light);
}

.section-medium {
  background-color: #ffffff;
}

.section-dark {
  background-color: var(--navy);
  color: #f9f9f9;
}

.section-dark h2 {
  color: #ffffff;
}

.section-dark .section-intro p {
  color: #d1d3dd;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ==== Header ==== */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(20, 31, 54, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-image {
  display: block;
  height: auto;        /* keep natural ratio */
  width: auto;         /* keep natural ratio */
  max-height: 150px;    /* tweak this number to taste: 70–90 is a good range */
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--navy);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
}

/* ==== Hero ==== */

.hero {
  background: radial-gradient(circle at top left, #223154 0, #141f36 55%, #101628 100%);
  color: white;
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  min-height: 260px;
}

.hero-text {
  max-width: 650px;
}

.hero h1 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.2rem, 3vw + 1.2rem, 3rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.hero p {
  margin: 0 0 1.8rem;
  color: #e2e5f1;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* abstract hero visual block */
.hero-visual {
  min-height: 220px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(177, 142, 79, 0.4), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(10, 15, 30, 0.95));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

  /* new: make it a content card */
  padding: 2.25rem 2.5rem;
  color: #f7f5f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.hero-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold); /* or #B18E4F */
  margin: 0 0 0.5rem;
}

.hero-card-title {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.hero-card-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.hero-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold); /* or #B18E4F */
}

.hero-card-footnote {
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
}


/* ==== Buttons ==== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

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

.btn-primary:hover {
  background-color: var(--gold-soft);
  border-color: var(--gold-soft);
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  text-decoration: none;
}

/* ==== Cards ==== */

.card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.3rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card-outline {
  background-color: #ffffff;
  border: 1px solid rgba(20, 31, 54, 0.1);
  box-shadow: none;
}

/* ==== Services formatting ==== */

.service-group-title {
  margin: 2.75rem 0 1.2rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.5rem;
  color: var(--navy);
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background-color: rgba(241, 239, 232, 0.6);
  padding: 1.5rem;
  border-radius: 16px;
}

.service-card h4 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.2rem;
  color: var(--navy);
}

.service-label {
  margin-top: 0.6rem;
  margin-bottom: 0.15rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--navy-soft);
}

.service-card p {
  font-size: 0.9rem;
}

.service-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.08rem 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid rgba(177, 142, 79, 0.8);
  color: var(--gold);
}

.service-label-important {
  margin-top: 2rem !important;  /* adjust bigger/smaller until it looks right */
}

/* ==== Approach / Steps ==== */

.section-dark .card {
  background-color: rgba(10, 16, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.steps {
  margin-top: 2rem;
}

.step {
  position: relative;
  padding-top: 2.5rem;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold-soft);
}

/* ==== About ==== */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.about-photo img {
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  max-width: 260px;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* ==== Contact form ==== */

.contact-form {
  background-color: #ffffff;
  border-radius: 12px;
  paddin
