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

body {
  background: #f6f0e8;
  color: #111;
  font-family: Arial, sans-serif;
}

.site-header {
  height: 94px;
  padding: 0 7%;
  background: #f6f0e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #111;
  text-decoration: none;
  line-height: 1;
}

.logo span {
  display: block;
  font-family: Georgia, serif;
  font-size: 32px;
  letter-spacing: 1px;
}

.logo small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar a {
  color: #111;
  text-decoration: none;
  font-size: 17px;
}

.nav-item {
  position: relative;
  padding: 36px 0;
}

.dropdown {
  position: absolute;
  top: 92px;
  left: -25px;
  width: 280px;
  background: #f6f0e8;
  padding: 22px 25px;
  display: none;
  z-index: 20;
}

.dropdown a {
  display: block;
  font-family: Georgia, serif;
  font-size: 23px;
  margin-bottom: 16px;
}

.nav-item:hover .dropdown {
  display: block;
}

.header-btn,
.hero-btn {
  background: #111;
  color: white;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
}

.hero {
  min-height: calc(100vh - 94px);
  padding: 0 7%;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("images/hero.jpg") center/cover no-repeat;
  color: white;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 0.95;
  max-width: 700px;
  margin-bottom: 35px;
}

.property-search {
  background: #111;
  padding: 0 7%;
  position: relative;
  z-index: 5;
}

.search-card {
  background: #fff;
  margin: -55px auto 0;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: 2.8fr 1fr 0.8fr 0.8fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #777;
}

.search-field input,
.search-field select {
  height: 54px;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 0 15px;
  font-size: 15px;
  color: #111;
  background: #fafafa;
  outline: none;
}

.search-field input:focus,
.search-field select:focus {
  border-color: #c8a45d;
}

.search-btn {
  height: 50px;
  border: none;
  border-radius: 12px;
  padding: 0 28px;
  background: #c8a45d;
  color: #111;
  font-weight: bold;
  cursor: pointer;
}

.search-btn:hover {
  background: #b89245;
}

.stats {
  background: #111;
  color: #f6f0e8;
  padding: 90px 7% 75px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats div {
    padding: 0 35%;
    border-left: 1px solid rgba(200, 164, 93, 0.35);
}

.stats div:first-child {
    border-left: none;
    padding-left: 0;
}

.stats h3 {
  font-family: Georgia, serif;
  font-size: 44px;
  margin-bottom: 10px;
}

.stats p {
  font-size: 16px;
  opacity: 0.82;
}

.about-section {
  background: #f6f0e8;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.about-content {
  max-width: 620px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: #9a7a35;
  margin-bottom: 22px;
}

.about-content h2 {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 28px;
  color: #111;
}

.about-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.text-link {
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #111;
  padding-bottom: 5px;
}

.process-section {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
}

.process-heading {
  max-width: 780px;
  margin-bottom: 70px;
}

.process-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.process-list {
  border-top: 1px solid rgba(246, 240, 232, 0.35);
}

.process-item {
  display: grid;
  grid-template-columns: 120px 1fr 1.5fr;
  gap: 45px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(246, 240, 232, 0.35);
  align-items: start;
}

.process-item span {
  color: #c8a45d;
  font-size: 18px;
}

.process-item h3 {
  font-family: Georgia, serif;
  font-size: 32px;
}

.process-item p {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.82;
}

.featured-section {
  background: #f6f0e8;
  padding: 110px 7%;
}

.featured-heading {
  max-width: 780px;
  margin-bottom: 55px;
}

.featured-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  color: #111;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-card {
  background: #fff;
  overflow: hidden;
}

.property-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.property-info {
  padding: 28px;
}

.property-price {
  color: #9a7a35;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.property-info h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  margin-bottom: 12px;
  color: #111;
}

.property-info p {
  color: #333;
  margin-bottom: 10px;
}

.property-info span {
  color: #777;
  font-size: 15px;
}

.featured-action {
  margin-top: 45px;
}

.dark-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}

.services-section {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
}

.services-heading {
  max-width: 820px;
  margin-bottom: 60px;
}

.services-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.services-heading p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.82;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border: 1px solid rgba(246, 240, 232, 0.25);
  padding: 38px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card span {
  color: #c8a45d;
  font-size: 16px;
  margin-bottom: 30px;
}

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 34px;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.82;
  margin-bottom: 35px;
}

.service-card a {
  color: #f6f0e8;
  text-decoration: none;
  border-bottom: 1px solid #c8a45d;
  width: fit-content;
  padding-bottom: 6px;
  font-weight: bold;
}

