:root {
  /* Updated to pink and golden wedding theme from design images */
  --primary-color: #d41973;
  --primary-dark: #d14a85;
  --primary-light: #f28bb8;

  --secondary-color: #2d5f4f;
  --secondary-dark: #1e4538;
  --secondary-light: #3a7a64;

  --accent-color: #d4a017;
  --accent-light: #e8c9a0;
  --accent-dark: #b8890f;

  --text-color: #2c2c2c;
  --text-light: #5a5a5a;
  --text-lighter: #8a8a8a;
  --text-lightest: #bebebe;

  --bg-color: #faf8f5;
  --bg-secondary: #f5f1eb;
  --bg-tertiary: #ede7df;
  --bg-accent: #fff9f0;
  --bg-white: #ffffff;

  --border-color: #e5dfd6;
  --border-light: #f0ebe3;
  --border-dark: #d0c8bc;

  --success-color: #2c5f4f;
  --success-dark: #1e4538;
  --success-light: #a8d5c5;

  --error-color: #c85a54;
  --error-dark: #a84842;
  --error-light: #f5c9c6;

  /* Elegant serif and sans-serif typography pairing */
  --font-primary: "Vidaloka", serif;
  --font-secondary: "Vidaloka", serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.75rem;
  --font-size-5xl: 3.5rem;

  /* Softer, more elegant shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.1), 0 4px 8px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.04);
  /* Updated focus shadow to use new pink primary color */
  --shadow-focus: 0 0 0 3px rgba(232, 93, 159, 0.15);

  /* Softer border radius for elegant feel */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  --spacing-5xl: 8rem;

  /* Smoother transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-negative: -1;
  --z-elevate: 1;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-dropdown: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-normal);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 2px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-fast);
}

button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  background-color: var(--bg-white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-focus);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-lighter);
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: var(--font-size-sm);
  letter-spacing: 0.01em;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Elegant typography with serif headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  color: var(--text-color);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--spacing-lg);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: var(--spacing-3xl);
  }
}

/* Modern, elegant button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: var(--font-size-base);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-row {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.error-message {
  color: var(--error-color);
  font-size: var(--font-size-sm);
  margin-top: 0.375rem;
}

.success-message {
  color: var(--success-color);
  font-size: var(--font-size-sm);
  margin-top: 0.375rem;
}

/* Mobile responsive typography */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--spacing-md);
  }
}

:root {
  --site-font: var(--font-primary);
}

html, body {
  font-family: var(--site-font);
}

/* Paragraphs and common content containers */
p,
.article,
.post,
.entry,
.content,
.main,
section,
article,
div.content,
.container p,
.container > p,
.column p,
.card p {
  font-family: var(--site-font);
  font-weight: 400; /* keep weight neutral for body copy */
  line-height: 1.7; /* preserve your existing rhythm */
}

/* Form controls, buttons, links to inherit body font */
button,
input,
select,
textarea,
a {
  font-family: var(--site-font);
}