/* ========================================
   1. ROOT VARIABLES
======================================== */
:root {
    /* Brand Colors */
    --navy: #24364D;
    --blush: #D8A59A;
    --gold: #D8BC8C;

    /* Neutrals */
    --cream: #F8F7F4;
    --off-white: #F4F6F7;
    --white: #FFFFFF;

    /* Text */
    --text: #4B5563;
    --heading: #24364D;

    /* Borders */
    --border: #E8E3DD;
}

html {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* ========================================
   2. RESET & BASE STYLES
======================================== */
* {
  box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--off-white);
    line-height: 1.6;
}

/* ========================================
   3. LAYOUT
======================================== */

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

/* ========================================
   4. HEADER & NAVIGATION
======================================== */

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

nav a:hover {
    color: var(--navy);
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 400px;
    height: auto;
}
nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .2px;
}

.hero {
  background: linear-gradient(
      135deg,
      #f8f9fa 0%,
      #eef4f2 100%
  );
  padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
}

.hero-text {
  font-size: 1.25rem;
  max-width: none;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.6rem, 5vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 750px;
    margin-bottom: 24px;
}

/* ========================================
   5. TYPOGRAPHY
======================================== */

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  margin: 12px 0 24px;
  color: var(--navy);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--navy);
  margin-top: 0;
}

h3 {
  color: var(--navy);
}

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

.button {
    display: inline-block;
    margin-top: 24px;
    background: navy;
    color: var(--white);
    padding: 18px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button:hover {
    background: #2d4663;
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero-card,
.card,
.blog-list article {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.section {
  padding: 80px 0;
}

.muted {
  background: var(--cream);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}
/* ========================================
   9. ABOUT
======================================== */

#about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

#about {
    padding: 120px 0;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

#about .eyebrow {
    color: var(--blush);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
/* ========================================
   10. CONTACT
======================================== */
.contact {
  text-align: center;
  background: var(--navy);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact .button {
  background: var(--blush);
}
/* ========================================
   11. FOOTER
======================================== */
.footer {
    padding: 50px 0;
    background: #16212d;
    color: var(--white);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    font-weight: 700;
    margin: 0;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
}

.footer-tagline,
.footer-copy {
    margin: 0;
    opacity: 0.85;
}

.footer-nav {
    display: flex;
    gap: 36px;
    margin: 8px 0;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer-nav a:hover {
    color: var(--blush);
    opacity: 1;
}

/* ========================================
   7. PROBLEM SECTION
======================================== */
.problem-section p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
}
.problem-section {
    padding: 100px 0;
    background: var(--white);
}

.problem-section .container {
    max-width: 900px;
    text-align: center;
}

.problem-section .eyebrow {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.problem-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 30px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.problem-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
}
.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 45px;
}

.problem-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    min-height: 220px;

    transition: all .3s ease;
 
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

.problem-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.problem-card p {
    margin: 0;
    color: #5b6470;
    line-height: 1.7;
}

/* ========================================
   6. SERVICES
======================================== */

.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-section .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5b6470;
}

/* ========================================
   12. MEDIA QUERIES
======================================== */
@media (max-width: 800px) {
.hero-grid,
.two-column,
.cards,
.blog-list,
.problem-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.problem-card,
.card,
.blog-list article {
    padding: 24px;
}

.button {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.logo img {
    width: 220px;
}
/* Mobile Navigation */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.nav {
    flex-direction: column;
    align-items: center;
}
/* Mobile Hero */
  .hero {
    padding: 120px 0;
  }
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 520px;
    color: #4b5563;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;

    border: 8px solid white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);

    transition: all .3s ease;

}

.hero-grid {
    text-align: center;
    justify-items: center;
    gap: 36px;
}

.hero-text {
    order: 1;
}

.hero-image {
    order: 2;
    padding-top: 30px;
}

.hero h1,
.hero p {
    max-width: 100%;
}

.hero-image img {
    max-width: 320px;
}

.hero-image img:hover {
    transform: scale(1.03);
}
/* Mobile Cards */

/* Mobile Footer */