.service-card:hover {
  background: rgba(246, 240, 232, 0.05);
}

.testimonials-section {
  background: #f6f0e8;
  padding: 110px 7%;
}

.testimonials-heading {
  max-width: 850px;
  margin-bottom: 60px;
}

.testimonials-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  color: #111;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  padding: 38px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid #c8a45d;
}

.testimonial-card p {
  font-size: 19px;
  line-height: 1.7;
  color: #333;
}

.client-info {
  margin-top: 35px;
}

.client-info strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 22px;
  color: #111;
  margin-bottom: 6px;
}

.client-info span {
  color: #777;
  font-size: 15px;
}

.contact-cta {
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("images/contact.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 130px 7%;
}

.contact-content {
  max-width: 760px;
}

.contact-content h2 {
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.contact-content p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.88;
  margin-bottom: 35px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.light-btn {
  display: inline-block;
  background: #c8a45d;
  color: #111;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}

.outline-btn {
  display: inline-block;
  color: #f6f0e8;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid rgba(246, 240, 232, 0.6);
}

.site-footer {
  background: #111;
  color: #f6f0e8;
  padding: 75px 7% 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(246, 240, 232, 0.2);
}

.footer-logo {
  color: #f6f0e8;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo span {
  display: block;
  font-family: Georgia, serif;
  font-size: 32px;
}

.footer-logo small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.footer-top p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.75;
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links h4 {
  font-family: Georgia, serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-links a {
  color: #f6f0e8;
  text-decoration: none;
  opacity: 0.75;
  font-size: 15px;
}

.footer-links a:hover {
  opacity: 1;
  color: #c8a45d;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #111;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding: 22px 6%;
    position: relative;
    flex-wrap: wrap;
  }

  .logo span {
    font-size: 28px;
  }

  .navbar {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, 0.15);
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    font-size: 18px;
    padding: 12px 0;
  }

  .nav-item {
    width: 100%;
    padding: 0;
  }

  .dropdown {
    position: static;
    display: none;
    width: 100%;
    padding: 10px 0 15px 18px;
    background: transparent;
  }

  .nav-item:hover .dropdown {
    display: block;
  }

  .dropdown a {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .header-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    min-height: 80vh;
    padding: 80px 6%;
  }

  .hero h1 {
    font-size: 46px;
    max-width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .search-card {
    margin: -35px auto 0;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .search-btn {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 75px 6% 55px;
  }

  .stats div {
    padding: 25px 20px;
    border-left: none;
    border-top: 1px solid rgba(200, 164, 93, 0.35);
  }

  .stats div:first-child {
    border-top: none;
    padding-left: 20px;
  }

  .stats div:nth-child(2) {
    border-top: none;
  }

  .about-section,
  .property-grid,
  .services-grid,
  .testimonial-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-section,
  .process-section,
  .featured-section,
  .services-section,
  .testimonials-section {
    padding: 85px 6%;
  }

  .about-image img {
    height: 420px;
  }

  .about-content h2,
  .process-heading h2,
  .featured-heading h2,
  .services-heading h2,
  .testimonials-heading h2,
  .contact-content h2 {
    font-size: 40px;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .property-card img {
    height: 300px;
  }

  .contact-cta {
    padding: 95px 6%;
  }

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

@media (max-width: 520px) {
  .hero h1 {
    font-size: 38px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
  }

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

  .stats div:nth-child(2) {
    border-top: 1px solid rgba(200, 164, 93, 0.35);
  }

  .stats h3 {
    font-size: 38px;
  }

  .about-content h2,
  .process-heading h2,
  .featured-heading h2,
  .services-heading h2,
  .testimonials-heading h2,
  .contact-content h2 {
    font-size: 34px;
  }

  .service-card,
  .testimonial-card {
    padding: 28px;
  }
}

.meet-hero {
  background: #111;
  color: #f6f0e8;
  padding: 130px 7% 120px;
}

.meet-hero-text {
  max-width: 900px;
}

.meet-hero h1 {
  font-family: Georgia, serif;
  font-size: 68px;
  line-height: 0.98;
  margin-bottom: 28px;
}

.meet-hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.86;
}

.meet-intro {
  background: #111;
  color: #f6f0e8;
  padding: 0 7% 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.meet-intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
}

.meet-intro-images img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.meet-intro-images img:nth-child(2) {
  height: 620px;
}

.meet-intro-content h2 {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 26px;
}

.meet-intro-content p {
  font-size: 19px;
  line-height: 1.75;
  opacity: 0.84;
  margin-bottom: 24px;
}

.team-members {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
}

.team-members-heading {
  max-width: 850px;
  margin-bottom: 75px;
}

.team-members-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.team-member {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 120px;
}

.team-member:last-child {
  margin-bottom: 0;
}

.team-member-reverse .team-member-photo {
  order: 2;
}

.team-member-reverse .team-member-info {
  order: 1;
}

.team-member-photo img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

.team-member-info h3 {
  font-family: Georgia, serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.team-member-info > span {
  display: block;
  color: #9a7a35;
  font-size: 18px;
  margin-bottom: 26px;
}

.team-member-info > p {
  font-size: 19px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 38px;
}

.team-member .accordion {
  border-top: 1px solid rgba(17, 17, 17, 0.25);
}

.team-member .accordion-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

.team-member .accordion-header {
  color: #111;
}

.team-member .accordion-body {
  color: #333;
}

.accordion {
  border-top: 1px solid rgba(246, 240, 232, 0.35);
}

.accordion-item {
  border-bottom: 1px solid rgba(246, 240, 232, 0.35);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: #f6f0e8;
  padding: 24px 0;
  font-size: 19px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-header span {
  font-size: 30px;
  color: #c8a45d;
}

.accordion-body {
  display: none;
  padding: 0 0 28px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.86;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-body ul {
  padding-left: 22px;
}

.accordion-body li {
  margin-bottom: 12px;
}

.meet-cta {
  background:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)),
    url("images/team-cta.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 130px 7%;
  text-align: center;
}

.meet-cta h2 {
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1.05;
  max-width: 760px;
  margin: 0 auto 24px;
}

.meet-cta p {
  font-size: 19px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 35px;
  opacity: 0.86;
}

@media (max-width: 900px) {
  .meet-hero,
  .meet-intro,
  .team-members,
  .meet-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .meet-hero {
    padding-top: 90px;
    padding-bottom: 85px;
  }

  .meet-intro {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .meet-intro-images {
    grid-template-columns: 1fr;
  }

  .meet-intro-images img,
  .meet-intro-images img:nth-child(2) {
    height: 430px;
  }

  .team-member,
  .team-member-reverse {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .team-member-reverse .team-member-photo,
  .team-member-reverse .team-member-info {
    order: initial;
  }

  .team-member-photo img {
    height: 430px;
  }

  .meet-hero h1,
  .meet-intro-content h2,
  .team-members-heading h2,
  .meet-cta h2 {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .meet-hero h1,
  .meet-intro-content h2,
  .team-members-heading h2,
  .meet-cta h2 {
    font-size: 34px;
  }

  .team-member-info h3 {
    font-size: 32px;
  }
}

.buyer-hero {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: start;
}

.buyer-hero-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

.buyer-hero-content h1 {
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1.02;
  margin-bottom: 28px;
}

.buyer-hero-content > p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 45px;
}

.buyer-accordion {
  margin-top: 20px;
}

.buyer-guide-section {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
}

.buyer-guide-section h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  max-width: 760px;
  margin-bottom: 60px;
}

.buyer-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.buyer-guide-card {
  background: #fff;
  padding: 38px;
  min-height: 320px;
}

.buyer-guide-card span {
  color: #9a7a35;
  display: block;
  margin-bottom: 30px;
}

.buyer-guide-card h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  margin-bottom: 18px;
}

.buyer-guide-card p {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
}

.buyer-cta {
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("images/buyer-cta.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 125px 7%;
}

.buyer-cta-content {
  max-width: 740px;
}

.buyer-cta h2 {
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.buyer-cta p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 35px;
}

@media (max-width: 900px) {
  .buyer-hero,
  .buyer-guide-grid {
    grid-template-columns: 1fr;
  }

  .buyer-hero,
  .buyer-guide-section,
  .buyer-cta {
    padding: 85px 6%;
  }

  .buyer-hero-image img {
    height: 430px;
  }

  .buyer-hero-content h1,
  .buyer-guide-section h2,
  .buyer-cta h2 {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .buyer-hero-content h1,
  .buyer-guide-section h2,
  .buyer-cta h2 {
    font-size: 34px;
  }

  .buyer-guide-card {
    padding: 28px;
  }
}

.seller-hero {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 85px;
  align-items: start;
}

.seller-hero-content h1 {
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1.02;
  margin-bottom: 28px;
}

.seller-hero-content > p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 45px;
}

.seller-hero-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

.seller-accordion {
  margin-top: 20px;
}

.seller-plan-section {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
}

.seller-plan-heading {
  max-width: 820px;
  margin-bottom: 60px;
}

.seller-plan-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.seller-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.seller-plan-card {
  background: #fff;
  padding: 34px;
  min-height: 310px;
}

.seller-plan-card span {
  color: #9a7a35;
  display: block;
  margin-bottom: 28px;
}

.seller-plan-card h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  margin-bottom: 18px;
}

.seller-plan-card p {
  font-size: 17px;
  line-height: 1.65;
  color: #333;
}

.seller-cta {
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("images/seller-cta.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 125px 7%;
}

.seller-cta-content {
  max-width: 740px;
}

.seller-cta h2 {
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.seller-cta p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 35px;
}

@media (max-width: 900px) {
  .seller-hero,
  .seller-plan-grid {
    grid-template-columns: 1fr;
  }

  .seller-hero,
  .seller-plan-section,
  .seller-cta {
    padding: 85px 6%;
  }

  .seller-hero-image img {
    height: 430px;
  }

  .seller-hero-content h1,
  .seller-plan-heading h2,
  .seller-cta h2 {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .seller-hero-content h1,
  .seller-plan-heading h2,
  .seller-cta h2 {
    font-size: 34px;
  }

  .seller-plan-card {
    padding: 28px;
  }
}

.builder-hero {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 85px;
  align-items: start;
}

.builder-hero-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

.builder-hero-content h1 {
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1.02;
  margin-bottom: 28px;
}

.builder-hero-content > p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 45px;
}

.builder-accordion {
  margin-top: 20px;
}

.builder-process-section {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
}

.builder-process-heading {
  max-width: 820px;
  margin-bottom: 60px;
}

.builder-process-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.builder-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.builder-process-card {
  background: #fff;
  padding: 38px;
  min-height: 320px;
}

.builder-process-card span {
  color: #9a7a35;
  display: block;
  margin-bottom: 30px;
}

.builder-process-card h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  margin-bottom: 18px;
}

.builder-process-card p {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
}

.builder-cta {
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("images/builder-cta.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 125px 7%;
}

.builder-cta-content {
  max-width: 740px;
}

.builder-cta h2 {
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.builder-cta p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 35px;
}

@media (max-width: 900px) {
  .builder-hero,
  .builder-process-grid {
    grid-template-columns: 1fr;
  }

  .builder-hero,
  .builder-process-section,
  .builder-cta {
    padding: 85px 6%;
  }

  .builder-hero-image img {
    height: 430px;
  }

  .builder-hero-content h1,
  .builder-process-heading h2,
  .builder-cta h2 {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .builder-hero-content h1,
  .builder-process-heading h2,
  .builder-cta h2 {
    font-size: 34px;
  }

  .builder-process-card {
    padding: 28px;
  }
}

.washington-hero {
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url("images/washington-hero.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 135px 7%;
}

.washington-hero-content {
  max-width: 900px;
}

.washington-hero h1 {
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
  margin-bottom: 28px;
}

.washington-hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.88;
  margin-bottom: 35px;
}

.washington-intro {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}

.washington-intro h2 {
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1.05;
}

.washington-intro p {
  font-size: 19px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 22px;
}

.washington-areas {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
}

.washington-areas-heading {
  max-width: 850px;
  margin-bottom: 60px;
}

.washington-areas-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.washington-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.washington-area-card {
  border: 1px solid rgba(246, 240, 232, 0.22);
  padding: 38px;
  min-height: 320px;
}

.washington-area-card span {
  color: #c8a45d;
  display: block;
  margin-bottom: 30px;
}

.washington-area-card h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  margin-bottom: 18px;
}

.washington-area-card p {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.84;
}

.washington-guide {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.washington-guide-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

.washington-guide-content h2 {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 38px;
}

.washington-guide .accordion {
  border-top: 1px solid rgba(17, 17, 17, 0.25);
}

.washington-guide .accordion-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

.washington-guide .accordion-header {
  color: #111;
}

.washington-guide .accordion-body {
  color: #333;
}

.washington-cta {
  background:
    linear-gradient(rgba(0,0,0,.66), rgba(0,0,0,.66)),
    url("images/washington-cta.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 125px 7%;
}

.washington-cta-content {
  max-width: 760px;
}

.washington-cta h2 {
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.washington-cta p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 35px;
}

@media (max-width: 900px) {
  .washington-intro,
  .washington-area-grid,
  .washington-guide {
    grid-template-columns: 1fr;
  }

  .washington-hero,
  .washington-intro,
  .washington-areas,
  .washington-guide,
  .washington-cta {
    padding: 85px 6%;
  }

  .washington-hero h1,
  .washington-intro h2,
  .washington-areas-heading h2,
  .washington-guide-content h2,
  .washington-cta h2 {
    font-size: 40px;
  }

  .washington-guide-image img {
    height: 430px;
  }
}

@media (max-width: 520px) {
  .washington-hero h1,
  .washington-intro h2,
  .washington-areas-heading h2,
  .washington-guide-content h2,
  .washington-cta h2 {
    font-size: 34px;
  }

  .washington-area-card {
    padding: 28px;
  }
}

.winners-top {
  background: #111;
  color: #f6f0e8;
  padding: 130px 7% 95px;
}

.winners-top-text {
  max-width: 900px;
}

.winners-top h1 {
  font-family: Georgia, serif;
  font-size: 68px;
  line-height: 1;
  margin-bottom: 28px;
}

.winners-top p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.86;
}

.winners-picks {
  background: #111;
  color: #f6f0e8;
  padding: 0 7% 110px;
}

.winners-picks-heading {
  margin-bottom: 40px;
}

.winners-picks-heading h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.05;
}

.winner-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.winner-pick-card {
  color: #f6f0e8;
  text-decoration: none;
  border: 1px solid rgba(246, 240, 232, 0.18);
  display: block;
  transition: 0.3s ease;
}

.winner-pick-card:hover {
  transform: translateY(-6px);
  border-color: #c8a45d;
}

.winner-pick-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.winner-pick-info {
  padding: 26px;
}

.winner-pick-info span {
  color: #c8a45d;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  display: block;
  margin-bottom: 14px;
}

.winner-pick-info h3 {
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.winner-pick-info p {
  opacity: 0.78;
  line-height: 1.5;
}

.winner-detail {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 75px;
  align-items: start;
}

.winner-detail-dark {
  background: #111;
  color: #f6f0e8;
}

.winner-detail-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

.winner-label {
  color: #9a7a35;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 18px;
}

.winner-detail-content h2 {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 38px;
}

.winner-detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  margin-bottom: 38px;
}

.winner-detail-grid h4,
.winner-writeup h4,
.winner-credit h4 {
  font-family: Georgia, serif;
  font-size: 23px;
  margin-bottom: 14px;
}

.winner-detail-grid p,
.winner-writeup p,
.winner-credit p {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
}

.winner-detail-dark .winner-detail-grid p,
.winner-detail-dark .winner-writeup p,
.winner-detail-dark .winner-credit p {
  color: rgba(246, 240, 232, 0.82);
}

.winner-detail-grid ul {
  padding-left: 22px;
}

.winner-detail-grid li {
  font-size: 17px;
  margin-bottom: 10px;
}

.winner-writeup,
.winner-credit {
  margin-bottom: 32px;
}

.winner-writeup p {
  margin-bottom: 18px;
}

.winner-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.winners-disclaimer {
  background: #111;
  color: #f6f0e8;
  padding: 85px 7%;
}

.winners-disclaimer h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.winners-disclaimer p {
  font-size: 18px;
  line-height: 1.75;
  opacity: 0.82;
  max-width: 850px;
}

@media (max-width: 900px) {
  .winner-picks-grid,
  .winner-detail,
  .winner-detail-grid {
    grid-template-columns: 1fr;
  }

  .winners-top,
  .winners-picks,
  .winner-detail,
  .winners-disclaimer {
    padding-left: 6%;
    padding-right: 6%;
  }

  .winners-top h1,
  .winner-detail-content h2 {
    font-size: 42px;
  }

  .winner-detail-image img {
    height: 430px;
  }
}

@media (max-width: 520px) {
  .winners-top h1,
  .winner-detail-content h2 {
    font-size: 34px;
  }

  .winner-pick-card img {
    height: 260px;
  }
}

.winner-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.winner-actions .text-link {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  border-bottom: 1px solid #111;
}

.winner-detail-dark .winner-actions .text-link {
  color: #f6f0e8;
  border-bottom: 1px solid #c8a45d;
}

.winner-detail-dark .winner-actions .light-btn {
  background: #c8a45d;
  color: #111;
}

/* =========================
   LISTINGS PAGE
========================= */

.listings-hero {
  background:
    linear-gradient(rgba(0,0,0,.64), rgba(0,0,0,.64)),
    url("images/listings-hero.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 135px 7%;
}

.listings-hero-content {
  max-width: 900px;
}

.listings-hero h1 {
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
  margin-bottom: 28px;
}

.listings-hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.88;
}

.listings-search-section {
  background: #111;
  padding: 0 7% 90px;
}

.listings-search-form {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 2.8fr 1fr 0.8fr 0.8fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.listing-results-section {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
}

.listing-results-heading {
  max-width: 850px;
  margin-bottom: 55px;
}

.listing-results-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.listing-results-heading p {
  font-size: 19px;
  line-height: 1.7;
  color: #333;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.listing-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.listing-image {
  position: relative;
  height: 320px;
  background: #ddd;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.listing-status {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 15px;
  border-radius: 30px;
  background: #111;
  color: #f6f0e8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.listing-status.active {
  background: #1f6f3f;
}

.listing-empty-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2d8c8;
  color: #75664d;
  font-family: Georgia, serif;
  font-size: 24px;
}

.listing-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.listing-price {
  color: #9a7a35;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 14px;
}

.listing-card-content h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.listing-specs {
  color: #555;
  font-size: 16px;
  margin-bottom: 18px;
}

.listing-description {
  color: #333;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.listing-credit {
  color: #777;
  font-size: 15px;
  margin-bottom: 28px;
}

.listing-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.listing-card-actions .text-link {
  font-size: 16px;
  font-weight: bold;
}

/* fallback button styles, only helps if these are missing */
.dark-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}

.text-link {
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #111;
  padding-bottom: 5px;
}

/* Mobile */
@media (max-width: 1000px) {
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listings-search-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .listings-grid {
    grid-template-columns: 1fr;
  }

  .listings-hero,
  .listings-search-section,
  .listing-results-section {
    padding-left: 6%;
    padding-right: 6%;
  }

  .listings-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .listings-hero h1,
  .listing-results-heading h2 {
    font-size: 38px;
  }

  .listing-image {
    height: 280px;
  }

  .listing-card-content {
    padding: 24px;
  }
}

/* =========================
   HOME SEARCH PAGE
========================= */

.home-search-hero {
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url("images/home-search-hero.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 135px 7%;
}

.home-search-hero-content {
  max-width: 920px;
}

.home-search-hero h1 {
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
  margin-bottom: 28px;
}

.home-search-hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.88;
}

.home-search-box-section {
  background: #111;
  padding: 0 7% 90px;
}

.home-search-box {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 2.8fr 1fr 0.8fr 0.8fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.idx-ready-section {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: stretch;
}

.idx-ready-content h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.idx-ready-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
}

.idx-placeholder {
  background: #111;
  color: #f6f0e8;
  min-height: 430px;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.idx-placeholder span {
  color: #c8a45d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 22px;
}

.idx-placeholder h3 {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.idx-placeholder p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
}

.search-guidance-section {
  background: #111;
  color: #f6f0e8;
  padding: 100px 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.search-guidance-card {
  border: 1px solid rgba(246, 240, 232, 0.22);
  padding: 38px;
  min-height: 300px;
}

.search-guidance-card span {
  color: #c8a45d;
  display: block;
  margin-bottom: 28px;
}

.search-guidance-card h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  margin-bottom: 18px;
}

.search-guidance-card p {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.84;
}

.home-search-cta {
  background: #111;
  color: #f6f0e8;
  padding: 90px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  border-top: 1px solid rgba(246, 240, 232, 0.18);
}

.home-search-cta h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.home-search-cta p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.84;
  max-width: 720px;
}

@media (max-width: 1000px) {
  .home-search-box,
  .idx-ready-section,
  .search-guidance-section {
    grid-template-columns: 1fr;
  }

  .home-search-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .home-search-hero,
  .home-search-box-section,
  .idx-ready-section,
  .search-guidance-section,
  .home-search-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .home-search-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .home-search-hero h1,
  .idx-ready-content h2,
  .home-search-cta h2 {
    font-size: 38px;
  }

  .idx-placeholder {
    padding: 35px;
    min-height: 330px;
  }

  .idx-placeholder h3 {
    font-size: 32px;
  }

  .search-guidance-card {
    padding: 28px;
  }
}

/* =========================
   FAQS PAGE
========================= */

.faqs-hero {
  background:
    linear-gradient(rgba(0,0,0,.64), rgba(0,0,0,.64)),
    url("images/faqs-hero.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 135px 7%;
}

.faqs-hero-content {
  max-width: 940px;
}

.faqs-hero h1 {
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
  margin-bottom: 28px;
}

.faqs-hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.88;
}

.faqs-intro {
  background: #f6f0e8;
  color: #111;
  padding: 100px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

.faqs-intro h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.faqs-intro p {
  font-size: 19px;
  line-height: 1.75;
  color: #333;
}

.faqs-section {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
}

.faqs-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 55px;
  align-items: start;
}

.faqs-sidebar {
  border: 1px solid rgba(246, 240, 232, 0.22);
  padding: 38px;
  position: sticky;
  top: 110px;
}

.faqs-sidebar h3 {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 26px;
}

.faqs-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faqs-sidebar li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(246, 240, 232, 0.16);
  color: rgba(246, 240, 232, 0.86);
}

.faq-accordion .accordion-item {
  border-bottom: 1px solid rgba(246, 240, 232, 0.22);
}

.faq-accordion .accordion-header {
  width: 100%;
  background: transparent;
  color: #f6f0e8;
  border: none;
  padding: 28px 0;
  font-size: 25px;
  font-family: Georgia, serif;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
}

.faq-accordion .accordion-header span {
  color: #c8a45d;
  font-size: 30px;
}

.faq-accordion .accordion-content {
  display: none;
  padding-bottom: 28px;
}

.faq-accordion .accordion-content p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(246, 240, 232, 0.82);
  max-width: 850px;
}

.faq-accordion .accordion-item.active .accordion-content {
  display: block;
}

.faqs-cta {
  background: #111;
  color: #f6f0e8;
  padding: 90px 7%;
  border-top: 1px solid rgba(246, 240, 232, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.faqs-cta h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.faqs-cta p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.84;
  max-width: 720px;
}

@media (max-width: 950px) {
  .faqs-intro,
  .faqs-layout {
    grid-template-columns: 1fr;
  }

  .faqs-sidebar {
    position: static;
  }

  .faqs-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .faqs-hero,
  .faqs-intro,
  .faqs-section,
  .faqs-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .faqs-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .faqs-hero h1,
  .faqs-intro h2,
  .faqs-cta h2 {
    font-size: 38px;
  }

  .faq-accordion .accordion-header {
    font-size: 21px;
  }

  .faqs-sidebar {
    padding: 28px;
  }
}

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

.blog-hero {
  background:
    linear-gradient(rgba(0,0,0,.64), rgba(0,0,0,.64)),
    url("images/blog-hero.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 135px 7%;
}

.blog-hero-content {
  max-width: 940px;
}

.blog-hero h1 {
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
  margin-bottom: 28px;
}

.blog-hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.88;
}

.blog-intro {
  background: #f6f0e8;
  color: #111;
  padding: 100px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

.blog-intro h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.blog-intro p {
  font-size: 19px;
  line-height: 1.75;
  color: #333;
}

.blog-featured-section {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: center;
}

.blog-featured-image {
  height: 560px;
  background: #2a2a2a;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content h2 {
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.blog-featured-content p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.84;
  margin-bottom: 32px;
}

.blog-posts-section {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
}

.blog-section-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.blog-section-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.blog-card-image {
  height: 270px;
  background: #ddd;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-empty-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2d8c8;
  color: #75664d;
  font-family: Georgia, serif;
  font-size: 24px;
}

.blog-card-content {
  padding: 30px;
}

.blog-category {
  color: #9a7a35;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 14px;
}

.blog-card-content h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.blog-card-content p {
  color: #333;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.blog-cta {
  background: #111;
  color: #f6f0e8;
  padding: 90px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.blog-cta h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.blog-cta p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.84;
  max-width: 720px;
}

@media (max-width: 1000px) {
  .blog-intro,
  .blog-featured-section {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .blog-intro,
  .blog-featured-section,
  .blog-posts-section,
  .blog-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .blog-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .blog-hero h1,
  .blog-intro h2,
  .blog-featured-content h2,
  .blog-section-heading h2,
  .blog-cta h2 {
    font-size: 38px;
  }

  .blog-featured-image {
    height: 340px;
  }

  .blog-card-content {
    padding: 24px;
  }
}

/* =========================
   EVENTS PAGE
========================= */

.events-hero {
  background:
    linear-gradient(rgba(0,0,0,.64), rgba(0,0,0,.64)),
    url("images/events-hero.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 135px 7%;
}

.events-hero-content {
  max-width: 940px;
}

.events-hero h1 {
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
  margin-bottom: 28px;
}

.events-hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.88;
}

.events-intro {
  background: #f6f0e8;
  color: #111;
  padding: 100px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

.events-intro h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.events-intro p {
  font-size: 19px;
  line-height: 1.75;
  color: #333;
}

.events-featured-section {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: center;
}

.events-featured-image {
  height: 560px;
  background: #2a2a2a;
}

.events-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-featured-content h2 {
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.events-featured-content p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.84;
  margin-bottom: 24px;
}

.event-details-list {
  border-top: 1px solid rgba(246, 240, 232, 0.2);
  border-bottom: 1px solid rgba(246, 240, 232, 0.2);
  padding: 20px 0;
  margin-bottom: 30px;
}

.event-details-list p {
  margin-bottom: 8px;
}

.events-list-section {
  background: #f6f0e8;
  color: #111;
  padding: 110px 7%;
}

.events-section-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.events-section-heading h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.event-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 340px;
}

.event-date {
  background: #111;
  color: #f6f0e8;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date span {
  color: #c8a45d;
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
  margin-bottom: 8px;
}

.event-date small {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
}

.event-card-content {
  padding: 34px;
}

.event-category {
  color: #9a7a35;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 14px;
}

.event-card-content h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.event-card-content p {
  color: #333;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.event-meta {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  padding-top: 18px;
  margin-bottom: 24px;
}

.event-meta p {
  margin-bottom: 7px;
}

.events-note-section {
  background: #111;
  color: #f6f0e8;
  padding: 95px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

.events-note-section h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.1;
}

.events-note-section p {
  font-size: 19px;
  line-height: 1.75;
  opacity: 0.84;
}

.events-cta {
  background: #111;
  color: #f6f0e8;
  padding: 90px 7%;
  border-top: 1px solid rgba(246, 240, 232, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.events-cta h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.events-cta p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.84;
  max-width: 720px;
}

@media (max-width: 1000px) {
  .events-intro,
  .events-featured-section,
  .events-note-section {
    grid-template-columns: 1fr;
  }

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

  .events-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .events-hero,
  .events-intro,
  .events-featured-section,
  .events-list-section,
  .events-note-section,
  .events-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .events-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .events-hero h1,
  .events-intro h2,
  .events-featured-content h2,
  .events-section-heading h2,
  .events-note-section h2,
  .events-cta h2 {
    font-size: 38px;
  }

  .events-featured-image {
    height: 340px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date {
    min-height: 130px;
  }

  .event-card-content {
    padding: 26px;
  }
}

/* =========================
   VENDORS PAGE
========================= */

.vendors-hero {
  background:
    linear-gradient(rgba(0,0,0,.64), rgba(0,0,0,.64)),
    url("images/vendors-hero.jpg") center/cover no-repeat;
  color: #f6f0e8;
  padding: 135px 7%;
}

.vendors-hero-content {
  max-width: 940px;
}

.vendors-hero h1 {
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 1;
  margin-bottom: 28px;
}

.vendors-hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.88;
}

.vendors-intro {
  background: #f6f0e8;
  color: #111;
  padding: 100px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

.vendors-intro h2 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
}

.vendors-intro p {
  font-size: 19px;
  line-height: 1.75;
  color: #333;
}

.vendors-section {
  background: #111;
  color: #f6f0e8;
  padding: 110px 7%;
}

.vendors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.vendor-card {
  border: 1px solid rgba(246, 240, 232, 0.22);
  padding: 34px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.vendor-card span {
  color: #c8a45d;
  display: block;
  margin-bottom: 24px;
}

.vendor-category {
  color: #c8a45d;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 14px;
}

.vendor-card h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.vendor-card p {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.84;
}

.vendor-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 26px;
}

.vendor-contact a {
  color: #f6f0e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 164, 93, 0.75);
  width: fit-content;
  font-weight: bold;
}

.vendor-note-section {
  background: #f6f0e8;
  color: #111;
  padding: 95px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

.vendor-note-section h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.1;
}

.vendor-note-section p {
  font-size: 19px;
  line-height: 1.75;
  color: #333;
}

.vendors-cta {
  background: #111;
  color: #f6f0e8;
  padding: 90px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid rgba(246, 240, 232, 0.18);
}

.vendors-cta h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.vendors-cta p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.84;
  max-width: 720px;
}

@media (max-width: 1200px) {
  .vendors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .vendors-intro,
  .vendor-note-section {
    grid-template-columns: 1fr;
  }

  .vendors-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .vendors-grid {
    grid-template-columns: 1fr;
  }

  .vendors-hero,
  .vendors-intro,
  .vendors-section,
  .vendor-note-section,
  .vendors-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .vendors-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .vendors-hero h1,
  .vendors-intro h2,
  .vendor-note-section h2,
  .vendors-cta h2 {
    font-size: 38px;
  }

  .vendor-card {
    padding: 28px;
  }
}