@layer base {
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: #faf8f5;
    color: #1f2a1a;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  address { font-style: normal; }
}

.font-serif {
  font-family: "Playfair Display", Georgia, serif;
}

/* Layout helpers */
.min-h-screen { min-height: 100vh; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pb-2 { padding-bottom: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.flex-col { flex-direction: column; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.self-start { align-self: flex-start; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.rounded-full { border-radius: 9999px; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.w-full { width: 100%; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-14 { height: 3.5rem; }
.w-14 { width: 3.5rem; }
.h-16 { height: 4rem; }
.w-16 { width: 4rem; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.list-disc { list-style-type: disc; }
.pl-5 { padding-left: 1.25rem; }
.border-t { border-top: 1px solid #e0ddd8; }
.border-b { border-bottom: 1px solid #e0ddd8; }
.border-b-2 { border-bottom: 2px solid #c4654a; }
.last\:border-0:last-child { border-bottom: 0; }

/* Colors */
.bg-background { background: #faf8f5; }
.bg-card { background: #fff; }
.bg-secondary { background: #f0ebe3; }
.bg-accent { background: #c4654a; }
.bg-\[\#1f2a1a\] { background: #1f2a1a; }
.text-foreground { color: #1f2a1a; }
.text-primary { color: #1f2a1a; }
.text-accent { color: #c4654a; }
.text-muted-foreground { color: #5a6b52; }
.text-white { color: #fff; }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-accent-foreground { color: #fff; }
.text-primary-foreground { color: #faf8f5; }
.border-border { border-color: #e0ddd8; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.bg-transparent { background: transparent; }
.accent-accent { accent-color: #c4654a; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.8\] { line-height: 1.8; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.22em\] { letter-spacing: 0.22em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-wider { letter-spacing: 0.05em; }
.underline { text-decoration: underline; }

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #c4654a;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.9; }
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.btn-outline {
  background: transparent;
  color: #1f2a1a;
  border: 1px solid #e0ddd8;
}
.btn-outline:hover { background: #f0ebe3; }
.btn-block { display: block; width: 100%; }

/* Card */
.card {
  border: 1px solid #e0ddd8;
  border-radius: 0.375rem;
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Form */
.form-input {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #e0ddd8;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 15px;
  color: #1f2a1a;
  outline: none;
  font-family: inherit;
}
.form-input:focus { border-color: #c4654a; }
.form-select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #e0ddd8;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 15px;
  color: #1f2a1a;
  outline: none;
  font-family: inherit;
  appearance: none;
}
.form-select:focus { border-color: #c4654a; }
.form-textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #e0ddd8;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 15px;
  color: #1f2a1a;
  outline: none;
  font-family: inherit;
  resize: vertical;
}
.form-textarea:focus { border-color: #c4654a; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #5a6b52;
}

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:text-4xl { font-size: 2.25rem; }
  .sm\:text-5xl { font-size: 3rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:text-6xl { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Footer specific */
.footer-link { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-link:hover { color: #fff; text-decoration: underline; }

/* Top bar */
.top-bar {
  width: 100%;
  background: #1f2a1a;
  padding: 0.75rem;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.8);
}

/* Summary box */
.summary-box {
  border: 1px solid #e0ddd8;
  border-radius: 0.375rem;
  background: #f0ebe3;
  padding: 1.5rem;
}

/* Pill tag */
.pill {
  display: inline-block;
  border-radius: 9999px;
  background: #f0ebe3;
  padding: 0.375rem 1rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #1f2a1a;
}

/* Check icon circle */
.check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(196,101,74,0.15);
  color: #c4654a;
  margin-left: auto;
  margin-right: auto;
}
