@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=Parisienne&display=swap');

:root {
    --paper: #fbf8f1;
    --paper-deep: #f4eee5;
    --ink: #2f2a27;
    --muted: #776e68;
    --rose: #c79a96;
    --rose-soft: #ead8d2;
    --cyan: #61dafb;
    --success: #9fc08f;
    --line: rgba(47, 42, 39, 0.15);
    --dark-line: rgba(251, 248, 241, 0.2);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Parisienne', 'Brush Script MT', cursive;
    --font-sans: 'DM Sans', Arial, sans-serif;
    --content-max: 1180px;
    --gutter-desktop: 80px;
    --page-min-width: 320px;
    --ease-editorial: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: var(--page-min-width); background: var(--paper); color: var(--ink); font-family: var(--font-sans); }
body, button, input, select, textarea { font-family: var(--font-sans); }
button, input, select, textarea { font-size: inherit; }
img { max-width: 100%; }
a { color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

.page { overflow: hidden; background: var(--paper); }
.container { width: min(var(--content-max), calc(100% - var(--gutter-desktop))); margin-inline: auto; }
.serif, .section-title, .hero-title, .booking-title, .booking-panel-title, .card-title, .quote-text { font-family: var(--font-display); }
.eyebrow { margin: 0; color: var(--rose); font-size: 10px; font-weight: 700; letter-spacing: 0.24em; line-height: 1.4; text-transform: uppercase; }
.section-title { margin: 18px 0 25px; color: var(--ink); font-size: clamp(48px, 5.5vw, 75px); font-weight: 500; letter-spacing: -0.045em; line-height: 0.9; }
.section-title em, .hero-title em, .booking-title em { color: var(--rose); font-style: italic; }

.site-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 0 18px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); text-decoration: none; }
.brand-mark { width: 44px; height: 44px; object-fit: contain; mix-blend-mode: multiply; flex-shrink: 0; }
.brand-text { display: inline-flex; flex-direction: column; align-items: center; text-align: center; line-height: 1; }
.brand-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.brand-subtitle { font-family: var(--font-script); font-size: 23px; font-weight: 400; color: var(--ink); margin-top: -5px; white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.auth-status { display: inline-flex; align-items: center; }
.login-header-btn { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; padding: 10px 14px; cursor: pointer; transition: background 180ms ease, color 180ms ease; }
.login-header-btn:hover { background: var(--ink); color: var(--paper); }
.login-header-icon { display: inline-flex; width: 15px; height: 15px; }
.login-header-icon svg { width: 100%; height: 100%; }
.user-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid var(--line); background: rgba(47, 42, 39, 0.04); font-size: 11px; font-weight: 600; color: var(--ink); list-style: none; cursor: pointer; user-select: none; }
.user-pill::-webkit-details-marker { display: none; }
.user-pill.is-admin { border-color: var(--ink); background: rgba(47, 42, 39, 0.08); }
.role-badge { display: inline-flex; align-items: center; padding: 2px 6px; border-radius: 2px; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.role-badge.admin { background: var(--ink); color: var(--paper); }
.role-badge.user { background: var(--rose-soft); color: var(--ink); }
.user-icon { display: inline-flex; width: 16px; height: 16px; color: var(--rose); }
.user-icon svg { width: 100%; height: 100%; }
.user-name { font-weight: 600; font-size: 11px; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.user-menu-dropdown { position: relative; display: inline-block; }
.dropdown-caret { font-size: 9px; opacity: 0.7; transition: transform 180ms ease; margin-left: 2px; }
.user-menu-dropdown[open] .dropdown-caret { transform: rotate(180deg); }

.user-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    z-index: 100;
    min-width: 190px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    display: flex;
    flex-direction: column;
}

.dropdown-user-info {
    padding: 8px 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dropdown-user-name { font-size: 12px; font-weight: 700; color: var(--ink); }
.dropdown-user-email { font-size: 10px; color: var(--muted); max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.dropdown-divider { height: 1px; background: var(--line); margin: 4px 0; }

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease;
}

.dropdown-item:hover {
    background: rgba(47, 42, 39, 0.06);
    color: var(--ink);
    text-decoration: none;
}

.dropdown-item.logout-item {
    color: #c0392b;
}

.dropdown-item.logout-item:hover {
    background: #fde8e8;
    color: #c0392b;
}

.dropdown-icon { font-size: 12px; opacity: 0.8; }

.login-dialog { border: 0; padding: 0; background: transparent; max-width: 440px; width: min(440px, calc(100vw - 32px)); }
.login-dialog::backdrop { background: rgba(26, 22, 20, 0.65); backdrop-filter: blur(4px); }
.login-dialog-card { position: relative; background: var(--paper); color: var(--ink); border: 1px solid var(--line); padding: 40px 32px 36px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18); }
.login-header { text-align: center; margin-bottom: 24px; }
.login-avatar { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--rose-soft); color: var(--ink); margin-bottom: 12px; }
.login-avatar svg { width: 24px; height: 24px; }
.login-title { margin: 0 0 6px; font-size: 32px; font-weight: 500; font-family: var(--font-display); }
.login-subtitle { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.login-form { display: grid; gap: 16px; }
.login-form .field label { color: var(--ink); font-weight: 600; }
.login-form .field input { border-color: var(--line); color: var(--ink); background: var(--paper); }
.login-form .field input:focus { border-color: var(--ink); background: #ffffff; }
.login-form .field input::placeholder { color: #a29891; }
.login-submit-btn { margin-top: 8px; width: 100%; }
.login-error-msg { color: #c0392b; font-size: 12px; font-weight: 600; text-align: center; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: 0.09em; text-decoration: none; white-space: nowrap; transition: color 180ms ease; }
.nav-link:hover { color: var(--ink); }
.nav-cta, .mobile-menu-cta, .mobile-menu summary { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ink); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; padding: 12px 17px; text-decoration: none; transition: background 180ms ease, color 180ms ease; }
.nav-cta:hover, .mobile-menu-cta:hover, .mobile-menu summary:hover, .mobile-menu[open] summary { background: var(--ink); color: var(--paper); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { gap: 8px; list-style: none; cursor: pointer; text-transform: uppercase; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; z-index: 5; right: 0; top: calc(100% + 15px); display: grid; min-width: 190px; padding: 12px; border: 1px solid var(--line); background: var(--paper); }
.mobile-menu nav a { padding: 11px 10px; color: var(--muted); font-size: 11px; text-decoration: none; }
.mobile-menu nav a:hover { background: var(--paper-deep); color: var(--ink); }
.mobile-menu .mobile-menu-cta { margin-top: 6px; background: var(--ink); color: var(--paper); }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); grid-template-rows: minmax(0, 1fr); gap: 0; align-items: stretch; width: min(var(--content-max), 100%); height: clamp(447px, 38.5vw, 552px); margin-inline: auto; padding: 0; background: var(--paper); }
.hero-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 54px 34px 78px; }
.hero-copy::before { position: absolute; top: 62px; left: 0; width: 1px; height: 196px; background: var(--rose); content: ''; }
.hero-title { max-width: 530px; margin: 21px 0 22px; font-size: clamp(62px, 7vw, 102px); font-weight: 500; letter-spacing: -0.055em; line-height: 0.85; }
.hero-title em { color: var(--rose); font-style: normal; }
.hero-intro { max-width: 390px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 33px; }
.hero-primary { display: inline-flex; align-items: center; gap: 17px; padding: 15px 20px; background: var(--ink); color: var(--paper); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-decoration: none; transition: background 180ms ease, transform 180ms ease; }
.hero-primary:hover { background: var(--rose); transform: translateY(-2px); }
.hero-primary span { font-size: 17px; line-height: 0; }
.hero-secondary { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-decoration: none; }
.hero-secondary span { color: var(--rose); font-size: 16px; }
.hero-secondary:hover { color: var(--rose); }
.hero-note { display: flex; align-items: center; gap: 10px; margin: 82px 0 0; color: var(--muted); font-size: 10px; letter-spacing: 0.04em; }
.status-dot { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(159, 192, 143, 0.15); }
.hero-media { position: relative; min-width: 0; height: 100%; min-height: 0; overflow: hidden; }
.hero-frame { position: absolute; inset: 0; overflow: hidden; margin: 0; background: var(--paper); }
.hero-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: right center; }
.hero-frame::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--paper) 0%, rgba(251, 248, 241, 0.4) 3%, transparent 10%), linear-gradient(180deg, rgba(45, 35, 28, 0.02), rgba(45, 35, 28, 0.1)); content: ''; pointer-events: none; }

