body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  margin: 0;
  background: #f5f3ee; /* Softer than #f9fafb for contrast */
  color: #1b1a1a;
}

/* NAV (from your style) */
.container_1 {
  margin: 0 auto;
  padding: 0 7vw;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f3ee;
  min-height: 70px;
}
.nav-logo {
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

/* Hide nav-logo on mobile */
@media (max-width: 600px) {
  .nav-logo {
    display: none;
  }
}


@media (max-width: 600px) {
  .nav {
    flex-direction: row;      /* keep it a row since no logo */
    justify-content: flex-end; /* push links all the way right */
    width: 100%;
  }
  .nav-links {
    justify-content: flex-end;
    width: 100%;
  }
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  color: #484343;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s, border-bottom 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-link.active,
.nav-link:focus {
  font-weight: 600;
  border-bottom: 2px solid #1b1a1a;
}
.nav-link:hover {
  border-bottom: 2px solid #bbb;
}









/* --- ABOUT SPLIT HERO SECTION --- */
.about-split {
  background: #f5f3ee;
  padding: 80px 0 70px 0;
}
.about-split-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 90px;
  justify-content: center;
  padding: 0 4vw;
}
.about-split-image {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-split-image img {
  width: 100%;
  max-width: 480px;
  min-width: 290px;
  aspect-ratio: 1/1.4;
  object-fit: cover;
  border-radius: 0;
  background: #efede9;
  box-shadow: 0 3px 32px rgba(120,120,120,0.09);
  display: block;
}
.about-split-text {
  flex: 1.2 1 480px;
  max-width: 570px;
}
.about-split-text h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  font-weight: 100;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: #151312;
  margin: 0 0 34px 0;
}
.about-split-text .gold {
  color: #c9a86a;
  letter-spacing: 0.04em;
  font-family: inherit;
  font-weight: 900;
}
.about-split-text ul {
  list-style: none;
  padding: 0 0 0 1px;
  margin: 0 0 28px 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.18rem;
  color: #4a4844;
  line-height: 1.65;
}
.about-split-text ul li {
  margin-bottom: 10px;
}
.about-split-signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.16rem;
  color: #8a7842;
  margin-top: 18px;
}









.faq-section {
  background: #f5f3ee;
  padding: 44px 0 120px 0;
}
.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4vw;
}
.faq-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  color: #151312;
  font-weight: 900;
  margin: 0 0 46px 0;
  letter-spacing: -2px;
}

.faq-list {
  border-top: 1.5px solid #d3cfc9;
}

.faq-item {
  border-bottom: 1.5px solid #d3cfc9;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1.43rem;
  font-weight: 500;
  color: #232221;
  padding: 32px 0 32px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}

.faq-toggle {
  font-size: 2.2rem;
  color: #b0a78c;
  margin-left: 30px;
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: #c9a86a;
}

.faq-answer {
  font-size: 1.1rem;
  color: #574d3d;
  padding: 0 0 26px 0;
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadein 0.21s;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 700px) {
  .faq-title {
    font-size: 2rem;
    margin-bottom: 22px;
  }
  .faq-question {
    font-size: 1.03rem;
    padding: 20px 0 20px 0;
  }
}





/* --- FOOTER (from your style) --- */
.footer {
  background: #232323;
  color: #fff;
  padding: 60px 0 60px 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}
.footer-grid {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-left {
  flex: 1 1 300px;
}
.footer-logo {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 36px;
}
.footer-contact-block p {
  margin: 0 0 10px 0;
  font-size: 1.08rem;
}
.footer-right {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-socials img {
  width: 36px;
  height: 36px;
  transition: opacity 0.2s;
}
.footer-socials a:hover img {
  opacity: 0.7;
}
.footer-links {
  display: flex;
  gap: 26px;
  margin-bottom: 10px;
}
.footer-links a {
  color: #5a5555;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-copy {
  font-size: 1rem;
  color: #5a5555;
  opacity: 0.8;
  text-align: right;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .about-split-inner { gap: 40px; }
}
@media (max-width: 850px) {
  .about-split-inner {
    flex-direction: column;
    align-items: center;
    gap: 34px;
    padding: 0 3vw;
  }
  .about-split-image img {
    max-width: 96vw;
    min-width: 0;
    aspect-ratio: 1.2/1;
    height: auto;
  }
  .about-split-text {
    max-width: 98vw;
    margin: 0 auto;
    text-align: left;
  }
  .about-split-text h1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 600px) {
  .nav-links { gap: 12px; }
  .about-split {
    padding: 36px 0 28px 0;
  }
  .about-split-inner {
    gap: 18px;
    padding: 0 0vw;
  }
  .about-split-text h1 {
    font-size: 1.3rem;
    margin-bottom: 17px;
  }
  .about-split-text ul { font-size: 0.97rem; }
  .footer { padding: 32px 0 28px 0; }
}







/* --- Make ABOUT hero image smaller & more responsive --- */
.about-split-image img {
  /* Smaller by default on desktop, scales down fluidly */
  width: clamp(220px, 32vw, 420px);
  max-width: 100%;
  aspect-ratio: 3 / 4;        /* slightly taller, feels premium */
  height: auto;
}

/* Tablet tweaks */
@media (max-width: 1100px) {
  .about-split-inner { gap: 48px; }
  .about-split-image img {
    width: clamp(220px, 40vw, 380px);
  }
}

/* Stack layout already kicks in at 850px; make image smaller than before */
@media (max-width: 850px) {
  .about-split-inner { gap: 16px; }
  .about-split { padding: 28px 0 22px; }
  .about-split-image img {
    width: 78vw;              /* was near full width—reduced */
    max-width: 78vw;
  }

  /* Gentle type scaling so image + text feel balanced */
  .about-split-text h1 {
    font-size: clamp(1.5rem, 6.2vw, 2rem);
  }
  .about-split-text ul {
    font-size: clamp(0.95rem, 3.3vw, 1.05rem);
  }
}

/* Phone: make image even smaller for a cleaner fold */
@media (max-width: 600px) {
  .about-split-image img {
    width: 72vw;
    max-width: 72vw;
  }
  .faq-inner { padding: 0 5vw; }
  .faq-title { font-size: clamp(1.6rem, 7vw, 1.9rem); }
}