/* Brand variables (mirror tailwind config) */
:root {
  --color-primary: #C0653A;
  --color-primary-dark: #A8552F;
  --color-secondary: #1F4E5F;
  --color-accent: #E5A23D;
  --color-dark: #2A1F18;
  --color-surface: #FAF6F0;
}

/* ---- Brand component classes ----
   Note: we use raw CSS (not @apply) because the site loads Tailwind via
   the CDN at runtime, and the CDN does not process @apply directives.
*/
.btn-primary,
.btn-secondary,
.btn-channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: all 200ms ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: #fff;
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(42, 31, 24, 0.15);
}

.btn-secondary:hover {
  border-color: rgba(42, 31, 24, 0.4);
  background-color: var(--color-surface);
}

.btn-channel {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.btn-channel:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Form inputs */
.form-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border: 1px solid rgba(42, 31, 24, 0.15);
  border-radius: 0.5rem;
  color: var(--color-dark);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(42, 31, 24, 0.4);
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(192, 101, 58, 0.2);
}

textarea.form-input {
  resize: vertical;
  min-height: 6rem;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%232A1F18' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.025em;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: "ss01", "cv11";
}

/* Soft section divider helper */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 31, 24, 0.1), transparent);
}

/* ---- Modal / Dialog ----
   Uses native <dialog> with .modal[open] for animations.
*/
.modal {
  /* Reset native dialog styling */
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  inset: 0;
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(42, 31, 24, 0.6);
  backdrop-filter: blur(4px);
}

.modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade 200ms ease;
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal__panel {
  position: relative;
  background: #fff;
  width: min(100%, 56rem);
  max-height: 90vh;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.3);
}

.modal__panel--wide {
  width: min(100%, 72rem);
}

.modal__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: #fff;
}

.modal__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-dark);
  margin: 0;
}

.modal__close {
  background: rgba(42, 31, 24, 0.05);
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  cursor: pointer;
  transition: background 150ms ease;
}

.modal__close:hover {
  background: rgba(42, 31, 24, 0.1);
}

.modal__body {
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Lock body scroll while a modal is open */
body.modal-open {
  overflow: hidden;
}

/* Lightbox grid inside gallery modal */
.lightbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .lightbox-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .lightbox-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.lightbox-grid figure {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(42, 31, 24, 0.05);
  margin: 0;
}

.lightbox-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*# sourceMappingURL=main.css.map */