:root {
    --bg: #faf6f0;
    --paper: #fffdfb;
    --ink: #2b1c14;
    --muted: #7a6e65;
    --caramel: #8a5d3b;
    --caramel-dark: #734b2d;
    --line: #e8ded2;
    --blush: #efe7dc;
    --footer: #241610;
    --header: 86px;
    --wrap: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, .price-tag {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.08;
    margin: 0 0 0.35em;
}
p { margin: 0 0 0.9em; }
.wrap { width: min(var(--wrap), calc(100% - 64px)); margin-inline: auto; }
.section { padding: 72px 0; }
.kicker {
    margin: 0 0 14px;
    color: var(--caramel);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.lead { max-width: 38rem; color: var(--muted); font-size: 1.05rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--caramel);
    background: var(--caramel);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.btn-ghost { background: transparent; color: var(--ink); border-color: #cbbbaa; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(250, 246, 240, 0.94);
    border-bottom: 1px solid rgba(232, 222, 210, 0.9);
    backdrop-filter: blur(12px);
}
.header-bar {
    min-height: var(--header);
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand img { height: 58px; width: auto; }
.header-panel { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 14px; min-width: 0; }
.nav-list { display: flex; align-items: center; gap: 12px; list-style: none; margin: 0; padding: 0; }
.nav-list > li > a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-booking { position: relative; }
.nav-booking > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    background: var(--caramel);
    color: #fff !important;
}
.nav-booking > a::after {
    content: "";
    width: 6px; height: 6px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg) translateY(-2px);
}
.nav-booking .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(43, 28, 20, 0.08);
}
.nav-booking:hover .sub-menu, .nav-booking:focus-within .sub-menu { display: block; }
.nav-booking .sub-menu a { display: block; padding: 10px 12px; border-radius: 8px; text-decoration: none; letter-spacing: 0; text-transform: none; font-size: 14px; }
.header-tools, .social { display: flex; align-items: center; gap: 4px; }
.social a, .social-static, .cart-link { width: 34px; height: 34px; display: grid; place-items: center; color: var(--ink); text-decoration: none; }
.social svg, .cart-link svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.nav-toggle { display: none; min-height: 42px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; }
.cart-link { position: relative; }
.cart-count {
    position: absolute; top: 0; right: 0; min-width: 16px; height: 16px; padding: 0 4px;
    border-radius: 999px; background: var(--caramel); color: #fff; font-size: 10px; font-weight: 700;
    display: grid; place-items: center;
}
.cart-count.is-empty { display: none; }

