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

/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --max-w: 1200px;

  --navy: #0a1a2e;
  --slate: #1e293b;
  --gray: #64748b;
  --light: #fafafa;
  --white: #ffffff;

  --gold: #cdb15d;
  --gold-light: #dbbc5e;

  --border: #e2e8f0;
  --shadow-soft: 0 6px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 24px 48px rgba(0,0,0,0.12);

  --hero-height: 600px;

  --card-min-width: 300px;
  --card-max-width: 360px;
  --card-height: 620px;
  --chip-width: 280px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {
  font-family: 'EB Garamond', serif;
  font-weight: 600;
  color: var(--navy);
}

h1 {
  font-size: 3.4rem;
  letter-spacing: -1px;
  line-height: 1.05;
}

h2 {
  font-size: 2.3rem;
  text-align: center;
  margin: 4rem 0 2rem;
  position: relative;
}

h2::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 1rem auto;
}

h3 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}

h4 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--gold);
}

strong {
  color: var(--navy);
  font-weight: 600;
}

em {
  font-style: italic;
  color: var(--gray);
}

p {
  margin-bottom: 1.25rem;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  z-index: 2000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: top 0.15s ease-out;
}

.skip-link:focus {
  top: 10px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header,
header {
  background: var(--navy);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-grid,
header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.logo {
  grid-column: 1;
  justify-self: start;
  color: white;
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav,
nav {
  grid-column: 2;
  justify-self: center;
}

.main-nav ul,
nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.main-nav a,
nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.main-nav a::after,
nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: 0.3s ease;
}

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

.main-nav a:hover::after,
.main-nav a.active::after,
nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.lang-switch {
  grid-column: 3;
  justify-self: end;
}

.lang-switch a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}

.lang-switch a:hover {
  color: var(--gold-light);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  background: linear-gradient(135deg, #0a1a2e 0%, #1e293b 100%);
  color: #e2e8f0;
  min-height: var(--hero-height);
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero * {
  color: inherit;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.hero .sub em {
  color: #94a3b8;
}

.hero blockquote {
  font-family: 'EB Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  margin: 2.5rem auto;
  padding: 0 2rem;
  max-width: 800px;
  line-height: 1.5;
  font-style: italic;
  border: none;
  position: relative;
}

.hero blockquote::before,
.hero blockquote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(205,177,93,0.28);
  position: absolute;
  top: -0.5rem;
}

.hero blockquote::before {
  left: 0;
}

.hero blockquote::after {
  right: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.cta {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 14px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.ctablog {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 14px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.ctablog:hover {
  background: var(--gold);
  color: var(--navy);
}

/* =========================================================
   CHIPS
   ========================================================= */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 1.5rem 0;
}

.chip {
  background: #f1f5f9;
  color: var(--slate);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  width: var(--chip-width);
  max-width: var(--chip-width);
  min-width: var(--chip-width);
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================
   HOME PILLARS
   ========================================================= */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--card-min-width), 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
  justify-content: center;
  align-items: stretch;
  padding: 0 1rem;
}

.pillar {
  background: var(--white);
  padding: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: 0.4s ease;
  width: 100%;
  max-width: var(--card-max-width);
  min-width: var(--card-min-width);
  min-height: var(--card-height);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pillar:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.pillar h3 {
  font-size: 1.67rem;
  margin: 0 0 0.75rem;
  text-align: left;
  width: 100%;
}

.pillar .tagline {
  font-weight: 600;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  text-align: left;
  line-height: 1.8;
}

.pillar .tagline span {
  display: block;
}

.pillar .text-content {
  flex-grow: 1;
  width: 100%;
  line-height: 1.7;
  text-align: center;
}

.pillar .text-content p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.pillar .cta {
  margin-top: auto;
  align-self: center;
}
.pillar .ctablog {
  margin-top: auto;
  align-self: center;
}


.mobile-pillar-cta {
  display: none;
}

/* =========================================================
   STATEMENT & START SECTION
   ========================================================= */

.statement {
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  max-width: 760px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
  border-left: 3px solid var(--gold);
  background: rgba(205,177,93,0.06);
  border-radius: 0 8px 8px 0;
}

.start-section {
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--gray);
}

.start-section h2 {
  margin-top: 0;
}

.start-section p {
  margin: 0 auto 2.5rem;
  max-width: 640px;
  font-size: 1.1rem;
  color: var(--slate);
}

/* =========================================================
   EXPERTISE SECTIONS
   ========================================================= */

.expertise-section {
  background: var(--white);
  padding: 3rem;
  margin: 3.5rem auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  max-width: 800px;
}

.expertise-section h3 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  text-align: left;
}

.expertise-section .tagline {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  text-align: left;
  line-height: 1.25;
}

.expertise-section .tagline:last-of-type {
  margin-bottom: 1.25rem;
}

.expertise-section p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.expertise-section h4 {
  margin: 2rem 0 1rem;
  font-size: 1.35rem;
}

.expertise-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.expertise-bullets li {
  margin-bottom: 1.75rem;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.expertise-bullets li::before {
  content: "→";
  color: var(--gold);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0.1em;
}

.expertise-bullets strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
  color: var(--navy);
  line-height: 1.2;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-flow {
  max-width: 800px;
  margin: 0 auto;
}

.about-flow h2 {
  font-size: 2.1rem;
  margin: 3rem 0 1.2rem;
  text-align: center;
}

.about-flow h2:first-of-type {
  margin-top: 0;
}

.about-flow h3 {
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  color: var(--gold);
  font-weight: 600;
  text-align: left;
}

.about-flow p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-flow ul {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0;
  list-style: none;
}

.about-flow ul li {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.about-flow ul li::before {
  content: "→";
  color: var(--gold);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0.1em;
}

.about-flow blockquote {
  font-family: 'EB Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  max-width: 720px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
  border-left: 3px solid var(--gold);
  background: rgba(205,177,93,0.06);
  border-radius: 0 8px 8px 0;
}

.about-flow blockquote.cta-quote {
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0 auto 0.9rem;
  padding: 0.75rem 1.25rem;
  max-width: 720px;
  color: var(--slate);
  background: rgba(10,26,46,0.03);
  border-left: 3px solid rgba(205,177,93,0.12);
  border-radius: 6px;
  font-style: normal;
  text-align: center;
}

/* =========================================================
   ENTRY PACKAGE CARDS
   ========================================================= */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin: 1rem 0;
}

/* =========================================================
   BLOG
   ========================================================= */

#blog-index {
  padding: 3rem 0;
}

.blog-sub {
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 2rem;
  line-height: 1.7;
}

.blog-post {
  max-width: 780px;
  margin: 3.5rem auto;
  background: var(--white);
  border: 1px solid #e6eef6;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(6,18,34,0.06);
  padding: 2.25rem 2.5rem;
  line-height: 1.85;
  color: var(--slate);
  font-size: 1.02rem;
}

.blog-post h1 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.08;
}

.blog-post h2 {
  font-size: 1.45rem;
  margin: 1.75rem 0 0.8rem;
}

.blog-post h3 {
  font-size: 1.2rem;
  margin: 1.25rem 0 0.6rem;
}

.blog-post p {
  margin: 0 0 1.25rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.blog-post .meta {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.blog-post .lead {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 1.35rem;
  font-weight: 500;
}

.blog-post ul,
.blog-post ol {
  margin: 0 0 1.25rem 1.45rem;
  line-height: 1.7;
}

.blog-post blockquote {
  font-family: 'EB Garamond', serif;
  color: var(--gold);
  font-size: 1.35rem;
  padding: 1rem 1.25rem;
  margin: 1.75rem auto;
  border-left: 3px solid var(--gold);
  background: rgba(205,177,93,0.06);
  border-radius: 0 8px 8px 0;
  text-align: left;
  line-height: 1.4;
}

.blog-post pre {
  background: #0f1724;
  color: #e6eef6;
  padding: 1rem;
  border-radius: 8px;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.blog-post img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.25rem auto;
  border-radius: 6px;
}

.blog-post .byline {
  margin-top: 2rem;
  border-top: 1px dashed rgba(30,41,59,0.08);
  padding-top: 1rem;
  color: var(--gray);
  font-size: 0.95rem;
}

.blog-post .tags {
  margin-top: 0.75rem;
}

.blog-post .tags a {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.25rem 0.6rem;
  background: #f3f7fb;
  color: var(--navy);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 1.25rem;
}

.contact-card {
  min-width: 200px;
  max-width: 420px;
  flex: 0 0 auto;
}

#contact-form {
  flex: 1 1 320px;
  min-width: 0;
  max-width: 760px;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--navy);
  color: #c3cbd6;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  margin-top: 2.75rem;
  border-top: 1px solid rgba(255,255,255,0.035);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  gap: 2rem;
}

.footer-company {
  justify-self: start;
}

.footer-insights {
  justify-self: end;
  text-align: right;
}

.footer-company,
.footer-insights {
  display: flex;
  flex-direction: column;
}

.footer-legal-links {
  justify-self: center;
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.82rem;
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  color: #6b7280;
  border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-company h3 {
  color: var(--gold);
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.footer-company .contact {
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
}

.footer-company a,
.footer-legal-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-company a:hover,
.footer-legal-links a:hover,
.footer-insights a:hover {
  color: var(--gold-light);
}

.footer-insights a {
  color: var(--gray);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  white-space: nowrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {
  :root {
    --chip-width: 240px;
  }

  .container {
    padding: 0 1rem;
  }

  .header-grid,
  header .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .logo,
  .main-nav,
  nav,
  .lang-switch {
    grid-column: 1;
    justify-self: center;
  }

  .main-nav ul,
  nav ul {
    justify-content: center;
    margin: 0.5rem 0;
  }

  .hero {
    min-height: 520px;
    padding: 80px 1.5rem 60px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero blockquote {
    font-size: 1.5rem;
    margin: 2.5rem auto 2.8rem;
    padding: 0 1rem;
  }

  .pillar {
    max-width: 100%;
    min-width: 280px;
    padding: 2rem;
    min-height: auto;
  }

  .expertise-section {
    padding: 2rem;
    margin: 2rem auto;
  }

  .about-flow h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
    margin: 3rem 0 1.75rem;
  }

  .hero {
    min-height: auto;
    padding: 72px 1.25rem 56px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero blockquote {
    font-size: 1.35rem;
    margin: 2rem auto;
  }

  .pillars {
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 0;
  }

  .pillar {
    padding: 1.5rem 1.25rem;
    min-height: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }

  .pillar:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }

  .pillar h3 {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
  }

  .pillar .tagline {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
  }

  .pillar .text-content {
    display: block;
    text-align: left;
  }

  .pillar .text-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: left;
  }

  .pillar .chips,
  .pillar .cta {
    display: none;
  }

  .mobile-pillar-cta {
    display: block;
    text-align: center;
    margin: 2rem 0 3rem;
  }

  .statement {
    font-size: 1.2rem;
    padding: 1.2rem 1.25rem;
    margin: 2.5rem auto;
  }

  .start-section {
    padding: 2.5rem 0 1.5rem;
  }

  .expertise-section {
    padding: 1.5rem;
  }

  .expertise-section p,
  .about-flow p,
  .blog-post p {
    text-align: left;
  }

  .blog-post {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }

  .blog-post h1 {
    font-size: 1.9rem;
  }

  .contact-row {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-card,
  #contact-form {
    max-width: 100%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer-company,
  .footer-insights,
  .footer-legal-links {
    justify-self: center;
    text-align: center;
  }

  .footer-insights {
    order: 3;
  }
}

/* =========================================================
   PRINT
   ========================================================= */

@media print {
  header,
  footer,
  .cta,
  .skip-link {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .blog-post,
  .expertise-section,
  .pillar {
    box-shadow: none;
    border: none;
  }
}