:root {
    --ink: #151412;
    --charcoal: #24211d;
    --gold: #b98935;
    --gold-light: #e7c46f;
    --champagne: #f8f0e4;
    --ivory: #fffaf2;
    --rose: #d7a5a1;
    --sage: #778578;
    --muted: #766e65;
    --line: rgba(185, 137, 53, 0.18);
    --shadow: 0 28px 80px rgba(21, 20, 18, 0.16);
    --soft-shadow: 0 18px 48px rgba(21, 20, 18, 0.10);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 18px;
    left: 50%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    width: min(calc(100% - 32px), 1180px);
    min-height: 76px;
    padding: 10px 12px 10px 18px;
    border: 1px solid rgba(255, 250, 242, 0.36);
    border-radius: var(--radius);
    background: rgba(21, 20, 18, 0.68);
    color: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover {
    color: #fff;
}

.header-action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    white-space: nowrap;
}

.header-action,
.button-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1f1710;
    box-shadow: 0 12px 30px rgba(185, 137, 53, 0.24);
}

.button-ghost {
    border-color: rgba(185, 137, 53, 0.35);
    background: rgba(255, 250, 242, 0.86);
    color: var(--charcoal);
}

.button-light {
    background: #fff;
    color: var(--charcoal);
}

.button:hover,
.header-action:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.10);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 10px;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(21, 20, 18, 0.86), rgba(21, 20, 18, 0.44), rgba(21, 20, 18, 0.76)),
        url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?q=80&w=1800&auto=format&fit=crop") center / cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 170px;
    background: linear-gradient(0deg, var(--ivory), rgba(255, 250, 242, 0));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    gap: 56px;
    align-items: center;
    padding-top: 80px;
}

.eyebrow {
    margin: 0;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    line-height: 0.98;
    letter-spacing: -0.03em;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 9vw, 112px);
}

.lead {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

.hero-subtitle {
    max-width: 720px;
    margin: -6px 0 18px;
    color: var(--gold-light);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-actions {
    margin-bottom: 78px;
}

.hero-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.88);
    box-shadow: var(--shadow);
}

.hero-panel img {
    width: 190px;
    height: 190px;
    margin: 0 auto 26px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-panel dl {
    margin: 0;
    display: grid;
    gap: 10px;
}

.hero-panel div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.hero-panel dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel dd {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
    text-align: right;
}

.intro-strip {
    position: relative;
    z-index: 2;
    margin-top: -58px;
    padding-bottom: 70px;
}

.intro-grid,
.menu-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.intro-grid article,
.copy-panel,
.menu-card,
.course-board,
.review-card,
.facebook-card,
.contact-panel,
.map-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
}

.intro-grid article {
    padding: 26px;
}

.icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
}

.intro-grid h2 {
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.intro-grid p,
.copy-panel,
.center-heading p,
.training-card p,
.section-heading p,
.review-card p,
.contact-panel p {
    color: var(--muted);
}

.section {
    padding: 105px 0;
}

section[id] {
    scroll-margin-top: 120px;
}

.muted {
    background: var(--champagne);
}

.split,
.training-grid,
.social-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.section-heading h2,
.center-heading h2,
.training-card h2,
.contact-panel h2 {
    margin: 12px 0 0;
    color: var(--charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 6vw, 68px);
}

.copy-panel {
    padding: 38px;
    font-size: 17px;
}

.copy-panel p:last-child {
    margin-bottom: 0;
}

.center-heading {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
    padding: 28px;
}

.menu-card h3,
.course-board h3 {
    margin-bottom: 20px;
    color: var(--charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-card li,
.course-list p {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 13px 0;
    border-top: 1px solid rgba(21, 20, 18, 0.08);
    color: var(--muted);
    font-size: 14px;
}

.menu-card li span:only-child {
    max-width: 100%;
}

.menu-card strong,
.course-list strong {
    color: var(--charcoal);
    white-space: nowrap;
}

.training {
    background:
        radial-gradient(circle at 15% 20%, rgba(185, 137, 53, 0.16), transparent 32%),
        linear-gradient(135deg, #fffaf2, #f7eee0);
}

.training-card {
    padding: 44px;
    border-radius: var(--radius);
    background: var(--charcoal);
    color: #fff;
    box-shadow: var(--shadow);
}

.training-card h2 {
    color: #fff;
}

.training-card p {
    color: rgba(255, 255, 255, 0.75);
}

.course-board {
    padding: 34px;
}

.image-band {
    padding: 110px 0;
    background:
        linear-gradient(90deg, rgba(21, 20, 18, 0.78), rgba(21, 20, 18, 0.38)),
        url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?q=80&w=1800&auto=format&fit=crop") center / cover fixed;
    color: #fff;
}

.image-band h2 {
    max-width: 760px;
    margin: 12px 0 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 6vw, 72px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    grid-auto-rows: 230px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--charcoal);
    box-shadow: var(--soft-shadow);
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(21, 20, 18, 0.70), rgba(21, 20, 18, 0.10));
}

.gallery-item:hover::before {
    transform: scale(1.06);
}

.gallery-item span {
    position: absolute;
    z-index: 1;
    left: 20px;
    right: 20px;
    bottom: 18px;
    color: #fff;
    font-weight: 900;
}

.gallery-one {
    grid-row: span 2;
}

.gallery-one::before {
    background-image: url("assets/1.jpg");
}

.gallery-two::before {
    background-image: url("assets/2.jpg");
}

.gallery-three::before {
    background-image: url("assets/3.jpg");
}

.gallery-four::before {
    background-image: url("assets/4.jpg");
}

.gallery-four {
    grid-column: span 2;
}

.review-card {
    padding: 30px;
}

.review-person {
    position: relative;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--charcoal), #4c453b);
    box-shadow: inset 0 0 0 2px rgba(231, 196, 111, 0.28);
}

.review-person::before,
.review-person::after {
    content: "";
    position: absolute;
    left: 50%;
    background: var(--gold-light);
    transform: translateX(-50%);
}

.review-person::before {
    top: 15px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.review-person::after {
    bottom: 14px;
    width: 34px;
    height: 18px;
    border-radius: 18px 18px 8px 8px;
}

.review-rating {
    display: inline-grid;
    min-height: 30px;
    margin-bottom: 16px;
    padding: 4px 12px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--champagne);
    color: var(--charcoal);
    font-weight: 900;
}

.review-card strong {
    color: var(--charcoal);
}

.social-copy {
    display: grid;
    gap: 16px;
    max-width: 560px;
    margin-top: 28px;
}

.social-copy p {
    margin: 0;
    font-size: 17px;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 12px;
    min-height: 50px;
    margin-top: 6px;
    padding: 0 18px;
    border: 1px solid rgba(185, 137, 53, 0.38);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--charcoal), #3f382f);
    color: var(--gold-light);
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(21, 20, 18, 0.16);
}

