:root {
  --cream: #f7f4ef;
  --cream-dark: #efeae2;
  --surface: #ffffff;
  --text: #2c2a26;
  --muted: #6b6560;
  --accent: #3d4f42;
  --accent-soft: #e8ede9;
  --border: #e5dfd6;
  --shadow: 0 8px 30px rgba(44, 42, 38, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Jost', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

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

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.logo:hover {
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  justify-content: flex-end;
}

nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

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

/* Hero */
.hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.3rem);
  margin-bottom: 0.35rem;
}

.hero .script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--accent);
  display: block;
  margin: 0.5rem 0 1.3rem;
  font-weight: 400;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: #2f3d33;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Arch */
.arch-wrap {
  max-width: 380px;
  margin: 0 auto 3rem;
}

.arch {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #dce5df 0%, #c5d1c8 100%);
  border-radius: 190px 190px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233d4f42' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* Page header for inner pages */
.page-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.page-hero .section-label {
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

/* Sections */
.section {
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3.5rem;
}

.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-size: 1.05rem;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(44, 42, 38, 0.09);
}

.card-image {
  aspect-ratio: 5 / 4;
  background: linear-gradient(145deg, #dce5df 0%, #c5d1c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
}

.card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233d4f42' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.features {
  list-style: none;
  font-size: 0.9rem;
}

.features li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 500;
}

/* Content blocks for info pages */
.content-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.75rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow);
}

.content-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.content-block p,
.content-block li {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
}

.content-block ul {
  list-style: none;
  margin-top: 0.6rem;
}

.content-block ul li {
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.content-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

@media (max-width: 700px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
  text-align: center;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.8rem;
  min-width: 230px;
  text-align: left;
  box-shadow: var(--shadow);
}

.contact-card .label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-card a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent);
}

.note {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}

/* About strip */
.about-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.about-strip-inner {
  max-width: 600px;
  margin: 0 auto;
}

.about-strip h2 {
  font-size: 1.9rem;
  margin-bottom: 0.85rem;
}

.about-strip p {
  color: var(--muted);
  font-weight: 300;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1.5rem 2.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
  border-top: 1px solid var(--border);
}

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

/* Responsive nav */
@media (max-width: 780px) {
  nav {
    display: none;
  }
  
  .mobile-nav-note {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    background: var(--cream-dark);
  }
}

@media (min-width: 781px) {
  .mobile-nav-note {
    display: none;
  }
}
