:root {
  --ivory: #f8f5f2;
  --sand: #e9ded7;
  --taupe: #b8a99b;
  --charcoal: #3f3b39;
  --soft-white: #ffffff;
  --mist: #d7d7cf;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248,245,242,.94);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  border-bottom: 1px solid rgba(63,59,57,.08);
}
.brand { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; }
.nav { display: flex; gap: 26px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.nav a:hover { color: #88786b; }

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: .95; font-weight: 500; margin: 0 0 22px; }
h1 { font-size: clamp(56px, 8vw, 116px); letter-spacing: 4px; text-transform: uppercase; }
h2 { font-size: clamp(42px, 5vw, 72px); }
h3 { font-size: 32px; text-transform: uppercase; letter-spacing: 2px; }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 12px; margin-bottom: 16px; color: #88786b; }
.script { font-family: 'Parisienne', cursive; font-size: clamp(28px, 4vw, 54px); line-height: 1.1; color: #a69182; margin: 0 0 22px; }
.lead { font-size: 18px; max-width: 560px; }
.italic { font-style: italic; }

.hero { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; background: linear-gradient(90deg, var(--ivory), var(--soft-white)); }
.hero-copy { padding: 105px 6vw 80px; align-self: center; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border: 1px solid var(--taupe);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  cursor: pointer;
}
.primary, button { background: var(--taupe); color: white; }
.secondary { background: transparent; color: var(--charcoal); }

.split-section { max-width: var(--max-width); margin: 0 auto; padding: 100px 6vw; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.soft { max-width: none; background: var(--soft-white); }
.art-card img { max-height: 560px; margin: 0 auto; object-fit: contain; mix-blend-mode: multiply; }

.cards-section { background: var(--ivory); max-width: var(--max-width); margin: 0 auto; padding: 95px 6vw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: white; padding: 48px 36px; text-align: center; border: 1px solid rgba(63,59,57,.08); }
.icon { display: block; font-size: 42px; color: #a69182; margin-bottom: 20px; }
ul { text-align: left; padding-left: 22px; }

.community { display: grid; grid-template-columns: .9fr 1.1fr; background: white; }
.community-image { min-height: 460px; background: linear-gradient(rgba(233,222,215,.36), rgba(233,222,215,.36)), url('../images/logo-illustration.jpg') center/contain no-repeat; }
.community-copy { padding: 90px 7vw; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px; margin: 30px 0; }
.feature-grid span::before { content: '✧'; color: #a69182; margin-right: 10px; }

.book-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 90px 6vw; background: var(--sand); }
.book-banner > div { max-width: 620px; margin-left: auto; }
.book-banner img { width: 100%; max-height: 520px; object-fit: cover; object-position: center top; }
.products { text-align: center; padding: 100px 6vw; background: white; }
.products p { max-width: 680px; margin-left: auto; margin-right: auto; }
.about img { width: 100%; max-height: 580px; object-fit: cover; object-position: center top; }

.signup { text-align: center; padding: 90px 6vw; background: var(--ivory); }
.signup form { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }
.signup input { min-height: 48px; width: min(420px, 70vw); padding: 0 18px; border: 1px solid var(--taupe); background: white; }
.small-note { font-size: 12px; color: #88786b; }
.footer { display: flex; justify-content: space-between; gap: 30px; padding: 45px 6vw; background: var(--charcoal); color: white; }
.footer p { margin: 6px 0 0; opacity: .8; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; }

/* Base button styling */
.ml-custom-btn {
    display: inline-block;
    background-color: #B8A99B;
    color: #ffffff; /* White text color */
    padding: 12px 24px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
 }

  /* Hover state styling */
 .ml-custom-btn:hover {
    background-color: #E9DED7;
    color: #333333; /* Darker text on light hover for better readability */
 }

@media (max-width: 850px) {
  .site-header { align-items: flex-start; gap: 18px; flex-direction: column; }
  .nav { flex-wrap: wrap; gap: 14px; }
  .hero, .split-section, .cards-section, .community, .book-banner { grid-template-columns: 1fr; }
  .hero { min-height: unset; }
  .hero-copy { padding-top: 70px; }
  .hero-image img { max-height: 560px; }
  .cards-section, .split-section { padding-top: 70px; padding-bottom: 70px; gap: 38px; }
  .community-copy { padding: 70px 6vw; }
  .feature-grid { grid-template-columns: 1fr; }
  .signup form { flex-direction: column; align-items: center; }
  .signup input, .signup button { width: min(420px, 90vw); }
  .footer { flex-direction: column; }
  
 
}