.kicker::after { content: ""; display: block; width: 48px; height: 2px; margin-top: 10px; background: var(--caramel); }
.hero, .split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero { padding: 64px 0 20px; }
.hero h1, .page-hero h1 { font-size: clamp(2.7rem, 4.4vw, 4.2rem); max-width: 14ch; text-transform: uppercase; }
.section h2, .page-hero + .section h2, .stack + h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
}
.hero-frame {
    border-radius: 28px; overflow: hidden; border: 6px solid #fff;
    box-shadow: 0 28px 70px rgba(43, 28, 20, 0.16); background: var(--blush);
}
.hero-frame img, .photo, .gallery img, .card img, .product-card img { width: 100%; object-fit: cover; }
.hero-frame img { height: 520px; }
.photo, .gallery img, .card img { border-radius: 28px; }
.photo-hero { height: 460px; }
.rule-head { display: flex; align-items: center; gap: 22px; margin-bottom: 36px; }
.rule-head h2 {
    margin: 0; font-family: "Plus Jakarta Sans", sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; white-space: nowrap;
}
.rule-head span { flex: 1; height: 1px; background: #dfd2c4; }
.services { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.service { text-align: center; padding: 12px 8px; border-radius: 22px; }
.service:hover { background: rgba(255, 255, 255, 0.7); }
.service .icon, .learn .icon, .note .icon {
    width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 50%;
    background: #efe7dc; border: 1px solid #dfd2c4; display: grid; place-items: center;
}
.service svg, .learn svg, .note svg { width: 28px; height: 28px; fill: none; stroke: var(--ink); stroke-width: 1.5; }
.service h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.35rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700;
}
.service p, .card p { color: var(--muted); font-size: 0.86rem; }
.banners, .cards, .courses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.courses { grid-template-columns: 1fr 1fr; }
.banner {
    position: relative; display: block; height: 380px; border-radius: 22px; overflow: hidden;
    text-decoration: none; color: #fff; box-shadow: 0 16px 40px rgba(43, 28, 20, 0.12);
}
.banner img { height: 100%; border-radius: 0; transition: transform 0.6s ease; }
.banner:hover img { transform: scale(1.05); }
.banner::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20, 10, 6, 0.92) 0%, rgba(20, 10, 6, 0.35) 48%, transparent 100%);
}
.banner-copy {
    position: absolute; z-index: 1; left: 0; right: 0; bottom: 0;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 24px;
}
.banner h2 { margin: 0 0 6px; font-size: 2rem; text-transform: uppercase; color: #fff; }
.banner p { margin: 0; color: rgba(255,255,255,0.86); font-size: 0.86rem; }
.banner-meta { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem !important; font-weight: 700; color: #efe7dc !important; margin-bottom: 6px !important; }
.banner-go {
    flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--caramel);
    position: relative;
}
.banner-go::before {
    content: ""; position: absolute; left: 14px; top: 20px; width: 14px; height: 1.5px; background: #fff;
}
.banner-go::after {
    content: ""; position: absolute; right: 13px; top: 16px; width: 7px; height: 7px;
    border-right: 1.5px solid #fff; border-top: 1.5px solid #fff; transform: rotate(45deg);
}
.card, .course, .learn article, .price-box, .note, .soft, .contact-card, .loc-card, .summary, .cart-row, .product-panel, .product-card {
    background: var(--paper); border-radius: 24px; overflow: hidden; text-decoration: none;
    border: 1px solid rgba(232, 222, 210, 0.9);
    box-shadow: 0 10px 28px rgba(43, 28, 20, 0.04);
}
.card img, .course img { height: 280px; border-radius: 0; }
.card-body, .course-body { padding: 22px 22px 28px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 22px; }
.section-head h2 { font-size: clamp(2.4rem, 4vw, 3.4rem); margin: 0; }
.link-arrow { text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--caramel); white-space: nowrap; }
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gallery img { height: auto; aspect-ratio: 4 / 5; border-radius: 22px; box-shadow: 0 12px 30px rgba(43, 28, 20, 0.08); }
.page-hero { padding: 56px 0 8px; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.note { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: start; padding: 20px; }
.note .icon { margin: 0; width: 64px; height: 64px; }
.soft, .price-box, .contact-card, .loc-card, .summary, .product-panel { padding: 26px; }
.cart-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; padding: 22px; overflow: visible; }
.pills {
    display: block; margin-top: 22px; padding: 16px 18px; background: #fff; border: 1px solid var(--line);
    border-radius: 18px; color: var(--muted); font-size: 0.92rem;
}
.learn article { padding: 22px; }
.page-hero h1 { max-width: none; }
.rules { display: flex; flex-direction: column; gap: 28px; }
.rule-item { display: grid; grid-template-columns: 64px 1fr; gap: 16px; }
.point-no {
    width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
    display: grid; place-items: center; font-family: "Cormorant Garamond", serif; font-size: 1.6rem;
}
.table-scroll { overflow-x: auto; background: #fff; border-radius: 24px; border: 1px solid var(--line); }
table.price { width: 100%; min-width: 760px; border-collapse: collapse; }
table.price th, table.price td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
table.price th { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.35; background: #f3e6dc; }
table.price td:first-child { font-weight: 600; }
.breed-list, .price-box ul { columns: 2; margin: 8px 0 0; padding-left: 16px; }
.page-banner { padding-top: 28px; }
.page-banner img { width: 100%; height: 320px; object-fit: cover; border-radius: 28px; }
table.price tr:nth-child(even) td { background: #fbf7f2; }
.price-extra { display: grid; grid-template-columns: 1.2fr 1fr 0.9fr; gap: 18px; margin-top: 22px; }
.teeth { margin-top: 18px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.learn { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.learn h3 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checks li { padding-left: 22px; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--caramel); }
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 36px; }
.cat-nav { list-style: none; margin: 0; padding: 8px; background: #fff; border-radius: 20px; border: 1px solid var(--line); }
.cat-nav a { display: flex; justify-content: space-between; text-decoration: none; padding: 12px; border-radius: 12px; }
.cat-nav a[aria-current="page"], .cat-nav a:hover { background: var(--blush); }
.cat-block { padding: 8px 0 36px; }
.cat-block .rule-head { margin-bottom: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.product-card { display: flex; flex-direction: column; padding: 12px 12px 18px; position: relative; }
.product-card > a:first-child { text-decoration: none; color: inherit; }
.product-card .btn { margin: 14px 8px 0; align-self: flex-start; }
.product-card .frame, .product-card img, .shot {
    height: 210px; border-radius: 16px; background: var(--blush);
    display: grid; place-items: center;
}
.product-card .shot img, .product-layout .shot img { width: 42%; height: auto; max-height: 70%; object-fit: contain; background: transparent; border-radius: 0; }
.product-card h3 { margin: 14px 8px 4px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.95rem; font-weight: 650; }
.product-card .price-tag { font-size: 1.15rem; margin: 0 8px; }
.product-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.product-layout .shot { height: 520px; border-radius: 28px; }
.price-tag { font-size: 2.6rem; color: var(--caramel); }
.contact-grid, .loc-grid, .cart-layout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; }
.contact-grid { grid-template-columns: 1fr 1fr; }
a.contact-card { display: block; color: inherit; text-decoration: none; }
.loc-grid { grid-template-columns: 1fr; }
.map { width: 100%; min-height: 380px; border: 0; border-radius: 24px; }
.band { margin-top: 10px; }
.band .wrap {
    display: flex; justify-content: space-between; gap: 20px; align-items: center;
    background: #f3e6dc; border-radius: 28px; padding: 32px;
}
.prose { max-width: 760px; }
.entry h2 { font-size: 2rem; margin-top: 1.4em; }

.site-footer { background: var(--footer); color: #efe7dc; padding: 56px 0 28px; }
.footer-top {
    display: grid; grid-template-columns: 220px 1fr auto; gap: 36px; align-items: center;
    padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand-footer img { height: 96px; width: auto; background: #faf6f0; border-radius: 18px; padding: 8px; }
.footer-places { display: flex; flex-wrap: wrap; gap: 28px; }
.footer-places a { display: flex; gap: 12px; color: #efe7dc; text-decoration: none; font-size: 0.92rem; line-height: 1.45; }
.footer-places strong { display: block; color: #fff; }
.place-phone { color: #cbbbaa; }
.pin {
    width: 16px; height: 16px; margin-top: 3px; flex: none; border: 1.5px solid var(--caramel); border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}
.footer-script { margin: 0; text-align: right; font-family: "Alex Brush", cursive; font-size: 2.5rem; line-height: 1.15; color: #efe7dc; }
.footer-script span { color: var(--caramel); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-top: 22px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; }
.footer-bottom a { color: #cbbbaa; text-decoration: none; font-size: 0.82rem; }
.footer-bottom a:hover { color: #fff; }
.social-footer a, .social-footer .social-static { color: #efe7dc; }

form.cart { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 8px; }
form.cart .quantity .qty, .cart-actions .qty {
    width: 84px; min-height: 52px; border-radius: 14px; border: 1px solid var(--line);
    background: #fff; text-align: center; font-size: 1rem;
}
.single_add_to_cart_button, .woocommerce .button, .woocommerce a.button, .woocommerce button.button, .cart-page .btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 26px;
    background: var(--caramel) !important; color: #fff !important; border-radius: 999px !important; border: 0 !important;
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; cursor: pointer;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--caramel);
    border-radius: 16px; padding: 16px 18px; margin: 0 0 20px; list-style: none;
}
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { content: none !important; }
.cart-page { padding-bottom: 20px; }
.cart-empty { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 36px; }
.cart-main h2 { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.2rem; margin: 0 0 6px; }
.cart-unit, .cart-line { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 1.6rem; color: var(--caramel); }
.cart-actions { display: flex; align-items: center; gap: 16px; }
.cart-remove { color: var(--muted); font-size: 0.82rem; }
.summary .checkout-button, .summary a.checkout-button { width: 100%; margin-top: 12px; }
.woocommerce table.shop_table { width: 100%; border: 0; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border: 0; padding: 8px 0; text-align: left; }
.qty { width: 72px; min-height: 42px; border-radius: 12px; border: 1px solid var(--line); padding: 0 10px; }
.shop-page { max-width: none; }
.woocommerce-cart .cart-layout, .woocommerce-checkout form.checkout { margin-top: 12px; }

@media (max-width: 1100px) {
    .services, .learn, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: 1fr 1fr; }
    .footer-grid, .price-extra { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    :root { --header: 84px; }
    .wrap { width: min(var(--wrap), calc(100% - 32px)); }
    .brand img { height: 52px; }
    .nav-toggle { display: inline-flex; margin-left: 4px; }
    .header-bar { gap: 10px; }
    .cart-link { margin-left: auto; }
    .header-panel {
        display: none; position: absolute; left: 0; right: 0; top: var(--header);
        flex-direction: column; align-items: stretch; padding: 12px 20px 24px;
        background: var(--bg); border-bottom: 1px solid var(--line);
    }
    body.nav-open .header-panel { display: flex; }
    .nav-list { flex-direction: column; align-items: stretch; }
    .nav-booking .sub-menu { position: static; display: block; box-shadow: none; background: transparent; }
    .hero, .split, .banners, .cards, .courses, .shop-layout, .contact-grid, .loc-grid, .cart-layout, .product-layout, .footer-top, .price-extra, .learn, .services, .product-grid, .info-grid {
        grid-template-columns: 1fr;
    }
    .hero-frame img, .photo-hero, .card img, .product-layout .shot { height: 320px; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .banner { height: 320px; }
    .footer-script { text-align: left; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .section { padding: 48px 0; }
    .hero h1, .page-hero h1 { font-size: 2.8rem; }
    .service { display: grid; grid-template-columns: 64px 1fr; text-align: left; column-gap: 14px; }
    .service .icon { margin: 0; }
    .service h2, .service p { grid-column: 2; }
    .band .wrap, .teeth, .section-head, .note, .rule-item { display: flex; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 390px) {
    .btn { width: 100%; }
    .btn-row { flex-direction: column; }
}
