:root {
    --black: #080808;
    --charcoal: #111111;
    --charcoal-2: #181818;
    --gold: #d7a72f;
    --gold-light: #f2d476;
    --cream: #f6f1e7;
    --white: #ffffff;
    --muted: #a7a39b;
    --line: rgba(215, 167, 47, .24);
    --shadow: 0 24px 70px rgba(0, 0, 0, .24);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, "Segoe UI", Arial, sans-serif;
    --header-height: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: #1b1a18;
    background: var(--cream);
    font-family: var(--sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
    line-height: 1.08;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
}

h1 em,
h2 em {
    color: var(--gold-light);
    font-weight: 400;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.section-soft {
    background: #eee7da;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 10000;
    padding: 12px 18px;
    color: var(--black);
    background: var(--gold-light);
    border-radius: 4px;
}

.skip-link:focus {
    top: 12px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    content: "";
    background: currentColor;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

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

.button-gold {
    color: var(--black);
    background: var(--gold);
}

.button-gold:hover {
    background: var(--gold-light);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
}

.button-ghost:hover {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

.button-light {
    color: var(--black);
    background: var(--cream);
}

.button-full {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.text-link {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    padding-bottom: 5px;
    color: #26231d;
    border-bottom: 1px solid var(--gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--gold);
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    color: var(--white);
    background: rgba(8, 8, 8, .88);
    border-bottom: 1px solid rgba(215, 167, 47, .15);
    backdrop-filter: blur(18px);
    transition: height .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    height: 76px;
    background: rgba(8, 8, 8, .97);
    box-shadow: 0 12px 38px rgba(0, 0, 0, .25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1320px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
}

.brand {
    position: relative;
    z-index: 2;
    display: block;
    flex: 0 0 auto;
}

.brand img {
    width: 156px;
    height: 76px;
    object-fit: contain;
    transition: width .25s ease, height .25s ease;
}

.site-header.is-scrolled .brand img {
    width: 138px;
    height: 64px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 33px;
}

.primary-nav > a:not(.nav-cta) {
    position: relative;
    padding: 32px 0;
    color: #ddd9d1;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta)::after {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 0;
    height: 1px;
    content: "";
    background: var(--gold);
    transition: width .2s ease;
}

.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a.active:not(.nav-cta) {
    color: var(--white);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a.active:not(.nav-cta)::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    color: var(--black);
    background: var(--gold);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.menu-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .22);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease, top .25s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 29px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 820px;
    padding-top: var(--header-height);
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    left: 42%;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(.75) contrast(1.04);
}

.hero-overlay {
    background:
        linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, .96) 32%, rgba(8, 8, 8, .55) 61%, rgba(8, 8, 8, .2) 100%),
        linear-gradient(0deg, rgba(8, 8, 8, .6), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 34px;
}

.hero-content h1 {
    max-width: 780px;
    margin-bottom: 28px;
    font-size: clamp(4.8rem, 8vw, 8.4rem);
}

.hero-content p {
    max-width: 590px;
    margin-bottom: 38px;
    color: #d0ccc4;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stat {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 270px;
    padding: 22px 28px;
    color: var(--black);
    background: var(--gold);
    text-transform: uppercase;
}

.hero-stat strong {
    font-size: .77rem;
    letter-spacing: .12em;
}

.hero-stat span {
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, .25);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    text-transform: none;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 100px;
    align-items: end;
}

.split-heading h2,
.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(3rem, 5vw, 5.1rem);
}

.intro-copy {
    padding-bottom: 8px;
}

.intro-copy p {
    margin-bottom: 30px;
    color: #5d584f;
    font-size: 1.04rem;
}

.section-heading {
    margin-bottom: 58px;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.centered {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered .eyebrow::before {
    display: none;
}

.centered p {
    max-width: 600px;
    margin: 22px auto 0;
    color: #625e56;
}

.service-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-feature {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.service-feature::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .05) 65%);
}

.service-feature img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .6s ease;
}

.service-feature:hover img {
    transform: scale(1.04);
    filter: saturate(.85);
}

.service-number {
    position: absolute;
    z-index: 2;
    top: 24px;
    right: 24px;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 1rem;
}

.service-feature > div {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    left: 28px;
}

.service-feature > div > span {
    color: var(--gold-light);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.service-feature h3 {
    margin: 8px 0 0;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
}

.appointment-banner {
    position: relative;
    padding: 86px 0;
    overflow: hidden;
    color: var(--black);
    background: var(--gold);
}

.appointment-banner::after {
    position: absolute;
    top: -110px;
    right: 8%;
    width: 430px;
    height: 430px;
    content: "";
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 50%;
}

.appointment-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.appointment-inner .eyebrow {
    color: #57400c;
}

.appointment-inner h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: end;
}

.gallery-strip figure {
    height: 390px;
    margin: 0;
    overflow: hidden;
    background: #d7d0c3;
}

.gallery-strip figure.tall {
    height: 480px;
}

.gallery-strip img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-strip figure:hover img {
    transform: scale(1.04);
}

.page-hero {
    position: relative;
    display: flex;
    align-items: end;
    min-height: 680px;
    padding: calc(var(--header-height) + 80px) 0 90px;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.page-hero-image,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-image {
    left: 35%;
}

.page-hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    background: linear-gradient(90deg, #080808 4%, rgba(8, 8, 8, .9) 38%, rgba(8, 8, 8, .2) 80%),
                linear-gradient(0deg, rgba(8, 8, 8, .64), transparent);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1,
.simple-hero h1 {
    max-width: 850px;
    margin-bottom: 24px;
    font-size: clamp(4rem, 7vw, 7rem);
}

.page-hero-content p,
.simple-hero p {
    max-width: 560px;
    margin-bottom: 0;
    color: #d5d0c7;
    font-size: 1.05rem;
}

.services-list {
    background: #f4efe5;
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 620px;
    margin-bottom: 86px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(62, 48, 22, .08);
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse .service-row-image {
    order: 2;
}

.service-row-image {
    min-height: 540px;
    overflow: hidden;
    background: #d9d2c7;
}

.service-row-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-row:hover .service-row-image img {
    transform: scale(1.025);
}

.service-row-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 64px;
}

.service-index {
    margin-bottom: 28px;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.service-row-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.service-row-copy p {
    margin-bottom: 28px;
    color: #686259;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    padding: 24px 0;
    margin: 0 0 30px;
    border-top: 1px solid #e7e0d4;
    border-bottom: 1px solid #e7e0d4;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 22px;
    font-size: .9rem;
}

.check-list li::before {
    position: absolute;
    left: 0;
    color: var(--gold);
    content: "◆";
    font-size: .6rem;
}

.simple-hero {
    padding: calc(var(--header-height) + 110px) 0 110px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 30%, rgba(215, 167, 47, .16), transparent 27%),
        var(--black);
}

.gallery-page {
    background: #eee8dc;
}

.gallery-masonry {
    display: grid;
    grid-auto-rows: 240px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #d0c8ba;
}

.gallery-card.tall {
    grid-row: span 2;
}

.gallery-card.wide {
    grid-column: span 2;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease, filter .55s ease;
}

.gallery-card:hover img {
    transform: scale(1.035);
    filter: saturate(.85);
}

.product-hero .page-hero-image {
    filter: saturate(.75);
}

.product-section {
    background: #f3ede2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    position: relative;
    min-height: 390px;
    padding: 32px;
    overflow: hidden;
    background: var(--white);
    border-top: 3px solid var(--gold);
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.product-card > span {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #c7c0b5;
    font-family: var(--serif);
}

.product-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 70px;
    color: var(--black);
    background: var(--gold);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 1.7rem;
}

.product-card h3 {
    margin-bottom: 16px;
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
}

.product-card p {
    color: #716b62;
    font-size: .9rem;
}

.product-card a {
    position: absolute;
    bottom: 30px;
    color: #7d5b09;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-hero {
    padding-bottom: 80px;
}

.contact-cards-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #eee7da;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 34px;
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    transition: transform .25s ease, background-color .25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: #fffdf8;
}

.contact-card > span {
    margin-bottom: 35px;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-card strong {
    overflow-wrap: anywhere;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
}

.contact-card small {
    margin-top: auto;
    color: #787168;
}

.contact-section {
    position: relative;
    padding: 112px 0;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.contact-glow {
    position: absolute;
    top: -240px;
    left: -160px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(215, 167, 47, .13), transparent 65%);
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 100px;
    align-items: center;
}

.contact-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 5vw, 5rem);
}

.contact-copy > p {
    max-width: 470px;
    color: #b9b5ad;
}

.contact-details {
    display: grid;
    gap: 18px;
    margin-top: 40px;
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-details small {
    display: block;
    color: var(--muted);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-icon {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    height: 44px;
    color: var(--gold);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: .82rem;
    font-weight: 800;
}

.contact-form {
    padding: 46px;
    color: #222;
    background: var(--cream);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
}

.contact-form label {
    display: block;
}

.contact-form label > span {
    display: block;
    margin-bottom: 8px;
    color: #665f54;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    color: #201e1b;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #c7bfb1;
    border-radius: 0;
    outline: none;
}

.contact-form input,
.contact-form select {
    height: 46px;
}

.contact-form textarea {
    padding: 12px 0;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.full-field {
    grid-column: 1 / -1;
}

.contact-form .button {
    margin-top: 26px;
}

.form-note {
    margin: 12px 0 0;
    color: #888075;
    font-size: .72rem;
    text-align: center;
}

.form-alert {
    padding: 12px 14px;
    margin-bottom: 22px;
    color: #5d1c18;
    background: #f7d8d4;
    border-left: 3px solid #9b342b;
    font-size: .86rem;
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.site-footer {
    padding: 72px 0 24px;
    color: #bdb8af;
    background: var(--black);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr 1.1fr;
    gap: 70px;
}

.footer-brand img {
    width: 190px;
    height: 115px;
    margin-bottom: 18px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 320px;
    color: #8e8a82;
    font-size: .87rem;
}

.footer-grid h3 {
    margin: 20px 0 24px;
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
    display: block;
    margin-bottom: 10px;
    font-size: .84rem;
}

.footer-grid a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    margin-top: 50px;
    color: #77736d;
    border-top: 1px solid #222;
    font-size: .74rem;
}

.footer-bottom a {
    color: var(--gold);
    font-weight: 700;
}

.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--white);
    background: #168f49;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .04em;
    transition: transform .2s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.06);
}

.status-page {
    display: grid;
    place-items: center;
    min-height: 760px;
    padding: calc(var(--header-height) + 80px) 24px 80px;
    color: var(--white);
    background: radial-gradient(circle at center, #211a0b, #080808 60%);
}

.status-card {
    max-width: 720px;
    text-align: center;
}

.status-card .eyebrow::before {
    display: none;
}

.status-mark {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--black);
    background: var(--gold);
    border-radius: 50%;
    font-size: 2rem;
}

.status-card h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

.status-card p {
    max-width: 580px;
    margin: 0 auto 35px;
    color: #bbb6ae;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .primary-nav {
        gap: 22px;
    }

    .nav-cta {
        padding: 0 14px;
    }

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

    .footer-grid {
        grid-template-columns: 1.2fr .8fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 78px;
    }

    .site-header,
    .site-header.is-scrolled {
        height: var(--header-height);
    }

    .header-inner {
        width: min(100% - 32px, 1320px);
    }

    .brand img,
    .site-header.is-scrolled .brand img {
        width: 135px;
        height: 65px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        z-index: 1001;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        width: min(88vw, 430px);
        height: 100dvh;
        padding: 110px 42px 48px;
        overflow-y: auto;
        background: #0b0b0b;
        border-left: 1px solid var(--line);
        box-shadow: -30px 0 70px rgba(0, 0, 0, .45);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .3s ease, visibility .3s ease;
    }

    .primary-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .primary-nav > a:not(.nav-cta) {
        padding: 17px 0;
        border-bottom: 1px solid #222;
        font-family: var(--serif);
        font-size: 1.45rem;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
    }

    .primary-nav > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        justify-content: center;
        min-height: 54px;
        margin-top: 28px;
    }

    body.menu-open::after {
        position: fixed;
        z-index: 999;
        inset: 0;
        content: "";
        background: rgba(0, 0, 0, .55);
        backdrop-filter: blur(3px);
    }

    .hero {
        min-height: 740px;
    }

    .hero-media {
        left: 18%;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(8, 8, 8, .98), rgba(8, 8, 8, .62) 75%, rgba(8, 8, 8, .35)),
                    linear-gradient(0deg, rgba(8, 8, 8, .75), transparent);
    }

    .hero-content h1 {
        font-size: clamp(4rem, 11vw, 6.4rem);
    }

    .split-heading,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .service-feature:last-child {
        grid-column: 1 / -1;
        min-height: 420px;
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
    }

    .service-row.reverse .service-row-image {
        order: 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .section {
        padding: 78px 0;
    }

    .hero {
        align-items: end;
        min-height: 720px;
        padding-bottom: 90px;
    }

    .hero-media {
        left: 0;
    }

    .hero-media img {
        object-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(0deg, #080808 6%, rgba(8, 8, 8, .75) 56%, rgba(8, 8, 8, .3));
    }

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

    .hero-content h1 {
        margin-bottom: 20px;
        font-size: clamp(3.5rem, 16vw, 5.4rem);
    }

    .hero-content p {
        font-size: .96rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stat {
        display: none;
    }

    .button {
        width: 100%;
    }

    .split-heading h2,
    .section-heading h2 {
        font-size: 2.85rem;
    }

    .service-showcase {
        grid-template-columns: 1fr;
    }

    .service-feature,
    .service-feature:last-child {
        grid-column: auto;
        min-height: 440px;
    }

    .appointment-inner,
    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .appointment-banner {
        padding: 70px 0;
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-strip figure,
    .gallery-strip figure.tall {
        height: 310px;
    }

    .page-hero {
        min-height: 610px;
        padding-bottom: 62px;
    }

    .page-hero-image {
        left: 0;
    }

    .page-hero-overlay {
        background: linear-gradient(0deg, #080808 2%, rgba(8, 8, 8, .78) 62%, rgba(8, 8, 8, .25));
    }

    .page-hero-content h1,
    .simple-hero h1 {
        font-size: clamp(3.3rem, 14vw, 5rem);
    }

    .service-row {
        margin-bottom: 48px;
    }

    .service-row-image {
        min-height: 390px;
    }

    .service-row-copy {
        padding: 42px 28px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .simple-hero {
        padding-top: calc(var(--header-height) + 75px);
        padding-bottom: 80px;
    }

    .gallery-masonry {
        grid-auto-rows: 220px;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-card.wide {
        grid-column: span 2;
    }

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

    .product-card {
        min-height: 340px;
    }

    .product-icon {
        margin-bottom: 45px;
    }

    .contact-section {
        padding: 82px 0;
    }

    .contact-form {
        padding: 30px 22px;
    }

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

    .full-field {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .gallery-strip figure,
    .gallery-strip figure.tall {
        height: 380px;
    }

    .gallery-masonry {
        display: block;
    }

    .gallery-card {
        height: 390px;
        margin-bottom: 12px;
    }

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

    .footer-grid > div:last-child,
    .footer-brand {
        grid-column: auto;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 54px;
        height: 54px;
    }
}
