/* =========================================
   RESIDENCE RECAP
   Main Website Styles
   Navy + Gold Brand System
   ========================================= */

:root {
  --navy: #0B1F33;
  --dark-navy: #071521;
  --navy-light: #153A5B;

  --black: #0C0C0D;
  --charcoal: #243442;

  --gold: #D4AF37;
  --gold-soft: #E0C266;

  --cream: #F8F7F3;
  --white: #FFFFFF;

  --gray: #65717D;
  --light-gray: #E8EBEE;

  --max-width: 1200px;
}


/* =========================
   BASIC RESET
   ========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}


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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}


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

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  padding: 25px 0;

  z-index: 10;

  color: var(--white);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  color: var(--gold);

  font-size: 2rem;
  font-weight: 900;

  letter-spacing: -0.12em;
}

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1.05;

  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.brand-text span {
  color: var(--white);
}

.brand-text strong {
  color: var(--gold);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.88);

  transition:
    color 0.2s ease;
}

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

.contact-link {
  padding: 10px 20px;

  border: 1px solid var(--gold);

  font-size: 0.85rem;

  color: var(--white);

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

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


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

.hero {
  min-height: 92vh;

  position: relative;

  display: flex;
  align-items: center;

  background:
  linear-gradient(
    90deg,
    rgba(7, 21, 33, 0.96) 0%,
    rgba(11, 31, 51, 0.86) 42%,
    rgba(11, 31, 51, 0.55) 70%,
    rgba(11, 31, 51, 0.28) 100%
  ),
  url("images/hero-home.jpg");


  color: var(--white);
  
  background-size: 110%;

  background-position: 70% center;

background-repeat: no-repeat;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 80% 45%,
      rgba(212, 175, 55, 0.18),
      transparent 32%
    );

  pointer-events: none;
}

.hero::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 100px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(7, 21, 33, 0.25)
    );

  pointer-events: none;
}

.hero-content {
  position: relative;

  z-index: 2;

  padding-top: 80px;
  padding-left: 40px;
  padding-right: 20px;
}

.hero h1 {
  max-width: 900px;

  font-size: clamp(4rem, 9vw, 7.5rem);

  line-height: 0.9;

  letter-spacing: -0.055em;

  color: var(--white);
}

.hero h1 span {
  display: block;

  color: var(--gold);
}

.hero-description {
  max-width: 600px;

  margin-top: 30px;

  font-size: 1.15rem;

  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;

  gap: 15px;

  margin-top: 38px;
}


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

.button {
  display: inline-block;

  padding: 15px 27px;

  font-size: 0.9rem;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);

  color: var(--navy);
}

.button-primary:hover {
  background: var(--gold-soft);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);

  color: var(--white);
}

.button-secondary:hover {
  background: var(--white);

  color: var(--navy);

  border-color: var(--white);
}


/* =========================
   EXPLORE
   ========================= */

.explore {
  padding: 115px 0;

  background: var(--white);
}

.section-heading {
  max-width: 680px;

  margin-bottom: 55px;
}

.section-heading h2,
.featured h2,
.about h2,
.contact h2 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);

  line-height: 1.05;

  letter-spacing: -0.04em;

  margin-bottom: 20px;

  color: var(--navy);
}

.section-heading > p:last-child {
  color: var(--gray);

  font-size: 1.05rem;
}

.cards {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.card {
  min-height: 330px;

  padding: 40px;

  border: 1px solid var(--light-gray);

  background: var(--white);

  display: flex;
  flex-direction: column;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-7px);

  border-color: var(--gold);

  box-shadow:
    0 25px 50px rgba(11, 31, 51, 0.1);
}

.icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 35px;

  border: 1px solid var(--gold);

  color: var(--gold);

  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 15px;

  font-size: 1.4rem;

  color: var(--navy);
}

.card p {
  color: var(--gray);

  margin-bottom: 25px;
}

.card a {
  margin-top: auto;

  color: var(--gold);

  font-weight: 700;
}

.card a:hover {
  color: var(--navy);
}


/* =========================
   FEATURED
   ========================= */

.featured {
  padding: 115px 0;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      var(--dark-navy)
    );

  color: var(--white);
}

.featured-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.2fr;

  align-items: center;

  gap: 75px;
}

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

.featured p:not(.eyebrow) {
  max-width: 500px;

  color: rgba(255, 255, 255, 0.7);

  margin-bottom: 30px;
}

.featured-image {
  min-height: 430px;

  display: grid;
  place-items: center;

  border:
    1px solid rgba(212, 175, 55, 0.3);

  background:
    radial-gradient(
      circle at center,
      var(--navy-light),
      var(--dark-navy) 68%
    );
}

.play-button {
  width: 82px;
  height: 82px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--gold);

  color: var(--navy);

  font-size: 1.4rem;

  padding-left: 4px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25);
}


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

.about {
  padding: 120px 0;

  background: var(--cream);

  text-align: center;
}

.about .narrow {
  margin: 0 auto;
}

.about p:last-child {
  color: var(--gray);

  font-size: 1.1rem;
}


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

.contact {
  padding: 100px 0;

  background: var(--white);
}

