:root {
  --black: #171717;
  --charcoal: #232323;
  --cream: #faf8f4;
  --champagne: #e7d7b1;
  --emerald: #29483f;
  --emerald-deep: #1c302b;
  --white: #ffffff;
  --muted: #d5d0c7;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.7;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  color: var(--cream);
  background: rgba(23, 23, 23, 0.96);
  backdrop-filter: blur(12px);
}

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

.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
}

.brand-subtitle {
  color: var(--champagne);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--champagne);
}

.nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid var(--champagne);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--cream);
  background: transparent;
  font: inherit;
}

.hero {

  position: relative;

  min-height: 88vh;

  display: flex;

  align-items: center;

  padding: clamp(4rem, 10vw, 8rem);

  color: #faf8f4;

  background:

    linear-gradient(

      90deg,

      rgba(0, 0, 0, 0.78) 0%,

      rgba(0, 0, 0, 0.55) 35%,

      rgba(0, 0, 0, 0.25) 65%,

      rgba(0, 0, 0, 0.15) 100%

    ),

    url("images/hero-renee.jpg");

  background-size: cover;

  background-position: 72% center;

  background-repeat: no-repeat;

}

@media (max-width: 768px) {

  .hero {

    background-position: 80% center;

  }

}

.hero-content {

  position: relative;

  z-index: 2;

  max-width: 700px;

}

.hero h1 {

  max-width: 650px;

}

.hero-copy {

  max-width: 690px;

  margin-bottom: 2rem;

  color: #eee8dc;

  font-size: clamp(1rem, 2vw, 1.25rem);

}

.eyebrow {

  margin-bottom: 1rem;

  color: var(--champagne);

  font-size: 0.78rem;

  font-weight: 600;

  letter-spacing: 0.22em;

  text-transform: uppercase;

}

.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: var(--black);
  background: #d8bf8d;
}

.button-primary:hover {
  background: #ead8b5;
}

.button-secondary {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 6vw, 6rem);
}

.narrow {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.narrow p {
  font-size: 1.08rem;
}

.section-dark {
  color: var(--cream);
  background: var(--black);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
}

.card-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(231, 215, 177, 0.22);
  border: 1px solid rgba(231, 215, 177, 0.22);
}

.experience-card {
  min-height: 280px;
  padding: 2rem;
  background: var(--charcoal);
}

.experience-card:hover {
  background: #171717;
}

.card-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--champagne);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.experience-card p {
  color: #d8d3cb;
  font-size: 0.92rem;
}

.split-section {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: stretch;
}

.split-copy {
  padding: 2rem 0;
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 3rem;
  color: var(--cream);
  background: #202020;
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.reveal-section {
  color: var(--cream);
  background: #171717;
}

.reveal-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reveal-grid > div {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(231, 215, 177, 0.55);
}

.reveal-grid p {
  color: #ddd8cf;
}

.investment-section {
  background: #d8bf8d;
}

.investment-box {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.09);
}

.investment-box .eyebrow {
  color: #9e7f4f;
}

.location-section {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.location-section .eyebrow {
  color: #9e7f4f;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  color: var(--cream);
  background: var(--black);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #4b4b4b;
  border-radius: 0;
  padding: 0.95rem;
  color: var(--cream);
  background: #202020;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--champagne);
  outline-offset: 1px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.25rem, 4vw, 4rem);
  color: #bbb4aa;
  background: #101010;
  font-size: 0.78rem;
}

.site-footer div {
  display: flex;
  flex-direction: column;
}

.site-footer strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
}

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

  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: var(--black);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .brand-subtitle {
    max-width: 230px;
  }

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

  .experience-card {
    min-height: 0;
  }

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


/* Mika Larson-inspired refinements: black, ivory, white, and muted antique gold */
:root {
  --gold: #b99a63;
  --gold-light: #d8bf8d;
  --ivory: #f7f4ee;
}

body {
  background: var(--ivory);
}

.site-header {
  border-bottom: 1px solid rgba(185, 154, 99, 0.28);
}

.brand-subtitle,
.eyebrow,
.card-number,
.contact-form label {
  color: var(--gold-light);
}

.nav-cta {
  border-color: var(--gold);
}

.nav-cta:hover {
  color: var(--black) !important;
  background: var(--gold-light);
}



.button-primary {
  color: #111;
  background: var(--gold-light);
}

.button-primary:hover {
  background: #ead8b5;
}

.button-secondary {
  border-color: rgba(216, 191, 141, 0.82);
}

.button-secondary:hover {
  color: #111;
  background: var(--gold-light);
}

.section-dark,
.reveal-section,
.contact-section {
  background: #151515;
}

.experience-card {
  background: #202020;
}

.experience-card:hover {
  background: #292929;
  box-shadow: inset 0 0 0 1px rgba(185, 154, 99, 0.5);
}

.quote-panel {
  color: var(--cream);
  background:
    linear-gradient(145deg, #1b1b1b, #252525);
  border: 1px solid rgba(185, 154, 99, 0.35);
}

.reveal-grid > div {
  border-top-color: rgba(216, 191, 141, 0.55);
}

.investment-section {
  background: #c6a66d;
}

.investment-box {
  background: #fbfaf7;
  border: 1px solid rgba(185, 154, 99, 0.35);
}

.investment-box .eyebrow,
.location-section .eyebrow {
  color: #8f7040;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline-color: var(--gold-light);
}

.site-footer {
  border-top: 1px solid rgba(185, 154, 99, 0.22);
}

/* Emerald is retained only as a quiet renewal accent */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline-color: var(--emerald);
}

::selection {
  color: white;
  background: var(--emerald);
}
.pixieset-form-wrapper {

  width: 100%;

}

.pixieset-form-wrapper iframe,

.pixieset-form-wrapper form {

  width: 100% !important;

}

.pixieset-form-wrapper {

  background: #faf8f4;

  padding: 40px;

  border-radius: 8px;

}

.seo-section {

  background: #faf8f4;

  text-align: center;

}

.seo-section h2 {

  font-size: clamp(2rem, 4vw, 3rem);

  margin-bottom: 1rem;

}

.seo-section p {

  max-width: 850px;

  margin: 0 auto 1.25rem;

}


.about-section {
  background: #faf8f4;
}

.about-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(185, 154, 99, 0.45);
  border-radius: 6px;
}

.about-copy .eyebrow {
  color: #8f7040;
}

.about-copy h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

.about-copy p {
  max-width: 720px;
}

.about-closing {
  margin-top: 1.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.about-title {
  margin-top: 1.75rem;
  color: #9e7f4f;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    max-width: 210px;
  }

  .about-copy p {
    margin-right: auto;
    margin-left: auto;
  }
}

.hero::after,

.hero-overlay {

  content: none !important;

  display: none !important;

}