@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Jost:wght@300;400;500;600;700&display=swap");

:root {
    --primary: #1a1a1a;
    --secondary: #6b4423;
    --accent: #d4a574;
    --light: #f5f1e8;
    --text-dark: #2a2a2a;
    --text-light: #f5f1e8;
    --card-radius: 16px;
    --shadow-sm: 0 2px 12px rgba(26, 26, 26, 0.07);
    --shadow-md: 0 8px 32px rgba(26, 26, 26, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.16);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

h1,
h2,
h3,
h4,
.hero-title,
.section-title {
    font-family: "Dancing Script", cursive !important;
    letter-spacing: 0.01em;
}

body,
p,
a,
span,
button,
input,
select,
textarea,
label {
    font-family: "Jost", sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── Navigation ── */
nav {
    backdrop-filter: blur(12px);
    background: rgba(245, 241, 232, 0.96);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-links a {
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ── Hero ── */
.hero-section {
    position: relative;
    height: 52vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1400&h=900&fit=crop")
        center/cover;
    opacity: 0.22;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 24px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* ── Eyebrow ── */
.eyebrow {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.4px;
    font-family: "Jost", sans-serif;
}

.btn-primary {
    background: var(--secondary);
    color: var(--text-light);
    box-shadow: 0 8px 28px rgba(107, 68, 35, 0.2);
    width: 100%;
}

.btn-primary:hover {
    background: #552d14;
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(107, 68, 35, 0.3);
}

/* ── Sections ── */
.section {
    padding: 80px 20px;
}
.bg-light {
    background: var(--light);
}
.dark-section {
    background: var(--primary);
    color: var(--text-light);
}
.dark-section .section-title {
    color: var(--text-light);
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
    color: var(--text-dark);
}

/* ── Form ── */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0d8cc;
    border-radius: 10px;
    font-family: "Jost", sans-serif;
    font-size: 0.97rem;
    transition: all var(--transition);
    background: white;
    color: var(--text-dark);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(107, 68, 35, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* ── Contact Info Cards ── */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-card {
    background: white;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(212, 165, 116, 0.35);
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(
        135deg,
        rgba(107, 68, 35, 0.1),
        rgba(212, 165, 116, 0.15)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary);
}

.contact-card-body {
    flex: 1;
    min-width: 0;
}

.contact-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: "Jost", sans-serif;
}

.contact-content {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
}

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

/* ── Location Cards ── */
.location-card {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.12);
    transition: box-shadow var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-md);
}

.location-card-header {
    background: linear-gradient(135deg, var(--secondary), #8a5530);
    padding: 28px 32px 22px;
    color: white;
    display: flex;
    align-items: center;
    gap: 14px;
}

.location-card-header .loc-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-card-header h3 {
    font-family: "Dancing Script", cursive !important;
    font-size: 1.9rem;
    color: white;
    line-height: 1;
}

.location-card-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

.location-card-body {
    padding: 28px 32px;
}

.location-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 500px) {
    .location-info-grid {
        grid-template-columns: 1fr;
    }
}

.location-info-item label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
    font-family: "Jost", sans-serif;
}

.location-info-item p {
    font-size: 0.93rem;
    color: #444;
    line-height: 1.55;
}

/* ── Hours Table ── */
.hours-block {
    background: linear-gradient(135deg, var(--light), #ece7dd);
    border-radius: 12px;
    padding: 20px 22px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.hours-block-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
    font-family: "Jost", sans-serif;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(107, 68, 35, 0.12);
    font-size: 0.88rem;
}

.hours-row:last-of-type {
    border-bottom: none;
}

.hours-row .day {
    color: #555;
    font-weight: 500;
}
.hours-row .time {
    font-weight: 700;
    color: var(--secondary);
    background: rgba(107, 68, 35, 0.08);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.82rem;
}

.hours-note {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Google Map ── */
.map-section {
    padding: 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-overlay-card {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    max-width: 280px;
    border-top: 4px solid var(--secondary);
    z-index: 10;
}

.map-overlay-card h4 {
    font-family: "Dancing Script", cursive;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.map-overlay-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.map-overlay-card .directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.map-overlay-card .directions-btn:hover {
    background: #552d14;
}

@media (max-width: 600px) {
    .map-wrapper {
        height: 320px;
    }
    .map-overlay-card {
        top: auto;
        bottom: 20px;
        left: 12px;
        right: 12px;
        max-width: none;
    }
}

/* ── FAQ ── */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(107, 68, 35, 0.12);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid rgba(107, 68, 35, 0.12);
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.faq-header:hover {
    background: rgba(212, 165, 116, 0.06);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: "Jost", sans-serif;
    line-height: 1.4;
}

.faq-chevron {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(107, 68, 35, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition:
        transform var(--transition),
        background var(--transition);
    font-size: 0.8rem;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--secondary);
    color: white;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s ease;
}

.faq-item.open .faq-body {
    max-height: 400px;
}

.faq-answer {
    padding: 0 8px 22px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Success / Error ── */
.success-message,
.error-message {
    display: none;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.success-message {
    background: #e8f5e9;
    border: 1.5px solid #4caf50;
    color: #2e7d32;
}

.error-message {
    background: #fdeaea;
    border: 1.5px solid #d9534f;
    color: #9f2f2c;
}

.success-message.show,
.error-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CTA Dark ── */
.dark-section .section-title {
    color: var(--text-light);
}
.text-light\/80 {
    color: rgba(245, 241, 232, 0.8);
}

/* ── Utilities ── */
.max-w-6xl {
    max-width: 1152px;
    margin-inline: auto;
}
.max-w-7xl {
    max-width: 1280px;
    margin-inline: auto;
}
.max-w-2xl {
    max-width: 680px;
    margin-inline: auto;
}
.mx-auto {
    margin-inline: auto;
}
.text-center {
    text-align: center;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mb-16 {
    margin-bottom: 4rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.grid {
    display: grid;
}
.gap-12 {
    gap: 3rem;
}
.gap-16 {
    gap: 4rem;
}
.space-y-6 > * + * {
    margin-top: 1.5rem;
}
.space-y-8 > * + * {
    margin-top: 2rem;
}
.leading-relaxed {
    line-height: 1.75;
}
.text-gray-700 {
    color: #444;
}
.text-2xl {
    font-size: 1.5rem;
}
.font-bold {
    font-weight: 700;
}
.text-secondary {
    color: var(--secondary);
}
.text-light {
    color: var(--text-light);
}
.text-lg {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}
