/* style.css */
:root {
    --cream: #f6f0e4;
    --cream-deep: #ebe0ca;
    --blue: #1f4c8f;
    --blue-dark: #15345f;
    --gold: #c69a3a;
    --gold-soft: #e1c27a;
    --ink: #1e1c19;
    --muted: #635b4f;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(20, 30, 45, 0.12);
    --shadow-hover: 0 24px 65px rgba(20, 30, 45, 0.18);
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1220px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background:
      radial-gradient(circle at top left, rgba(198, 154, 58, 0.08), transparent 30%),
      linear-gradient(to bottom, #f9f5ec 0%, #f4ecdc 100%);
    line-height: 1.6;
  }
  
  img {
    display: block;
    width: 100%;
  }
  
  .top-band {
    height: 14px;
    background:
      linear-gradient(45deg, var(--blue) 25%, var(--white) 25%, var(--white) 50%, var(--blue) 50%, var(--blue) 75%, var(--white) 75%, var(--white) 100%);
    background-size: 30px 30px;
    border-bottom: 2px solid rgba(21, 52, 95, 0.15);
  }
  
  .hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 72px 24px 52px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
  
  .hero-inner {
    position: relative;
  }
  
  .kicker,
  .section-kicker,
  .card-tag {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
  }
  
  .kicker {
    color: var(--blue);
    margin-bottom: 14px;
  }
  
  .hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 7vw, 6.6rem);
    line-height: 0.95;
    color: var(--blue-dark);
    text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  }
  
  .hero-subtitle {
    margin: 18px 0 12px;
    font-size: clamp(1.3rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    max-width: 16ch;
  }
  
  .hero-copy {
    max-width: 58ch;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
  }
  
  .hero-button {
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 26px rgba(31, 76, 143, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  }
  
  .hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(31, 76, 143, 0.28);
  }
  
  .hero-image-wrap {
    position: relative;
  }
  
  .hero-image-wrap img {
    border-radius: 30px;
    border: 8px solid rgba(21, 52, 95, 0.95);
    box-shadow: var(--shadow);
    object-fit: cover;
    min-height: 420px;
  }
  
  .hero-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    background: rgba(246, 240, 228, 0.95);
    color: var(--blue-dark);
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(21, 52, 95, 0.12);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }
  
  .section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 72px 24px;
  }
  
  .section-alt {
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(235,224,202,0.45));
    border-top: 1px solid rgba(21, 52, 95, 0.08);
    border-bottom: 1px solid rgba(21, 52, 95, 0.08);
    border-radius: 32px;
  }
  
  .section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
  }
  
  .section-kicker {
    color: var(--blue);
    margin-bottom: 10px;
  }
  
  .section h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    color: var(--blue-dark);
  }
  
  .section-copy {
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 58ch;
  }
  
  .grid {
    display: grid;
    gap: 28px;
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(21, 52, 95, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(4px);
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
  }
  
  .image-frame {
    padding: 14px 14px 0;
  }
  
  .image-frame img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 4px solid var(--blue-dark);
    background: #ddd;
  }
  
  .card-content {
    padding: 18px 20px 22px;
  }
  
  .card-tag {
    display: inline-block;
    color: var(--gold);
    margin-bottom: 8px;
  }
  
  .card h3 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1.05;
    color: var(--blue-dark);
  }
  
  .card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
  }
  
  .featured-card {
    position: relative;
  }
  
  .featured-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid var(--gold);
    pointer-events: none;
  }
  
  .wide-card .image-frame img {
    aspect-ratio: 16 / 10;
  }
  
  .footer {
    margin-top: 48px;
    background:
      linear-gradient(180deg, var(--blue-dark), #0f2748);
    color: rgba(255,255,255,0.9);
    padding: 34px 24px 42px;
    text-align: center;
  }
  
  .footer-brand {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--gold-soft);
  }
  
  .footer p:last-child {
    margin: 0;
  }
  
  @media (max-width: 1080px) {
    .hero {
      grid-template-columns: 1fr;
      padding-top: 56px;
    }
  
    .hero-inner {
      text-align: center;
    }
  
    .hero-subtitle,
    .hero-copy {
      max-width: none;
    }
  
    .grid-4,
    .grid-3 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 700px) {
    .hero {
      padding: 44px 18px 36px;
      gap: 28px;
    }
  
    .section {
      padding: 54px 18px;
    }
  
    .grid-4,
    .grid-3,
    .grid-2 {
      grid-template-columns: 1fr;
    }
  
    .hero-image-wrap img {
      min-height: auto;
    }
  
    .hero-badge {
      position: static;
      display: inline-block;
      margin-top: 14px;
    }
  
    .card h3 {
      font-size: 1.75rem;
    }
  }