.features { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature { min-height: 117px; display: flex; flex-direction: column; justify-content: center; gap: 13px; padding: 18px 21px; border-right: 1px solid var(--line); text-decoration: none; transition: background 180ms ease; }
.feature:first-child { border-left: 1px solid var(--line); }
.feature:hover { background: var(--paper-deep); }
.feature-top { display: flex; align-items: center; justify-content: space-between; }
.feature-icon { display: inline-flex; color: var(--rose); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-index { color: #a59b94; font-size: 9px; letter-spacing: 0.12em; }
.feature-title { color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.feature-caption { color: var(--muted); font-size: 11px; line-height: 1.4; white-space: pre-line; }

.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 68px; align-items: center; padding: 84px 0 92px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-media { position: relative; padding: 0; }
.about-media > img { width: 100%; max-width: 100%; height: 390px; display: block; object-fit: cover; object-position: 53% center; filter: saturate(0.84); }
.about-copy { max-width: 520px; }
.about-copy .section-title { margin: 14px 0 20px; font-size: clamp(39px, 4vw, 57px); line-height: 0.96; }
.about-lead { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: 24px; line-height: 1.2; }
.about-body { max-width: 490px; margin: 21px 0 0; color: var(--muted); font-size: 12px; line-height: 1.72; }
.about-booking { display: inline-flex; align-items: center; justify-content: center; min-width: 116px; margin-top: 22px; padding: 11px 21px; background: #d9b5a5; color: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-decoration: none; transition: background 180ms ease, transform 180ms ease; }
.about-booking:hover { background: var(--rose); transform: translateY(-2px); }
.about-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 310px; margin-top: 34px; padding-top: 17px; border-top: 1px solid var(--line); }
.meta-number { color: var(--rose); font-family: var(--font-display); font-size: 29px; line-height: 1; }
.meta-label { display: block; margin-top: 7px; color: var(--muted); font-size: 9px; letter-spacing: 0.1em; line-height: 1.5; text-transform: uppercase; }

.portfolio { padding: 67px 0 78px; background: var(--paper); }
.portfolio-head { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; text-align: center; }
.portfolio-title { margin: 5px 0 8px; color: var(--ink); font-family: var(--font-display); font-size: clamp(36px, 4vw, 48px); font-weight: 500; line-height: 1; }
.portfolio-intro { max-width: 430px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.portfolio-card { position: relative; min-height: 285px; overflow: hidden; background: #d6c4b7; text-decoration: none; }
.portfolio-card > img { width: 100%; height: 100%; min-height: 285px; display: block; object-fit: cover; filter: saturate(0.78); transition: transform 500ms var(--ease-editorial); }
.portfolio-card:hover > img { transform: scale(1.035); }
.portfolio-card::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31, 24, 21, 0.58), transparent 65%), linear-gradient(0deg, rgba(31, 24, 21, 0.36), transparent 55%); content: ''; pointer-events: none; }
.card-overlay { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; color: #fffaf4; }
.card-kicker { display: none; }
.card-title { display: block; margin: 0 0 8px; font-size: 35px; font-weight: 500; letter-spacing: -0.03em; line-height: 0.92; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 250, 244, 0.92); font-size: 11px; }
.card-link span { font-size: 17px; line-height: 1; transition: transform 180ms ease; }
.portfolio-card:hover .card-link span { transform: translateX(3px); }

.testimonials { padding: 136px 0 142px; }
.testimonials-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.testimonials-head .section-title { margin: 18px 0 0; }
.testimonials-intro { max-width: 380px; margin: 0 0 4px; color: var(--muted); font-size: 12px; line-height: 1.75; }

.testimonials-google-box { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.google-rating-summary { display: flex; align-items: center; gap: 14px; }
.google-rating-score-large { font-size: 42px; font-weight: 600; font-family: var(--font-display); color: var(--ink); line-height: 1; }
.google-rating-details { display: flex; flex-direction: column; gap: 3px; }
.google-stars { color: #F4B400; font-size: 14px; letter-spacing: 2px; }
.google-rating-count { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.google-review-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--ink); color: var(--paper); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: background 180ms ease, color 180ms ease; margin-top: 4px; }
.google-review-btn:hover { background: var(--rose); color: #fff; }
.google-review-btn .google-g-icon { width: 16px; height: 16px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 42px; }
.quote-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 230px; padding: 26px 24px; background: #FAF6F1; border: 1px solid var(--line); border-radius: 6px; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.quote-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(40, 37, 36, 0.06); border-color: var(--rose); }
.quote-top { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 14px; }
.quote-top .quote-stars { color: #F4B400; font-size: 12px; letter-spacing: 2px; }
.quote-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; }
.google-g-icon-sm { display: inline-flex; width: 14px; height: 14px; }
.quote-card .quote-text { margin: 0 0 18px; color: var(--ink); font-size: 15px; line-height: 1.55; font-family: var(--font-body); font-style: italic; }
.quote-meta { display: flex; align-items: center; justify-content: space-between; width: 100%; border-top: 1px solid rgba(40, 37, 36, 0.08); padding-top: 14px; }
.quote-meta .quote-author { color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.quote-date { color: var(--muted); font-size: 10px; }

.quote-cta-card { background: var(--paper); border: 1px dashed var(--rose); text-align: center; justify-content: center; }
.cta-card-content { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 10px 4px; }
.google-g-icon-lg { display: inline-flex; width: 32px; height: 32px; color: var(--ink); }
.cta-card-title { font-size: 17px; font-weight: 600; color: var(--ink); margin: 0; font-family: var(--font-display); }
.cta-card-sub { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0 0 4px; max-width: 240px; }
.google-write-review-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; background: transparent; border: 1px solid var(--ink); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.google-write-review-btn:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

.booking { padding: 102px 0 28px; background: var(--ink); color: var(--paper); }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; padding-bottom: 84px; }
.booking .eyebrow { color: #dab7ad; }
.booking-title { max-width: 490px; margin: 18px 0 21px; color: var(--paper); font-size: clamp(55px, 6vw, 84px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.88; }
.booking-copy { max-width: 380px; margin: 0; color: rgba(251, 248, 241, 0.68); font-size: 13px; line-height: 1.75; }
.contact-lines { display: grid; gap: 0; margin-top: 47px; }
.contact-line-wrapper { position: relative; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--dark-line); }
.contact-line-wrapper .contact-line { border-top: none; flex: 1; }
.copy-btn, .copy-phone-btn { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; padding: 0; background: transparent; border: 1px solid rgba(251, 248, 241, 0.2); color: var(--paper); cursor: pointer; transition: background 180ms ease, border-color 180ms ease, color 180ms ease; flex-shrink: 0; margin-left: 12px; }
.copy-btn:hover, .copy-phone-btn:hover { background: rgba(251, 248, 241, 0.12); color: var(--rose-soft); border-color: var(--rose-soft); }
.copy-tooltip { position: absolute; bottom: calc(100% + 6px); right: 0; padding: 4px 8px; background: var(--paper); color: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; pointer-events: none; }
.copy-btn.is-copied .copy-tooltip, .copy-phone-btn.is-copied .copy-tooltip { opacity: 1; visibility: visible; transform: translateY(0); }
.contact-line { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-top: 1px solid var(--dark-line); color: var(--paper); font-size: 12px; text-decoration: none; }
.contact-line:hover span:last-child { color: var(--rose-soft); }
.contact-line span:first-child { width: 72px; color: #bcaea6; font-size: 9px; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; }
.contact-socials-line { align-items: flex-start; }
.social-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.social-link { display: inline-flex; align-items: center; gap: 6px; color: var(--paper); text-decoration: none; transition: color 180ms ease; }
.social-link:hover { color: var(--rose-soft); }
.social-icon { display: inline-flex; width: 16px; height: 16px; align-items: center; justify-content: center; }
.social-icon svg { width: 100%; height: 100%; }
.social-text { font-size: 12px; }
.booking-panel { padding-top: 11px; }
.booking-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 19px; padding-bottom: 17px; border-bottom: 1px solid var(--dark-line); }
.booking-panel-title { margin: 0; color: var(--paper); font-size: 29px; font-weight: 500; }
.booking-status { display: inline-flex; align-items: center; gap: 8px; color: #c5d6c0; font-size: 10px; letter-spacing: 0.04em; }
.booking-status .status-dot { background: var(--success); box-shadow: 0 0 0 4px rgba(159, 192, 143, 0.12); }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.field { min-width: 0; }
.field label, .field legend { display: block; margin-bottom: 7px; color: rgba(251, 248, 241, 0.68); font-size: 10px; letter-spacing: 0.04em; }
.field label span { color: var(--rose-soft); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(251, 248, 241, 0.22); border-radius: 0; background: transparent; color: var(--paper); outline: none; transition: border-color 180ms ease, background 180ms ease; }
.field input, .field select { min-height: 51px; padding: 0 15px; }
.field textarea { min-height: 106px; padding: 13px 15px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--rose-soft) 50%), linear-gradient(135deg, var(--rose-soft) 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-repeat: no-repeat; background-size: 5px 5px, 5px 5px; }
.field select option { background: var(--ink); color: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: rgba(251, 248, 241, 0.42); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose-soft); background: rgba(251, 248, 241, 0.05); }
.field-wide, .service-field { grid-column: 1 / -1; }
.service-field { min-width: 0; padding: 0; border: 0; }
.service-field legend { padding: 0; }
.service-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.service-options label { position: relative; display: inline-flex; margin: 0; cursor: pointer; user-select: none; }
.service-options input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.service-options span { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 34px; padding: 6px 14px; border: 1px solid rgba(251, 248, 241, 0.22); border-radius: 9999px; background: rgba(251, 248, 241, 0.04); color: rgba(251, 248, 241, 0.75); font-size: 11px; font-weight: 500; transition: all 180ms ease; }
.service-options label:hover span { border-color: rgba(234, 216, 210, 0.5); color: var(--paper); background: rgba(251, 248, 241, 0.08); }
.service-options input:checked + span { border-color: #d9b5a5; background: #d9b5a5; color: var(--ink); font-weight: 600; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); }
.service-options input:checked + span::before { content: "✓ "; font-weight: 700; }

/* Small Calendar Date Selector - Responsive & Aligned with Fields */
.event-date-field { grid-column: 1 / -1; }
.small-calendar { background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(251, 248, 241, 0.22); border-radius: 6px; padding: 10px 12px; margin-top: 4px; width: 100%; max-width: 340px; box-sizing: border-box; }
.small-calendar * { box-sizing: border-box; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid rgba(251, 248, 241, 0.1); width: 100%; }
.cal-header-left { display: flex; align-items: center; color: var(--rose-soft); width: 20px; flex-shrink: 0; }
.cal-header-left svg { width: 14px; height: 14px; }
.cal-header-center { display: flex; align-items: center; justify-content: center; gap: 6px; flex: 1; }
.cal-header-spacer { width: 20px; flex-shrink: 0; }
.cal-title { color: var(--paper); font-size: 11px; font-weight: 700; letter-spacing: 0.02em; min-width: 95px; text-align: center; user-select: none; }
.cal-nav { background: transparent; border: none; outline: none; padding: 0; color: var(--rose-soft); width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; cursor: pointer; transition: all 180ms ease; appearance: none; -webkit-appearance: none; flex-shrink: 0; }
.cal-nav:hover:not(.is-disabled) { background: rgba(234, 216, 210, 0.15); color: var(--paper); }
.cal-nav.is-disabled { opacity: 0.25; cursor: not-allowed; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; text-align: center; width: 100%; }
.cal-weekdays span { color: rgba(251, 248, 241, 0.6); font-size: 9px; font-weight: 600; letter-spacing: 0.02em; display: block; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; width: 100%; }
.cal-day-cell { aspect-ratio: 1 / 1; min-width: 0; min-height: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(251, 248, 241, 0.03); border-radius: 4px; padding: 0; position: relative; cursor: pointer; transition: all 150ms ease; user-select: none; }
.cal-day-cell:hover:not(.is-disabled):not(.is-other-month) { background: rgba(251, 248, 241, 0.12); }
.cal-day-cell.is-other-month { background: transparent; opacity: 0.28; cursor: default; }
.cal-day-cell.is-disabled { opacity: 0.28; cursor: not-allowed; }
.cal-day-num { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; font-size: 10px; font-weight: 500; color: rgba(251, 248, 241, 0.9); transition: all 150ms ease; line-height: 1; pointer-events: none; }
.cal-day-cell.is-today .cal-day-num { font-weight: 700; color: var(--rose-soft); }
.cal-day-cell.is-today::after { content: ''; position: absolute; bottom: 2px; width: 3px; height: 3px; background: var(--rose); border-radius: 50%; }
.cal-day-cell.is-selected .cal-day-num { background: #d9b5a5 !important; color: var(--ink) !important; font-weight: 700; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); }
.cal-day-cell.is-selected::after { background: var(--ink); }
.cal-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 6px; border-top: 1px solid rgba(251, 248, 241, 0.1); font-size: 10px; width: 100%; }
.cal-selected-info { color: var(--rose-soft); font-weight: 500; }
.cal-clear-btn { background: transparent; border: none; color: rgba(251, 248, 241, 0.5); font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; text-decoration: underline; padding: 0; appearance: none; -webkit-appearance: none; }
.cal-clear-btn:hover { color: var(--rose-soft); }
.booking-button { width: 100%; margin-top: 17px; padding: 17px; border: 0; border-radius: 0; background: #d9b5a5; color: var(--ink); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: 0.17em; transition: background 180ms ease, transform 180ms ease; }
.booking-button:hover { background: var(--paper); transform: translateY(-2px); }
.booking-button span { margin-left: 12px; font-size: 15px; }
.form-loading { display: block; margin-top: 12px; color: var(--rose-soft); font-size: 11px; }
.form-status { margin-top: 12px; color: rgba(251, 248, 241, 0.76); font-size: 12px; line-height: 1.6; }
.form-status:empty { display: none; }
.form-status.is-success { color: #c5d6c0; }
.form-status.is-error { color: #f0c5b9; }
.form-status p { margin: 0; }
.form-status ul { margin: 8px 0 0; padding-left: 18px; }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0 28px; border-top: 1px solid var(--dark-line); color: rgba(251, 248, 241, 0.55); font-size: 9px; letter-spacing: 0.08em; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); text-decoration: none; }
.footer-brand img { width: 18px; height: 18px; }
.footer-brand strong { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.13em; }
.footer-links { display: flex; gap: 23px; }
.footer-links a { color: rgba(251, 248, 241, 0.55); text-decoration: none; }
.footer-links a:hover { color: var(--paper); }

.portfolio-dialog { width: min(680px, calc(100% - 32px)); max-height: min(720px, calc(100% - 32px)); padding: 0; border: 0; background: var(--paper); color: var(--ink); }
.portfolio-dialog::backdrop { background: rgba(47, 42, 39, 0.72); }
.dialog-close { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; font-size: 24px; line-height: 1; }
.dialog-close:hover { background: var(--paper-deep); }
.dialog-content { padding: 42px; }
.dialog-image { width: 100%; height: 230px; display: block; object-fit: cover; }
.dialog-content h2 { margin: 10px 0 12px; font-family: var(--font-display); font-size: 52px; font-weight: 500; line-height: 0.9; }
.dialog-content p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.dialog-content ul { display: grid; gap: 8px; margin: 20px 0 0; padding-left: 18px; color: var(--muted); font-size: 12px; line-height: 1.5; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms var(--ease-editorial), transform 700ms var(--ease-editorial); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
    :root { --gutter-desktop: 48px; }
    .desktop-nav { gap: 15px; }
    .nav-link { display: none; }
    .mobile-menu { display: block; }
    .hero { height: clamp(447px, 55vw, 500px); }
    .hero-copy { padding: 44px 18px 56px; }
    .hero-copy::before { top: 48px; height: 180px; }
    .hero-title { font-size: clamp(54px, 6.3vw, 82px); }
    .hero-note { margin-top: 55px; }
    .about { gap: 40px; }
    .quote-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .booking-layout { gap: 55px; }
    .contact-line { align-items: flex-start; }
}

@media (max-width: 680px) {
    :root { --gutter-desktop: 36px; }
    .site-header { padding-top: 19px; }
    .brand { min-width: 0; }
    .hero { display: flex; flex-direction: column; width: 100%; height: auto; }
    .hero-copy { order: 1; padding: 66px 22px 61px; }
    .hero-copy::before { top: 56px; height: 154px; }
    .hero-title { font-size: clamp(54px, 14vw, 72px); }
    .hero-intro { max-width: 330px; font-size: 13px; }
    .hero-actions { flex-wrap: wrap; gap: 15px 19px; margin-top: 28px; }
    .hero-note { margin-top: 54px; }
    .hero-media { order: 2; height: 420px; }
    .features { grid-template-columns: 1fr 1fr; }
    .feature { min-height: 93px; }
    .feature:nth-child(3) { border-left: 1px solid var(--line); }
    .feature:last-child { grid-column: 1 / -1; border-left: 1px solid var(--line); }
    .about { display: flex; flex-direction: column; gap: 45px; padding: 68px 0 76px; }
    .about-media { align-self: stretch; width: 100%; }
    .about-media > img { max-width: none; height: 330px; }
    .about-copy .section-title { font-size: clamp(38px, 10vw, 48px); }
    .about-lead { font-size: 22px; }
    .portfolio { padding: 62px 0 72px; }
    .portfolio-head { margin-bottom: 21px; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
    .portfolio-card, .portfolio-card > img { min-height: 238px; }
    .card-title { font-size: 33px; }
    .testimonials { padding: 92px 0 102px; }
    .testimonials-head { display: block; }
    .testimonials-intro { margin-top: 25px; }
    .testimonials-google-box { margin-top: 20px; align-items: stretch; }
    .quote-grid { grid-template-columns: 1fr; gap: 16px; }
    .booking { padding: 80px 0 28px; }
    .booking-layout { grid-template-columns: 1fr; gap: 65px; padding-bottom: 65px; }
    .booking-fields { grid-template-columns: 1fr; }
    .field-wide, .service-field { grid-column: auto; }
    .footer { align-items: flex-start; flex-direction: column; }
    .footer-links { flex-wrap: wrap; gap: 12px 18px; }
    .dialog-content { padding: 32px 24px; }
    .dialog-content h2 { font-size: 44px; }
}

/* Admin Dashboard Styles */
.admin-header-title { margin-bottom: 28px; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 40px; }
.stat-card { background: var(--paper); border: 1px solid var(--line); padding: 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); }
.stat-number { font-family: var(--font-display); font-size: 38px; font-weight: 500; color: var(--ink); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.admin-section { margin-bottom: 48px; }
.admin-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.admin-section-header h2 { font-family: var(--font-display); font-size: 24px; margin: 0; color: var(--ink); }
.count-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(47, 42, 39, 0.06); padding: 4px 10px; border-radius: 12px; color: var(--ink); }

.admin-table-wrapper { overflow-x: auto; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03); }
.admin-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13px; color: var(--ink); }
.admin-table th { background: rgba(47, 42, 39, 0.04); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); padding: 12px 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table tr:hover td { background: rgba(47, 42, 39, 0.02); }

.admin-table a { color: var(--ink); text-decoration: underline; }
.admin-table a:hover { color: var(--rose); }
.col-id { font-family: monospace; font-weight: 600; color: var(--muted); width: 60px; }
.sub-text { font-size: 11px; color: var(--muted); margin-top: 2px; }
.tag-pill { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 600; background: var(--rose-soft); color: var(--ink); white-space: nowrap; }
.msg-preview { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 12px; }

.btn-delete { background: #c0392b; color: #ffffff; border: 0; padding: 6px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 180ms ease; }
.btn-delete:hover { background: #962d22; }
.admin-empty-state { text-align: center; padding: 40px 20px; border: 1px dashed var(--line); background: var(--paper); color: var(--muted); }

/* Analytics Dashboard Styles */
.analytics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 16px;
}
@media (max-width: 900px) {
    .analytics-grid {
        grid-template-columns: 1fr;
    }
}
.analytics-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}
.analytics-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.analytics-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    margin: 0;
    color: var(--ink);
}
.peak-tag {
    font-size: 11px;
    font-weight: 600;
    background: var(--rose-soft);
    color: var(--ink);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Hourly Activity Graph */
.activity-graph-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.activity-graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 180px;
    padding: 16px 8px 0;
    border-bottom: 2px solid var(--line);
    gap: 4px;
}
.graph-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    position: relative;
    cursor: pointer;
}
.graph-bar-fill {
    width: 100%;
    max-width: 18px;
    background: var(--ink);
    border-radius: 2px 2px 0 0;
    transition: height 300ms ease, background 150ms ease;
    opacity: 0.85;
}
.graph-col:hover .graph-bar-fill {
    background: #b38b59;
    opacity: 1;
}
.graph-col.is-peak .graph-bar-fill {
    background: #a3723d;
    opacity: 1;
}
.graph-col-tooltip {
    position: absolute;
    top: -34px;
    background: var(--ink);
    color: var(--paper);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease;
    z-index: 10;
}
.graph-col:hover .graph-col-tooltip {
    opacity: 1;
}
.graph-x-labels {
    display: flex;
    justify-content: space-between;
    padding: 8px 4px 0;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
}

/* Location Breakdown */
.location-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.location-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.location-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}
.location-name {
    font-weight: 600;
    color: var(--ink);
}
.location-val {
    color: var(--muted);
    font-size: 12px;
}
.location-bar-bg {
    height: 6px;
    background: rgba(47, 42, 39, 0.08);
    border-radius: 3px;
    overflow: hidden;
}
.location-bar-fill {
    height: 100%;
    background: var(--ink);
    border-radius: 3px;
    transition: width 400ms ease;
}