.facebook-link span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(231, 196, 111, 0.42);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
}

.facebook-card {
    min-height: 660px;
    padding: 18px;
    overflow: hidden;
    background: #fff;
}

.contact-section {
    background: linear-gradient(180deg, var(--ivory), #ead8c6);
}

.contact-panel {
    padding: 42px;
}

.contact-panel p a {
    color: var(--gold);
    font-weight: 800;
}

.contact-panel .button-primary {
    color: #fff;
}

.map-panel {
    min-height: 470px;
    overflow: hidden;
}

.map-panel iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    border: 0;
}

.booking-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
    margin-top: 56px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--soft-shadow);
}

.booking-intro h2 {
    margin: 12px 0 18px;
    color: var(--charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.03em;
}

.booking-intro p:not(.eyebrow),
.form-note {
    color: var(--muted);
}

.booking-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.booking-form label {
    display: grid;
    gap: 8px;
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(21, 20, 18, 0.12);
    border-radius: var(--radius);
    background: var(--ivory);
    color: var(--ink);
    font: inherit;
    letter-spacing: 0;
    padding: 14px 15px;
    outline: none;
    text-transform: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form textarea {
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(185, 137, 53, 0.12);
}

.booking-form .button {
    justify-self: start;
    cursor: pointer;
}

.form-note {
    margin: -4px 0 0;
    font-size: 13px;
}

.form-note.success {
    color: var(--charcoal);
    font-weight: 800;
}

.site-footer {
    padding: 56px 0;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr auto auto auto;
    gap: 32px;
    align-items: center;
}

.footer-grid img {
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-grid p {
    max-width: 360px;
    margin: 0;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-grid a,
.footer-rating strong {
    color: #fff;
    font-weight: 800;
}

.footer-rating {
    display: grid;
    min-width: 170px;
    gap: 2px;
    padding: 18px;
    border: 1px solid rgba(231, 196, 111, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.footer-rating span {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.footer-rating small {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 800;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(231, 196, 111, 0.32);
    border-radius: var(--radius);
    background: rgba(231, 196, 111, 0.10);
}

.footer-social span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--gold-light);
    box-shadow: var(--soft-shadow);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1000px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav {
        position: fixed;
        top: 92px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 4px;
        padding: 18px;
        border-radius: var(--radius);
        background: rgba(21, 20, 18, 0.96);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: 0.2s ease;
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 14px;
    }

    .header-action {
        display: none;
    }

    .hero-grid,
    .split,
    .training-grid,
    .social-grid,
    .contact-grid,
    .booking-wrap {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 130px;
    }

    .hero-grid {
        padding-top: 0;
    }

    .hero-panel {
        max-width: 420px;
    }

    .intro-grid,
    .menu-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .site-header {
        top: 10px;
        width: min(calc(100% - 20px), 1180px);
    }

    .brand span {
        display: none;
    }

    h1 {
        font-size: 54px;
    }

    .lead {
        font-size: 17px;
    }

    .section {
        padding: 74px 0;
    }

    .intro-strip {
        margin-top: -28px;
    }

    .intro-grid,
    .menu-grid,
    .reviews-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 220px;
    }

    .gallery-one {
        grid-row: span 1;
    }

    .gallery-four {
        grid-column: span 1;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .copy-panel,
    .training-card,
    .course-board,
    .contact-panel,
    .booking-wrap {
        padding: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}