.contact-box {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 50px;
}

.contact h2 {
  margin-bottom: 10px;
}

.contact p {
  color: var(--gray);
}


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

footer {
  padding: 60px 0;

  background: var(--dark-navy);

  color: var(--white);
}

.footer-content {
  display: flex;

  justify-content: space-between;

  gap: 40px;
}

.footer-content strong {
  letter-spacing: 0.15em;

  color: var(--white);
}

.footer-content p {
  margin-top: 6px;

  color: var(--gold);
}

.social-links {
  display: flex;

  gap: 25px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.65);
}

.social-links a:hover {
  color: var(--gold);
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 800px) {

  nav {
    display: none;
  }

  .contact-link {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
    line-height: 0.92;
  }
  .hero-content {
    padding-top: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-main-image {
      min-height: 260px;
  }
  .featured-story-image{
    min-height: 180px;
  }
  .featured-image {
    min-height: 300px;
  }

  .contact-box {
    flex-direction: column;

    align-items: flex-start;
  }

  .footer-content {
    flex-direction: column;
  }

  .social-links {
    flex-wrap: wrap;
  }
  .site-logo {
    width: 120px;
  }
}


.site-logo {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* =========================
   FEATURED EDITORIAL SECTION
========================= */

.featured-section {
    background: #ffffff;
    padding: 90px 40px;
}

.featured-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-header {
    margin-bottom: 36px;
}

.section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.featured-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    color: var(--navy);
    margin: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 28px;
}

.featured-main,
.featured-story {
    background: #ffffff;
}

.featured-main-image {
    min-height: 460px;
    background:
        linear-gradient(
            180deg,
            rgba(7, 21, 33, 0.02),
            rgba(7, 21, 33, 0.18)
        ),
        url("images/home-tours.png");
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.featured-main-content {
    padding-top: 20px;
}

.content-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 10px;
}

.featured-main h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--navy);
    margin: 0 0 12px;
}

.featured-main p,
.featured-story p {
    color: var(--gray);
    line-height: 1.6;
}

.featured-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.featured-story-image {
    min-height: 190px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
}

.market-image {
    background-image: url("images/market-update.png");
}

.advice-image {
    background-image: url("images/real-estate-advice.png");
}
    .tours-image {
    background-image: url("images/home-tours.png");
}

.local-image {
    background-image: url("images/tri-cities-local.jpg");
}


.featured-story-content {
    padding-top: 14px;
}

.featured-story h3 {
    font-size: 1.45rem;
    color: var(--navy);
    margin: 0 0 8px;
}

@media (max-width: 800px) {
    .featured-section {
        padding: 60px 24px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-main-image {
        min-height: 380px;
    }

    .featured-story-image {
        min-height: 210px;
    }
}
/* =========================
   CATEGORY BANDS
========================= */

.category-section {
    background: #f8f7f3;
    padding: 90px 40px;
}

.category-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid rgba(11, 31, 51, 0.12);
}

.category-row.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.category-row.reverse .category-image {
    order: 2;
}

.category-row.reverse .category-content {
    order: 1;
}

.category-image {
    min-height: 320px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.featured-main-image {
    background-image: url("images/home-tours.png");
}

.market-band-image {
    background-image: url("images/market-update.png");
}

.advice-band-image {
    background-image: url("images/real-estate-advice.png");
}

.local-band-image {
    background-image: url("images/tri-cities-local.png");
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 9;
    width: 100%;
    min-height: 0;
    border-radius: 8px;
}

.category-content h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    color: var(--navy);
    margin: 8px 0 18px;
}

.category-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 520px;
}

@media (max-width: 800px) {
    .category-section {
        padding: 60px 24px;
    }

    .category-row,
    .category-row.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .category-row.reverse .category-image,
    .category-row.reverse .category-content {
        order: initial;
    }

    .category-image {
        min-height: 240px;
    }
}
/* =========================
   ABOUT + CONTACT
========================= */

.about-section {
    background: #ffffff;
    padding: 80px 40px 100px;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.about-image {
    background-image: url("images/about-residence-recap.png");
    background-size: 115%;
    background-position: 10% center;
    background-repeat: no-repeat;
    min-height: 320px;
    border-radius: 8px;
    width: 100%;
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.98;
    color: var(--navy);
    margin: 8px 0 22px;
}

.about-content p {
    max-width: 700px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-section {
    background: var(--navy);
    padding: 72px 40px;
}

.contact-box {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-box h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin: 8px 0 14px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    line-height: 1.7;
}

.contact-button {
    display: inline-block;
    padding: 18px 24px;
    border: 1px solid var(--gold);
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}

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

@media (max-width: 800px) {
    .about-section {
        padding: 70px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-image{
      min-height: 240px;
    }
    .contact-section {
        padding: 60px 24px;
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }
}
html {
    scroll-behavior: smooth;
}

#about {
    scroll-margin-top: 100px;
}
/* =========================
   FOOTER
========================= */

.site-footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 40px 28px;
    border-top: 1px solid rgba(255,255, 255, 0.08);
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 70px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 55px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

@media (max-width: 800px) {
    .site-footer {
        padding: 55px 24px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}
