:root {
  --sand: #f4ede1;
  --cream: #fffaf3;
  --gold: #b88a45;
  --gold-deep: #9b7238;
  --violet: #7f6b9a;
  --violet-deep: #6f5b8b;
  --text: #4f4338;
  --muted: #7d7163;
  --white: #ffffff;
  --shadow: 0 14px 38px rgba(72, 46, 18, 0.14);
  --radius-lg: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.55;
}

body.inner-page {
  position: relative;
  min-height: 100vh;
  background: var(--sand);
}

body.inner-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(rgba(246, 237, 222, 0.84), rgba(246, 237, 222, 0.92)), url("assets/hero.jpg") center / cover no-repeat;
}

body.inner-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.5), transparent 35%);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1240px, 96%);
  margin: 14px auto 0;
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(111, 80, 41, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184, 138, 69, 0.45);
}

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

.brand-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gold-deep);
  letter-spacing: 0.4px;
}

.brand-tag {
  margin: 3px 0 0;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(184, 138, 69, 0.45);
  background: var(--white);
  color: var(--gold-deep);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #675a4f;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-deep);
  border-bottom-color: rgba(184, 138, 69, 0.58);
}

.nav-cta {
  border: 0;
  background: linear-gradient(120deg, #8d76ab, #6d5989);
  color: var(--white);
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 11px 17px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(111, 91, 139, 0.35);
}

.home-hero {
  margin-top: -100px;
  min-height: 88vh;
  padding-top: 215px;
  padding-bottom: 95px;
  background: linear-gradient(rgba(255, 246, 235, 0.48), rgba(255, 246, 235, 0.7)), url("assets/heromain.png") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-panel {
  width: min(760px, 94%);
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 248, 238, 0.68);
  border: 1px solid rgba(184, 138, 69, 0.26);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  animation: rise 0.85s ease;
}

.hero-kicker {
  margin: 0;
  font-family: "Cinzel", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--muted);
}

.hero-title {
  margin: 6px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5.6vw, 4.15rem);
  color: var(--gold-deep);
  font-weight: 500;
}

.hero-divider {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f6458;
}

.hero-copy {
  margin: 14px auto 24px;
  width: min(560px, 100%);
  font-size: 1.02rem;
  color: #5c4e41;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #8f79ac, #6f5b8c);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(97, 76, 129, 0.36);
}

.btn-outline {
  border-color: rgba(184, 138, 69, 0.6);
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
}

.pillars {
  background: var(--cream);
  border-top: 1px solid rgba(184, 138, 69, 0.22);
  border-bottom: 1px solid rgba(184, 138, 69, 0.22);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  gap: 10px;
  padding: 26px 0;
}

.pillar {
  text-align: center;
  padding: 8px;
}

.pillar-icon {
  font-size: 1.58rem;
  color: var(--gold);
}

.pillar h3 {
  margin: 8px 0 4px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.64rem;
  color: #735f46;
}

.pillar p {
  margin: 0;
  font-size: 0.72rem;
  color: #8b7e70;
}

.welcome {
  background: var(--cream);
  padding: 58px 0 66px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.welcome .section-copy {
  max-width: 760px;
  margin: 0 auto;
}

.section-eyebrow {
  margin: 0;
  font-family: "Allura", cursive;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.section-title {
  margin: 8px 0 14px;
  font-family: "Cormorant Garamond", serif;
  color: #604a32;
  font-size: clamp(1.9rem, 4.8vw, 3rem);
  font-weight: 500;
}

.section-copy {
  margin: 0;
  color: #6f6255;
  max-width: 520px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.photo-grid img {
  height: 155px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.main-content {
  padding: 62px 0 74px;
}

.page-hero {
  width: min(960px, 92%);
  margin: 42px auto 16px;
  text-align: center;
  background: rgba(255, 248, 236, 0.8);
  border: 1px solid rgba(184, 138, 69, 0.32);
  border-radius: 20px;
  padding: 34px 26px;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-deep);
  font-size: clamp(2rem, 5.8vw, 3.6rem);
  font-weight: 500;
}

.page-hero p {
  margin: 8px auto 0;
  max-width: 690px;
  color: #6b5d50;
}

.panel {
  background: rgba(255, 251, 245, 0.86);
  border: 1px solid rgba(184, 138, 69, 0.28);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: center;
}

.panel h2,
.panel h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  color: #5f492f;
  font-size: 2rem;
  font-weight: 500;
}

.panel p {
  color: #6f6154;
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 138, 69, 0.26);
  border-radius: 14px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-list {
  display: grid;
  gap: 14px;
}

.blog-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 16px;
  align-items: center;
}

.blog-item img {
  border-radius: 14px;
  height: 120px;
  width: 100%;
  object-fit: cover;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #65574a;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(184, 138, 69, 0.44);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.88);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.site-footer {
  background: #f4e6d3;
  border-top: 1px solid rgba(184, 138, 69, 0.26);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.footer-wrap p {
  margin: 0;
  color: #6f6358;
  font-size: 0.86rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .pillars-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .welcome-grid,
  .two-col,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    right: 14px;
    top: 86px;
    width: min(280px, 84vw);
    background: rgba(255, 250, 243, 0.98);
    border: 1px solid rgba(184, 138, 69, 0.3);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .home-hero {
    margin-top: -112px;
    padding-top: 198px;
    padding-bottom: 64px;
  }

  .hero-panel {
    padding: 24px 18px;
  }

  .photo-grid img {
    height: 124px;
  }

  .blog-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .brand-title {
    font-size: 1.4rem;
  }

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

  .section-eyebrow {
    font-size: 2rem;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}
