:root {
    --cream: #f7e4da;
    --cream-soft: #fbf0e9;
    --white: #ffffff;
    --ink: #201b17;
    --ink-soft: #6b615a;
    --line: #e9ddd1;
    --line-soft: #f0e5da;
    --orange: #d97a46;
    --orange-dark: #bd6636;
    --orange-tint: #f3d9c7;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --shadow-card:
        0 1px 2px rgba(32, 27, 23, 0.04),
        0 12px 28px -18px rgba(32, 27, 23, 0.22);
    --display: "Plus Jakarta Sans", system-ui, sans-serif;
    --body: "Inter", system-ui, sans-serif;
    --script: "Caveat", cursive;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}
h1,
h2,
h3,
h4 {
    font-family: var(--display);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--ink);
}
p {
    margin: 0;
    line-height: 1.65;
    color: var(--ink-soft);
}
.eyebrow {
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-dark);
    display: block;
    margin-bottom: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.94rem;
    border: 1.5px solid transparent;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
    white-space: nowrap;
}
.btn:focus-visible {
    outline: 2.5px solid var(--orange-dark);
    outline-offset: 3px;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}
.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
}
.btn-link {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-link svg {
    transition: transform 0.18s ease;
}
.btn-link:hover svg {
    transform: translateX(3px);
}
.btn-sm {
    padding: 9px 18px;
    font-size: 0.86rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    font-family: var(--script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
}
.nav-links a.current {
    color: var(--orange-dark);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.18s ease;
}
.nav-links a:hover::after,
.nav-links a.current::after {
    width: 100%;
}
.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}
.has-dropdown button {
    background: none;
    border: none;
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
}
.has-dropdown svg {
    transition: transform 0.18s ease;
}
.has-dropdown.open svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 500;
}
.dropdown-menu a::after {
    display: none;
}
.dropdown-menu a:hover {
    background: var(--cream-soft);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
}
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .header-actions .btn-outline {
        display: none;
    }
}
.mobile-panel {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 0 32px 22px;
    border-bottom: 1px solid var(--line-soft);
}
.mobile-panel.open {
    display: flex;
}
.mobile-panel a,
.mobile-panel button.mp-link {
    padding: 12px 4px;
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
}
.mobile-panel .btn {
    margin-top: 14px;
    justify-content: center;
}

section {
    padding: 88px 0;
}
.page-hero {
    background: var(--cream);
    padding: 64px 0 56px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.1rem);
    max-width: 640px;
    margin: 0 auto;
}
.page-hero p {
    max-width: 520px;
    margin: 20px auto 0;
    font-size: 1.05rem;
}

/* Contact main grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 44px;
    box-shadow: var(--shadow-card);
}
.form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-card > p {
    margin-bottom: 30px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.field label {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--ink);
}
.field input,
.field select,
.field textarea {
    font-family: var(--body);
    font-size: 0.95rem;
    padding: 12px 15px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--cream-soft);
    color: var(--ink);
    transition:
        border-color 0.18s ease,
        background 0.18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}
.field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--body);
}
.field.full {
    grid-column: 1/-1;
}
.form-foot {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.form-note {
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: #f1f7ee;
    border: 1px solid #cfe3c4;
    color: #3a6b2a;
    padding: 16px 18px;
    border-radius: 14px;
    margin-top: 20px;
    font-size: 0.92rem;
}
.form-success.show {
    display: flex;
}
.form-success svg {
    flex-shrink: 0;
}
@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Info column */
.info-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.info-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px 26px;
}
.info-item {
    display: flex;
    gap: 16px;
}
.info-item + .info-item {
    margin-top: 24px;
}
.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange-dark);
}
.info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.info-item p {
    font-size: 0.9rem;
}
.info-item .value {
    color: var(--ink);
    font-weight: 600;
    margin-top: 2px;
}
.hours-card {
    background: var(--ink);
    border-radius: var(--radius-md);
    padding: 26px 26px;
    color: #fff;
}
.hours-card h4 {
    color: #fff;
    font-size: 0.98rem;
    margin-bottom: 14px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}
.hours-row:last-child {
    border-bottom: none;
}
.hours-row span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

/* Map */
.map-section {
    background: var(--cream-soft);
}
.map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 340px;
    position: relative;
    box-shadow: var(--shadow-card);
}
.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 340px;
}
.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 50% 0;
    background: var(--orange);
    transform-origin: bottom;
    rotate: -45deg;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.map-pin svg {
    rotate: 45deg;
    color: #fff;
}
.map-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 22px;
}
.map-caption h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 32px 26px;
    }
}

footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 56px 0 30px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 36px;
}
.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
}
.footer-nav a:hover {
    color: var(--ink);
}
.social-row {
    display: flex;
    gap: 12px;
}
.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: all 0.18s ease;
}
.social-row a:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.disclaimer {
    border-top: 1px solid var(--line-soft);
    padding: 26px 0;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 900px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid var(--line-soft);
    padding-top: 22px;
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.legal-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.legal-links a:hover {
    color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 600px) {
    section {
        padding: 60px 0;
    }
    .wrap {
        padding: 0 20px;
    }
}
