:root {
  --bg: #f6f1e8;
  --surface: #fffdf9;
  --surface-soft: #efe6dc;
  --surface-tint: #f3ebe3;

  --text: #201a18;
  --muted: #6f5e58;
  --line: #d9c8bc;

  --accent: #7a1f2b;
  --accent-dark: #5f1620;
  --accent-soft: rgba(122, 31, 43, 0.08);

  --max-width: 1120px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(32, 26, 24, 0.08);

  --font-heading: "Cormorant Garamond", serif;
  --font-ui: "Raleway", sans-serif;
  --font-body: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}



body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Base background (fallback) */
body {
  background-color: var(--bg);
}

/* Home page */
.home-page {
  background-image: url("../images/‎background2.jpg");
  background-repeat: no-repeat;
  background-position: top 80px right 50px;
  background-size: 580px;
}

/* Presentations page */
.presentations-page {
  background-color: var(--bg);
  background-image: url("../images/‎backgroundmute.jpg");
  background-repeat: no-repeat;
  background-position: center top 120px;
  background-size: min(1300px, 96vw);
}

/* Center and style the presentations page header */
.presentations-page .page-header {
  text-align: center;
}

.presentations-page .page-header .eyebrow {
  color: var(--accent);
}

.presentations-page .page-header h1 {
  color: var(--accent);
}

.presentations-page .page-header .lead {
  color: rgba(122, 31, 43, 0.85);
}

/* Contact page */
.contact-page {
  background-color: var(--bg);
  background-image: url("../images/‎backgroundmute.jpg");
  background-repeat: no-repeat;
  background-position: center top 120px;
  background-size: min(1000px, 96vw);

 
}

/* Individual presentation pages */
.presentation-page {
  background-image: url("../images/‎background3.jpg");
  background-repeat: no-repeat;
  background-position: top 40px right 200px;
  background-size: 900px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--accent-dark);
  text-decoration: none;
}

p {
  margin: 0 0 1.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-top: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 0.5em;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.6em;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6em;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

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

.site-header {
  background: rgba(246, 241, 232, 0.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo img {
  display: block;
  height: 62px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

.brand-link:hover {
  color: var(--text);
  opacity: 0.85;
}

.brand-tagline {
  margin: 0.35rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.site-nav a.active,
.site-nav a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.25rem;
  align-items: start;
}

.hero-text h1 {
  max-width: 12ch;
  margin-bottom: 0.4em;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--accent);
}

.lead {
  font-size: 1.14rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 60ch;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-card,
.card,
.presentation-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
}

.hero-card h2,
.card h2,
.presentation-card h2 {
  font-size: 2rem;
}

.feature-list {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  margin-bottom: 0.2em;
  position: relative;
  padding-bottom: 0.8rem;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.6rem;
}

.card-grid,
.presentation-grid {
  display: grid;
  gap: 1.5rem;
}

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

.card {
  padding: 1.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.presentation-card:hover,
.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(32, 26, 24, 0.1);
  border-color: #c9afa4;
}

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

.presentation-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.presentation-content {
  padding: 2rem;
}

.card-label {
  margin: 0 0 0.6rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--accent);
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button-secondary:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.page-header {
  padding: 4.5rem 0 1.2rem;
}

.page-header h1 {
  position: relative;
  padding-bottom: 1rem;
}

.page-header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.75rem;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
  background: rgba(255, 253, 249, 0.65);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-inner a {
  color: var(--muted);
}

.footer-inner a:hover {
  color: var(--accent);
}

::selection {
  background: rgba(122, 31, 43, 0.16);
}

@media (max-width: 900px) {
  .hero-grid,
  .card-grid,
  .presentation-grid {
    grid-template-columns: 1fr;
  }

  .callout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 0.9rem;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .brand-link {
    font-size: 1.7rem;
  }

  /* Full-width banner */
.banner {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}



  body {
    font-size: 16px;
  }
}