:root {
  --bg: #ebe6db;
  --surface: #f7f2e8;
  --text: #454545;
  --muted: #697962;
  --primary: #ad6f7d;
  --primary-dark: #8c5865;
  --accent: #bdab9c;
  --line: rgba(173, 111, 125, 0.18);
  --shadow: 0 18px 35px rgba(69, 69, 69, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(173, 111, 125, 0.12) 0%, transparent 38%),
    radial-gradient(circle at left bottom, rgba(189, 171, 156, 0.18) 0%, transparent 32%),
    linear-gradient(180deg, #f7f3eb 0%, var(--bg) 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.2;
  margin-top: 0;
}

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

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

.background-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
}

.shape-one {
  width: 300px;
  height: 300px;
  background: linear-gradient(140deg, rgba(173, 111, 125, 0.28), rgba(235, 230, 219, 0.1));
  top: 5rem;
  right: -90px;
}

.shape-two {
  width: 250px;
  height: 250px;
  background: linear-gradient(140deg, rgba(105, 121, 98, 0.18), rgba(189, 171, 156, 0.12));
  left: -70px;
  bottom: 12%;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(247, 243, 235, 0.88);
  border-bottom: 1px solid rgba(173, 111, 125, 0.12);
  z-index: 40;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  display: block;
  height: 74px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  padding: 5.5rem 0 3.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  max-width: 62ch;
  color: #5d5652;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 500;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: #fff;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.9s ease both;
}

.hero-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.hero-panel li {
  display: grid;
  gap: 0.2rem;
  border-left: 2px solid var(--line);
  padding-left: 0.7rem;
}

.hero-panel strong {
  font-size: 0.96rem;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 3.2rem 0;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.4rem;
}

.section-head p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.post-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(69, 69, 69, 0.12);
}

.post-tag {
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.post-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.post-card p {
  color: #5f5a55;
}

.post-card a {
  font-weight: 600;
  color: var(--primary-dark);
}

.section-band {
  background: linear-gradient(180deg, rgba(247, 242, 232, 0.7) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
}

.pillars {
  display: grid;
  gap: 0.8rem;
}

.pillars article {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.pillars h3 {
  margin-bottom: 0.2rem;
}

.pillars p {
  color: var(--muted);
  margin: 0;
}

.partners-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
}

.partner-card h3 {
  margin-bottom: 0.5rem;
}

.partner-card p,
.partner-card li {
  color: #5f5a55;
}

.partner-card ul {
  margin: 0;
  padding-left: 1rem;
}

.partner-card button {
  margin-top: 0.9rem;
  width: 100%;
  border: 1px dashed var(--accent);
  background: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.about-card {
  background: linear-gradient(135deg, rgba(247, 242, 232, 0.95), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
}

.newsletter {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(189, 171, 156, 0.45);
  border-radius: 16px;
  padding: 1rem;
  align-self: start;
}

.newsletter label {
  font-weight: 600;
  display: block;
}

.newsletter-row {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  border: 1px solid rgba(189, 171, 156, 0.75);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font: inherit;
}

.newsletter button {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.newsletter small {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
}

.section-tight {
  padding-top: 1rem;
}

.blog-hero {
  padding-bottom: 0.8rem;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.7rem;
}

.blog-hero p {
  color: #5d5652;
  max-width: 70ch;
}

.blog-listing {
  display: grid;
  gap: 1rem;
}

.post-list-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.post-list-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  margin-bottom: 0.6rem;
}

.post-list-card p {
  color: #5f5a55;
  max-width: 80ch;
}

.post-list-card .btn {
  margin-top: 0.5rem;
}

.article-layout {
  max-width: 860px;
}

.article-layout h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}

.article-layout h2 {
  margin-bottom: 0.5rem;
  margin-top: 1.8rem;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
}

.article-layout p {
  color: #5d5652;
}

.article-lead {
  font-size: 1.08rem;
  color: #514c48;
  max-width: 74ch;
}

.article-tip {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(247, 242, 232, 0.95), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  box-shadow: var(--shadow);
}

.contact-details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(189, 171, 156, 0.45);
  border-radius: 18px;
  padding: 1.1rem;
}

.contact-details p {
  margin: 0 0 0.45rem;
}

.contact-page {
  padding-top: 4.4rem;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 2rem;
  align-items: start;
}

.contact-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.contact-intro {
  max-width: 62ch;
  color: #5d5652;
  margin-bottom: 1.5rem;
}

.contact-mail {
  margin: 1.2rem 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-mail a {
  color: var(--primary-dark);
}

.contact-note {
  color: #5d5652;
}

.contact-profile-card {
  align-self: start;
  width: 220px;
  max-width: 220px;
  justify-self: end;
}

.contact-photo {
  display: block;
  width: 160px;
  max-width: 160px;
  margin-left: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.contact-profile-copy {
  max-width: 200px;
  margin-left: auto;
  margin-top: 1rem;
  padding: 0.2rem 0.2rem 0 0.2rem;
}

.contact-profile-copy h2 {
  margin-bottom: 0.2rem;
}

.contact-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.contact-editorial-card {
  max-width: 760px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-editorial-card p {
  margin: 0 0 1.2rem;
  max-width: 62ch;
  color: #5d5652;
  font-size: 1.04rem;
}

.contact-mail-label {
  margin-top: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.about-page {
  padding-top: 4.2rem;
}

.about-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 2.4rem;
  align-items: start;
}

.about-copy h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  margin-bottom: 1.2rem;
}

.about-copy h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.about-copy p {
  max-width: 66ch;
  color: #5d5652;
  margin: 0 0 1rem;
}

.about-list-card {
  margin: 1.4rem 0;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.about-list-card p {
  margin-bottom: 0.6rem;
  color: var(--text);
  font-weight: 600;
}

.about-list-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #5d5652;
}

.about-list-card li + li {
  margin-top: 0.4rem;
}

.about-side {
  width: 190px;
  max-width: 190px;
  justify-self: end;
}

.about-photo {
  display: block;
  width: 100%;
  max-width: 150px;
  margin-left: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-photo-caption {
  max-width: 150px;
  margin-left: auto;
  margin-top: 0.9rem;
}

.about-photo-caption h2 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.about-photo-caption p {
  color: var(--muted);
  margin: 0;
}

.about-newsletter {
  margin-top: 2.4rem;
  max-width: 760px;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes riseIn {
  from {
    transform: translateY(16px);
    opacity: 0;
  }

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

@media (max-width: 860px) {
  .hero,
  .split,
  .about-card,
  .contact-card,
  .contact-page-layout,
  .about-page-layout {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    gap: 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 0;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .brand img {
    height: 58px;
  }

  .hero {
    padding-top: 3rem;
  }

  .cards-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter button {
    width: 100%;
  }

  .post-list-card {
    padding: 1.1rem;
  }

  .contact-editorial-card {
    padding: 1.4rem;
  }

  .contact-photo,
  .contact-profile-copy {
    margin-left: 0;
  }

  .about-side {
    width: auto;
    max-width: none;
    justify-self: start;
  }

  .about-photo,
  .about-photo-caption {
    margin-left: 0;
  }

  .contact-profile-card {
    max-width: none;
    justify-self: start;
  }
}
