/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: #ffffff;
    color: #181818;

    font-family: Arial, Helvetica, sans-serif;

    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font: inherit;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --white: #ffffff;
    --off-white: #f8f7f5;

    --black: #111111;
    --text: #242424;
    --muted: #747474;

    --red: #d71920;
    --red-dark: #b51218;

    --border: #e8e6e3;

    --container: 1280px;
}


/* =========================================
   GENERAL
========================================= */

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


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 1.8rem;

    border: 1px solid transparent;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

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

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
}


/* =========================================
   HEADER
========================================= */

.header {
    position: relative;
    z-index: 100;

    width: 100%;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    align-items: center;

    min-height: 94px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 155px;
    height: auto;
}


/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;

    gap: 2rem;

    margin-left: auto;
}

.nav a {
    position: relative;

    padding: 0.4rem 0;

    color: #555555;

    font-size: 0.82rem;
    font-weight: 500;

    transition: color 0.25s ease;
}

.nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--red);

    transition: width 0.25s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--black);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}


/* HEADER CTA */

.btn-header {
    min-height: 44px;

    margin-left: 2rem;

    padding: 0 1.5rem;

    background: var(--black);
    color: var(--white);
}

.btn-header:hover {
    background: var(--red);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    margin-left: auto;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 1px;

    margin: 6px auto;

    background: var(--black);
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    background: var(--white);

    overflow: hidden;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(420px, 0.95fr);

    align-items: center;

    gap: clamp(3rem, 6vw, 7rem);

    min-height: calc(100svh - 94px);

    padding-top: 4rem;
    padding-bottom: 4rem;
}


/* =========================================
   HERO TEXT
========================================= */

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

.eyebrow {
    display: flex;
    align-items: center;

    gap: 0.8rem;

    margin-bottom: 1.8rem;

    color: var(--red);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.eyebrow::before {
    content: "";

    width: 34px;
    height: 2px;

    background: var(--red);
}


/* TITLE */

.hero h1 {
    max-width: 680px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(4rem, 6.3vw, 7rem);
    font-weight: 400;

    line-height: 0.93;

    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;

    color: var(--red);

    font-style: italic;
}


/* DESCRIPTION */

.hero-description {
    max-width: 500px;

    margin-top: 2rem;

    color: #606060;

    font-size: 1rem;

    line-height: 1.8;
}


/* ACTIONS */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 2rem;

    margin-top: 2.5rem;
}

.hero-link {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    padding: 0.8rem 0;

    border-bottom: 1px solid var(--black);

    color: var(--black);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.hero-link span {
    font-size: 1.1rem;

    transition: transform 0.25s ease;
}

.hero-link:hover {
    color: var(--red);

    border-color: var(--red);
}

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


/* SIGNATURE */

.hero-signature {
    display: flex;
    align-items: center;

    gap: 1rem;

    margin-top: 4rem;

    color: #9a9a9a;

    font-size: 0.6rem;
    font-weight: 600;

    letter-spacing: 0.22em;
}

.hero-signature span {
    display: block;

    width: 50px;
    height: 1px;

    background: #cfcfcf;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-width: 0;
}

.hero-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--off-white);
}

.hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    border: 1px solid rgba(0, 0, 0, 0.06);

    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:hover .hero-image img {
    transform: scale(1.025);
}


/* =========================================
   HERO BADGE
========================================= */

.hero-badge {
    position: absolute;

    left: -42px;
    bottom: 42px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 112px;
    height: 112px;

    border-radius: 50%;

    background: var(--red);

    color: var(--white);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hero-badge span {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.5rem;
}

.hero-badge small {
    margin-top: 0.25rem;

    font-size: 0.48rem;
    font-weight: 700;

    letter-spacing: 0.17em;
}

.hero-quote-author {
    margin-top: 1rem;

    color: #8a8a8a;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;
    font-style: italic;

    letter-spacing: 0.02em;
}

/* =========================================
   SECTION COMMON
========================================= */

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
    align-items: end;

    gap: 4rem;

    margin-bottom: 4rem;
}

.section-eyebrow {
    display: flex;
    align-items: center;

    gap: 0.8rem;

    margin-bottom: 1.4rem;

    color: var(--red);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.section-eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--red);
}

.section-heading h2 {
    max-width: 720px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -0.045em;
}

.section-heading h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}

.section-intro {
    max-width: 420px;

    color: var(--muted);

    font-size: 0.95rem;
    line-height: 1.75;
}


/* =========================================
   SERVICES
========================================= */

.services {
    padding: 9rem 0;

    background: var(--off-white);
}

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

    border-top: 1px solid #dcdad7;
}

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 340px;

    padding: 2rem;

    background: var(--white);

    border-right: 1px solid #e2e0dd;
    border-bottom: 1px solid #e2e0dd;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.service-card:nth-child(odd) {
    border-left: 1px solid #e2e0dd;
}

.service-card:hover {
    z-index: 2;

    transform: translateY(-5px);
}


/* FEATURED */

.service-card-featured {
    background: var(--red);
    color: var(--white);
}


/* DARK CARD */

.service-card-dark {
    background: var(--black);
    color: var(--white);
}


/* NUMBER */

.service-number {
    color: #a0a0a0;

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.service-card-featured .service-number,
.service-card-dark .service-number {
    color: rgba(255, 255, 255, 0.6);
}


/* CONTENT */

.service-content {
    max-width: 430px;

    margin-top: auto;
}

.service-content h3 {
    margin-bottom: 1rem;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;

    letter-spacing: -0.035em;
}

.service-content p {
    max-width: 360px;

    color: #737373;

    font-size: 0.9rem;

    line-height: 1.7;
}

.service-card-featured .service-content p,
.service-card-dark .service-content p {
    color: rgba(255, 255, 255, 0.72);
}

.service-small {
    display: block;

    margin-bottom: 1rem;

    color: var(--red);

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}


/* ARROW */

.service-arrow {
    position: absolute;

    top: 2rem;
    right: 2rem;

    font-size: 1.3rem;

    transition: transform 0.25s ease;
}

.service-card:hover .service-arrow {
    transform: translate(4px, -4px);
}


/* SERVICES FOOTER */

.services-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    padding-top: 2rem;
}

.services-footer p {
    color: var(--muted);

    font-size: 0.85rem;
}

.services-footer a {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    padding-bottom: 0.4rem;

    border-bottom: 1px solid var(--black);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.services-footer a span {
    font-size: 1rem;

    transition: transform 0.25s ease;
}

.services-footer a:hover {
    color: var(--red);

    border-color: var(--red);
}

.services-footer a:hover span {
    transform: translateX(4px);
}

/* =========================================
   ABOUT HOME
========================================= */

.about-home {
    padding: 10rem 0;

    background: var(--white);
}

.about-home-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr) minmax(0, 0.95fr);

    align-items: center;

    gap: clamp(4rem, 8vw, 8rem);
}


/* =========================================
   ABOUT VISUAL
========================================= */

.about-home-visual {
    position: relative;

    min-width: 0;
}

.about-home-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--off-white);
}

.about-home-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-home-visual:hover .about-home-image img {
    transform: scale(1.025);
}


/* RED DETAIL */

.about-home-image::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 6px;
    height: 120px;

    background: var(--red);
}


/* =========================================
   ABOUT IMAGE LABEL
========================================= */

.about-home-label {
    position: absolute;

    right: -35px;
    bottom: 35px;

    display: flex;
    flex-direction: column;

    gap: 0.45rem;

    min-width: 170px;

    padding: 1.5rem;

    background: var(--black);

    color: var(--white);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.about-home-label span {
    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.about-home-label span:nth-child(2) {
    color: #ff4b50;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-home-content {
    max-width: 590px;
}

.about-home-content h2 {
    max-width: 570px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.2rem, 5vw, 5.7rem);
    font-weight: 400;

    line-height: 0.97;

    letter-spacing: -0.05em;
}

.about-home-content h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}


/* =========================================
   ABOUT TEXT
========================================= */

.about-home-text {
    display: grid;

    gap: 1rem;

    max-width: 500px;

    margin-top: 2.2rem;
}

.about-home-text p {
    color: var(--muted);

    font-size: 0.95rem;

    line-height: 1.8;
}


/* =========================================
   ABOUT VALUES
========================================= */

.about-home-values {
    margin-top: 3rem;

    border-top: 1px solid var(--border);
}

.about-home-values div {
    display: grid;
    grid-template-columns: 55px 1fr;

    align-items: center;

    min-height: 62px;

    border-bottom: 1px solid var(--border);
}

.about-home-values strong {
    color: var(--red);

    font-size: 0.62rem;

    letter-spacing: 0.1em;
}

.about-home-values span {
    color: var(--black);

    font-size: 0.82rem;
    font-weight: 600;
}


/* =========================================
   ABOUT LINK
========================================= */

.about-home-link {
    display: inline-flex;
    align-items: center;

    gap: 1rem;

    margin-top: 2.5rem;

    padding-bottom: 0.45rem;

    border-bottom: 1px solid var(--black);

    color: var(--black);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.about-home-link span {
    font-size: 1rem;

    transition: transform 0.25s ease;
}

.about-home-link:hover {
    color: var(--red);

    border-color: var(--red);
}

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

/* =========================================
   GALLERY HOME
========================================= */

.gallery-home {
    padding: 9rem 0;

    background: var(--black);
    color: var(--white);
}


/* HEADER */

.gallery-home-header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr) minmax(280px, 0.6fr);

    align-items: end;

    gap: 5rem;

    margin-bottom: 4rem;
}

.gallery-eyebrow {
    display: flex;
    align-items: center;

    gap: 0.8rem;

    margin-bottom: 1.4rem;

    color: #ff4b50;

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.gallery-eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--red);
}

.gallery-home h2 {
    max-width: 700px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -0.045em;
}

.gallery-home h2 span {
    display: block;

    color: #ff4b50;

    font-style: italic;
}


/* HEADER RIGHT */

.gallery-home-header-right {
    max-width: 400px;
}

.gallery-home-header-right p {
    margin-bottom: 2rem;

    color: #b5b5b5;

    font-size: 0.92rem;

    line-height: 1.75;
}

.gallery-home-header-right a {
    display: inline-flex;
    align-items: center;

    gap: 0.9rem;

    padding-bottom: 0.45rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.6);

    color: var(--white);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.gallery-home-header-right a span {
    font-size: 1rem;

    transition: transform 0.25s ease;
}

.gallery-home-header-right a:hover {
    color: #ff4b50;

    border-color: var(--red);
}

.gallery-home-header-right a:hover span {
    transform: translateX(4px);
}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-showcase {
    display: grid;

    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 300px 300px;

    gap: 1rem;
}

.gallery-item {
    position: relative;

    display: block;

    min-width: 0;

    overflow: hidden;

    background: #1a1a1a;
}

.gallery-item-large {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.gallery-item-small:nth-of-type(2) {
    grid-column: 7 / 10;
    grid-row: 1;
}

.gallery-item-small:nth-of-type(3) {
    grid-column: 10 / 13;
    grid-row: 1;
}

.gallery-item-wide {
    grid-column: 7 / 13;
    grid-row: 2;
}


/* IMAGES */

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);

    filter: brightness(0.7);
}


/* =========================================
   GALLERY OVERLAY
========================================= */

.gallery-item-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 1.5rem;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            transparent 55%);

    color: var(--white);

    opacity: 0;

    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span:first-child {
    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.gallery-item-overlay span:last-child {
    font-size: 1.4rem;

    transition: transform 0.25s ease;
}

.gallery-item:hover .gallery-item-overlay span:last-child {
    transform: translate(3px, -3px);
}


/* =========================================
   GALLERY BOTTOM
========================================= */

.gallery-home-bottom {
    display: flex;
    align-items: center;

    gap: 1.5rem;

    margin-top: 3rem;
}

.gallery-home-bottom p {
    flex-shrink: 0;

    color: #8d8d8d;

    font-size: 0.55rem;
    font-weight: 600;

    letter-spacing: 0.2em;
}

.gallery-home-line {
    width: 100%;
    height: 1px;

    background: #292929;
}

/* =========================================
   EVENTS HOME
========================================= */

.events-home {
    padding: 10rem 0;

    background: var(--white);
}

.events-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(0, 0.95fr);

    align-items: center;

    gap: clamp(4rem, 8vw, 8rem);
}


/* =========================================
   EVENTS VISUAL
========================================= */

.events-visual {
    position: relative;

    min-width: 0;
}

.events-image {
    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--off-white);
}

.events-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.events-visual:hover .events-image img {
    transform: scale(1.025);
}


/* DECORATIVE FRAME */

.events-visual::before {
    content: "";

    position: absolute;

    top: -24px;
    left: -24px;

    z-index: 0;

    width: 45%;
    height: 45%;

    border-top: 1px solid var(--red);
    border-left: 1px solid var(--red);

    pointer-events: none;
}

.events-image {
    position: relative;
    z-index: 1;
}


/* =========================================
   EVENTS NUMBER
========================================= */

.events-number {
    position: absolute;

    right: -35px;
    bottom: 35px;

    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 150px;
    height: 115px;

    padding: 1.5rem;

    background: var(--red);
    color: var(--white);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.events-number span {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 2.2rem;

    line-height: 1;
}

.events-number small {
    margin-top: 0.7rem;

    font-size: 0.48rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}


/* =========================================
   EVENTS CONTENT
========================================= */

.events-content {
    max-width: 600px;
}

.events-content h2 {
    max-width: 590px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.2rem, 5vw, 5.7rem);
    font-weight: 400;

    line-height: 0.97;

    letter-spacing: -0.05em;
}

.events-content h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}

.events-description {
    max-width: 500px;

    margin-top: 2rem;

    color: var(--muted);

    font-size: 0.95rem;

    line-height: 1.8;
}


/* =========================================
   EVENTS SERVICES
========================================= */

.events-services {
    margin-top: 3rem;

    border-top: 1px solid var(--border);
}

.events-services div {
    display: grid;

    grid-template-columns: 55px 1fr;

    align-items: center;

    min-height: 65px;

    border-bottom: 1px solid var(--border);
}

.events-services span {
    color: var(--red);

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 0.1em;
}

.events-services p {
    color: var(--black);

    font-size: 0.84rem;
    font-weight: 600;
}


/* =========================================
   EVENTS ACTIONS
========================================= */

.events-actions {
    display: flex;
    align-items: center;

    gap: 2rem;

    margin-top: 2.7rem;
}

.events-link {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    padding-bottom: 0.4rem;

    border-bottom: 1px solid var(--black);

    color: var(--black);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.events-link span {
    font-size: 1rem;

    transition: transform 0.25s ease;
}

.events-link:hover {
    color: var(--red);

    border-color: var(--red);
}

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

/* =========================================
   PRODUCTS HOME
========================================= */

.products-home {
    padding: 9rem 0;

    background: var(--off-white);
}


/* HEADER */

.products-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr) minmax(280px, 0.6fr);

    align-items: end;

    gap: 5rem;

    margin-bottom: 4rem;
}

.products-header h2 {
    max-width: 720px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -0.045em;
}

.products-header h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}


/* HEADER RIGHT */

.products-header-right {
    max-width: 400px;
}

.products-header-right p {
    margin-bottom: 2rem;

    color: var(--muted);

    font-size: 0.92rem;
    line-height: 1.75;
}

.products-header-right a {
    display: inline-flex;
    align-items: center;

    gap: 0.9rem;

    padding-bottom: 0.45rem;

    border-bottom: 1px solid var(--black);

    color: var(--black);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.products-header-right a span {
    font-size: 1rem;

    transition: transform 0.25s ease;
}

.products-header-right a:hover {
    color: var(--red);

    border-color: var(--red);
}

.products-header-right a:hover span {
    transform: translateX(4px);
}


/* =========================================
   PRODUCTS GRID
========================================= */

.products-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 1.5rem;
}


/* CARD */

.product-card {
    min-width: 0;

    cursor: pointer;
}

.product-image {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #eeeeec;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}


/* CATEGORY */

.product-category {
    position: absolute;

    top: 1rem;
    left: 1rem;

    padding: 0.6rem 0.85rem;

    background: var(--white);

    color: var(--black);

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.14em;
}


/* =========================================
   PRODUCT INFO
========================================= */

.product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    padding: 1.4rem 0.2rem;
}

.product-brand {
    margin-bottom: 0.4rem;

    color: var(--red);

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.product-info h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.5rem;
    font-weight: 400;
}

.product-arrow {
    flex-shrink: 0;

    color: #888888;

    font-size: 1.2rem;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.product-card:hover .product-arrow {
    color: var(--red);

    transform: translate(3px, -3px);
}


/* =========================================
   PRODUCTS BOTTOM
========================================= */

.products-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-top: 3rem;
    padding-top: 2rem;

    border-top: 1px solid #dcdad7;
}

.products-bottom p {
    max-width: 500px;

    color: var(--muted);

    font-size: 0.85rem;

    line-height: 1.7;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--red);
}

/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 5rem 0 2rem;

    background: var(--black);
    color: var(--white);
}


/* MAIN */

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(240px, 1.4fr) repeat(3, minmax(140px, 0.6fr));

    gap: 4rem;
}


/* BRAND */

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 160px;
    height: auto;

    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 260px;

    color: #8f8f8f;

    font-size: 0.82rem;
    line-height: 1.7;
}


/* TITLES */

.footer-title {
    margin-bottom: 1.5rem;

    color: #6f6f6f;

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}


/* NAV */

.footer-nav,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 0.85rem;
}

.footer-nav a,
.footer-contact a,
.footer-social a {
    color: #d9d9d9;

    font-size: 0.75rem;

    transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-social a:hover {
    color: #ff4b50;
}

.footer-contact p {
    margin-top: 0.4rem;

    color: #777;

    font-size: 0.72rem;
    line-height: 1.6;
}


/* DIVIDER */

.footer-divider {
    width: 100%;
    height: 1px;

    margin: 4rem 0 2rem;

    background: #282828;
}


/* BOTTOM */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;
}

.footer-legal {
    display: flex;
    align-items: center;

    gap: 1.5rem;

    flex-wrap: wrap;
}

.footer-legal p,
.footer-legal a,
.footer-credit {
    color: #686868;

    font-size: 0.6rem;

    letter-spacing: 0.04em;
}

.footer-legal a,
.footer-credit a {
    transition: color 0.25s ease;
}

.footer-legal a:hover,
.footer-credit a:hover {
    color: var(--white);
}

.footer-credit a {
    color: #bcbcbc;
}

/* =========================================
   BOOKING HOME
========================================= */

.booking-home {
    padding: 9rem 0;

    background: var(--red);
    color: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr) minmax(360px, 0.7fr);

    align-items: center;

    gap: clamp(4rem, 8vw, 8rem);
}


/* CONTENT */

.booking-content {
    max-width: 720px;
}

.booking-eyebrow {
    display: flex;
    align-items: center;

    gap: 0.8rem;

    margin-bottom: 1.6rem;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.booking-eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--white);
}

.booking-content h2 {
    max-width: 700px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.5rem, 5.8vw, 6.5rem);
    font-weight: 400;

    line-height: 0.94;
    letter-spacing: -0.05em;
}

.booking-content h2 span {
    display: block;

    color: var(--white);

    font-style: italic;

    opacity: 0.76;
}

.booking-description {
    max-width: 530px;

    margin-top: 2rem;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.95rem;
    line-height: 1.8;
}


/* ACTIONS */

.booking-actions {
    display: flex;
    align-items: center;

    gap: 2.2rem;

    margin-top: 2.7rem;
}

.booking-whatsapp {
    background: var(--white);
    color: var(--black);
}

.booking-whatsapp:hover {
    background: var(--black);
    color: var(--white);
}

.booking-phone {
    display: flex;
    flex-direction: column;

    gap: 0.35rem;

    color: var(--white);
}

.booking-phone-label {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.booking-phone strong {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.25rem;
    font-weight: 400;
}


/* =========================================
   BOOKING CARD
========================================= */

.booking-card {
    background: var(--black);

    padding: 2.5rem;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.booking-card-top {
    display: flex;
    flex-direction: column;

    padding-bottom: 2rem;

    border-bottom: 1px solid #2c2c2c;
}

.booking-card-top span {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 2.2rem;
}

.booking-card-top small {
    margin-top: 0.3rem;

    color: var(--red);

    font-size: 0.5rem;
    font-weight: 700;

    letter-spacing: 0.25em;
}


/* INFO */

.booking-card-content {
    margin-top: 1rem;
}

.booking-info {
    display: grid;
    grid-template-columns: 45px 1fr;

    align-items: center;

    min-height: 85px;

    border-bottom: 1px solid #2c2c2c;
}

.booking-info>span {
    color: #696969;

    font-size: 0.58rem;
    font-weight: 700;
}

.booking-info small {
    display: block;

    margin-bottom: 0.4rem;

    color: #777;

    font-size: 0.48rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.booking-info p {
    color: #e9e9e9;

    font-size: 0.82rem;
}


/* LINK */

.booking-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 2rem;

    padding-bottom: 0.6rem;

    border-bottom: 1px solid #666;

    color: var(--white);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.booking-card-link span {
    font-size: 1.1rem;

    transition: transform 0.25s ease;
}

.booking-card-link:hover {
    color: #ff4b50;

    border-color: var(--red);
}

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


/* =========================================
   CONTACT HOME
========================================= */

.contact-home {
    padding: 8rem 0 4rem;

    background: var(--white);
}

.contact-home-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-block {
    min-height: 340px;

    padding: 2.5rem;

    border-right: 1px solid var(--border);
}

.contact-block:first-child {
    border-left: 1px solid var(--border);
}

.contact-number {
    display: block;

    margin-bottom: 3rem;

    color: #a3a3a3;

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.contact-label {
    margin-bottom: 0.9rem;

    color: var(--red);

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.contact-block h3 {
    margin-bottom: 1.3rem;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 2rem;
    font-weight: 400;
}

.contact-text {
    color: var(--muted);

    font-size: 0.88rem;
    line-height: 1.7;
}


/* LINKS */

.contact-link {
    display: inline-flex;
    align-items: center;

    gap: 0.7rem;

    margin-top: 2rem;
    padding-bottom: 0.35rem;

    border-bottom: 1px solid var(--black);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.contact-link:hover {
    color: var(--red);

    border-color: var(--red);
}

.contact-main-link {
    display: block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.3rem;
}


/* HOURS */

.contact-hours {
    margin-top: 1rem;
}

.contact-hours div {
    display: flex;
    justify-content: space-between;

    gap: 1rem;

    padding: 0.8rem 0;

    border-bottom: 1px solid var(--border);

    color: var(--muted);

    font-size: 0.72rem;
}

.contact-hours strong {
    color: var(--black);

    font-weight: 600;
}


/* SOCIAL */

.contact-social {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    padding-top: 2.5rem;
}

.contact-social p {
    color: #999;

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.contact-social div {
    display: flex;

    gap: 2rem;
}

.contact-social a {
    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: color 0.25s ease;
}

.contact-social a:hover {
    color: var(--red);
}

/* =========================================
   PAGE HERO
========================================= */

.page-hero {
    padding: 5rem 0 4rem;

    background: var(--white);
}

.page-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 5rem;
}

.page-hero-top .section-eyebrow {
    margin-bottom: 0;
}

.page-hero-number {
    color: #999;

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}


/* CONTENT */

.page-hero-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr) minmax(280px, 0.5fr);

    align-items: end;

    gap: 5rem;
}

.page-hero-content h1 {
    max-width: 850px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(4.5rem, 8vw, 8.5rem);
    font-weight: 400;

    line-height: 0.88;

    letter-spacing: -0.06em;
}

.page-hero-content h1 span {
    display: block;

    color: var(--red);

    font-style: italic;
}

.page-hero-content>p {
    max-width: 400px;

    padding-bottom: 0.8rem;

    color: var(--muted);

    font-size: 0.92rem;

    line-height: 1.8;
}


/* BOTTOM */

.page-hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-top: 5rem;
    padding-top: 1.5rem;

    border-top: 1px solid var(--border);
}

.page-hero-bottom>p {
    color: #999;

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.17em;
}

.page-hero-bottom a {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    color: var(--black);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.page-hero-bottom a span {
    color: var(--red);

    font-size: 1rem;

    transition: transform 0.25s ease;
}

.page-hero-bottom a:hover span {
    transform: translateY(4px);
}


/* =========================================
   SERVICES PAGE INTRO
========================================= */

.services-page-intro {
    padding: 8rem 0;

    background: var(--off-white);
}

.services-page-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(300px, 0.65fr);

    align-items: end;

    gap: clamp(4rem, 8vw, 8rem);
}

.services-page-intro h2 {
    max-width: 650px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 400;

    line-height: 0.97;

    letter-spacing: -0.05em;
}

.services-page-intro h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}

.services-page-intro-text {
    display: grid;

    gap: 1.2rem;

    max-width: 470px;
}

.services-page-intro-text p {
    color: var(--muted);

    font-size: 0.92rem;

    line-height: 1.8;
}

/* =========================================
   SERVICES DETAIL
========================================= */

.services-detail {
    padding: 2rem 0 0;

    background: var(--off-white);
}


/* ROW */

.service-detail-row {
    display: grid;

    grid-template-columns:
        80px minmax(300px, 0.95fr) minmax(300px, 0.75fr);

    gap: clamp(2rem, 5vw, 5rem);

    align-items: start;

    padding: 5rem 0;

    border-top: 1px solid #d9d7d3;
}


/* NUMBER */

.service-detail-number {
    padding-top: 0.6rem;

    color: #999;

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}


/* KICKER */

.service-detail-kicker {
    margin-bottom: 1rem;

    color: var(--red);

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}


/* TITLE */

.service-detail-title h2 {
    max-width: 500px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.05em;
}

.service-detail-title h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}


/* COPY */

.service-detail-copy {
    max-width: 480px;
}

.service-detail-copy>p {
    margin-bottom: 1rem;

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.8;
}


/* LIST */

.service-detail-copy ul {
    margin-top: 2rem;

    list-style: none;

    border-top: 1px solid #d9d7d3;
}

.service-detail-copy li {
    position: relative;

    padding: 1rem 0 1rem 1.5rem;

    border-bottom: 1px solid #d9d7d3;

    color: var(--black);

    font-size: 0.78rem;
    font-weight: 600;
}

.service-detail-copy li::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--red);

    transform: translateY(-50%);
}


/* ALTERNATE */

.service-detail-row-alt {
    background: var(--white);

    margin-inline: calc((100vw - min(100vw - 48px, var(--container))) / -2);

    padding-left: calc((100vw - min(100vw - 48px, var(--container))) / 2);
    padding-right: calc((100vw - min(100vw - 48px, var(--container))) / 2);
}


/* SPECIAL */

.service-detail-row-special {
    color: var(--white);

    background: var(--black);

    margin-inline: calc((100vw - min(100vw - 48px, var(--container))) / -2);

    padding-left: calc((100vw - min(100vw - 48px, var(--container))) / 2);
    padding-right: calc((100vw - min(100vw - 48px, var(--container))) / 2);
}

.service-detail-row-special .service-detail-number {
    color: #666;
}

.service-detail-row-special .service-detail-kicker {
    color: #ff4b50;
}

.service-detail-row-special .service-detail-title h2 {
    color: var(--white);
}

.service-detail-row-special .service-detail-copy>p {
    color: #aaa;
}

.service-detail-row-special .service-detail-copy ul {
    border-color: #2d2d2d;
}

.service-detail-row-special .service-detail-copy li {
    color: #e8e8e8;

    border-color: #2d2d2d;
}

/* =========================================
   SERVICES CTA
========================================= */

.services-cta {
    padding: 8rem 0;

    background: var(--red);
    color: var(--white);
}

.services-cta-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(280px, 0.55fr);

    align-items: end;

    gap: 5rem;
}

.services-cta-label {
    margin-bottom: 1.5rem;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.services-cta h2 {
    max-width: 700px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.5rem, 5.5vw, 6rem);
    font-weight: 400;

    line-height: 0.94;

    letter-spacing: -0.05em;
}

.services-cta h2 span {
    display: block;

    font-style: italic;

    opacity: 0.75;
}

.services-cta-content p {
    max-width: 380px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.9rem;

    line-height: 1.8;
}

.services-cta-actions {
    display: flex;
    align-items: center;

    gap: 2rem;

    margin-top: 2rem;
}

.services-cta-primary {
    background: var(--white);
    color: var(--black);
}

.services-cta-primary:hover {
    background: var(--black);
    color: var(--white);
}

.services-cta-phone {
    display: inline-flex;
    align-items: center;

    gap: 0.7rem;

    padding-bottom: 0.4rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.7);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.services-cta-phone span {
    transition: transform 0.25s ease;
}

.services-cta-phone:hover span {
    transform: translateX(4px);
}

/* =========================================
   ABOUT PAGE HERO
========================================= */

.about-page-hero {
    padding: 5rem 0 0;

    background: var(--white);
}

.about-page-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 5rem;
}

.about-page-hero-top .section-eyebrow {
    margin-bottom: 0;
}

.about-page-hero-top>span {
    color: #999;

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}


/* TITLE */

.about-page-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr) minmax(280px, 0.55fr);

    align-items: end;

    gap: clamp(4rem, 8vw, 8rem);

    margin-bottom: 5rem;
}

.about-page-hero-title h1 {
    max-width: 900px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(4.5rem, 7.5vw, 8rem);
    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.06em;
}

.about-page-hero-title h1 span {
    display: block;

    color: var(--red);

    font-style: italic;
}


/* COPY */

.about-page-hero-copy {
    display: grid;

    gap: 1.2rem;

    max-width: 400px;

    padding-bottom: 0.5rem;
}

.about-page-hero-copy p {
    color: var(--muted);

    font-size: 0.92rem;

    line-height: 1.8;
}


/* MAIN IMAGE */

.about-page-hero-image {
    position: relative;

    width: 100%;
    height: clamp(480px, 57vw, 760px);

    overflow: hidden;

    background: var(--off-white);
}

.about-page-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

.about-page-hero-image:hover img {
    transform: scale(1.015);
}


/* IMAGE LABEL */

.about-page-image-label {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;

    width: 180px;
    height: 110px;

    padding: 0 2rem;

    background: var(--red);
    color: var(--white);
}

.about-page-image-label span {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.7rem;
}

.about-page-image-label small {
    margin-top: 0.3rem;

    font-size: 0.48rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}


/* =========================================
   ABOUT PHILOSOPHY
========================================= */

.about-philosophy {
    padding: 10rem 0;

    background: var(--off-white);
}

.about-philosophy-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(300px, 0.65fr);

    align-items: start;

    gap: clamp(4rem, 9vw, 9rem);
}

.about-philosophy-left h2 {
    max-width: 650px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.3rem, 5vw, 5.5rem);
    font-weight: 400;

    line-height: 0.96;

    letter-spacing: -0.05em;
}

.about-philosophy-left h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}


/* COPY */

.about-philosophy-right {
    padding-top: 2.5rem;
}

.about-philosophy-right>p {
    margin-bottom: 1.3rem;

    color: var(--muted);

    font-size: 0.92rem;

    line-height: 1.8;
}

.about-philosophy-right .about-philosophy-lead {
    margin-bottom: 1.5rem;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.6rem;

    line-height: 1.35;
}


/* SIGNATURE */

.about-philosophy-signature {
    display: flex;
    align-items: center;

    gap: 1rem;

    margin-top: 3rem;
}

.about-philosophy-signature span {
    width: 45px;
    height: 1px;

    background: var(--red);
}

.about-philosophy-signature p {
    color: #999;

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

/* =========================================
   ABOUT TEAM
========================================= */

.about-team {
    padding: 10rem 0;
    background: var(--white);
}

.about-team-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr) minmax(280px, 0.55fr);

    align-items: end;

    gap: clamp(3rem, 7vw, 7rem);

    margin-bottom: 5rem;
}

.about-team-heading h2 {
    max-width: 720px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.2rem, 5vw, 5.6rem);
    font-weight: 400;

    line-height: 0.96;
    letter-spacing: -0.05em;
}

.about-team-heading h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}

.about-team-intro {
    max-width: 400px;

    padding-bottom: 0.5rem;

    color: var(--muted);

    font-size: 0.92rem;
    line-height: 1.8;
}


/* =========================================
   TEAM GRID
========================================= */

.about-team-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: clamp(2rem, 5vw, 5rem);

    align-items: start;
}


/* =========================================
   TEAM CARD
========================================= */

.team-card {
    min-width: 0;
    margin: 0;
}

.team-card-offset {
    margin-top: 0;
}

.team-card-image {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--off-white);
}

.team-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-card:hover .team-card-image img {
    transform: scale(1.025);
}


/* NUMBER */

.team-card-number {
    position: absolute;

    left: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 74px;
    height: 74px;

    background: var(--red);
    color: var(--white);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}


/* TEAM CONTENT */

.team-card-content {
    padding-top: 1.8rem;
}

.team-card-role {
    margin-bottom: 0.8rem;

    color: var(--red);

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.17em;
}

.team-card-content h3 {
    margin-bottom: 1rem;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;

    letter-spacing: -0.035em;
}

.team-card-content>p:last-child {
    max-width: 460px;

    color: var(--muted);

    font-size: 0.9rem;
    line-height: 1.8;
}


/* =========================================
   ABOUT VALUES
========================================= */

.about-values {
    padding: 9rem 0;

    background: var(--off-white);
}

.about-values-heading {
    max-width: 760px;

    margin-bottom: 5rem;
}

.about-values-heading h2 {
    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.2rem, 5vw, 5.6rem);
    font-weight: 400;

    line-height: 0.96;
    letter-spacing: -0.05em;
}

.about-values-heading h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}


/* =========================================
   VALUES GRID
========================================= */

.about-values-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid #d9d7d3;
    border-bottom: 1px solid #d9d7d3;
}

.about-value {
    position: relative;

    min-height: 330px;

    padding: 2.2rem;

    border-right: 1px solid #d9d7d3;
}

.about-value:first-child {
    border-left: 1px solid #d9d7d3;
}

.about-value-number {
    display: block;

    margin-bottom: 7rem;

    color: var(--red);

    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.about-value h3 {
    margin-bottom: 1rem;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;

    letter-spacing: -0.035em;
}

.about-value p {
    max-width: 310px;

    color: var(--muted);

    font-size: 0.88rem;

    line-height: 1.75;
}


/* HOVER */

.about-value {
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.about-value:hover {
    z-index: 2;

    background: var(--white);

    transform: translateY(-5px);
}


/* =========================================
   ABOUT CTA
========================================= */

.about-cta {
    padding: 8rem 0;

    background: var(--red);
    color: var(--white);
}

.about-cta-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(280px, 0.55fr);

    align-items: end;

    gap: clamp(3rem, 8vw, 8rem);
}

.about-cta-label {
    margin-bottom: 1.5rem;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.about-cta-content h2 {
    max-width: 720px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.5rem, 5.5vw, 6rem);
    font-weight: 400;

    line-height: 0.94;
    letter-spacing: -0.05em;
}

.about-cta-content h2 span {
    display: block;

    font-style: italic;

    opacity: 0.75;
}


/* =========================================
   ABOUT CTA RIGHT
========================================= */

.about-cta-right {
    max-width: 410px;
}

.about-cta-right>p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    line-height: 1.8;
}

.about-cta-actions {
    display: flex;
    align-items: center;

    gap: 2rem;

    margin-top: 2.2rem;
}

.about-cta-primary {
    background: var(--white);
    color: var(--black);
}

.about-cta-primary:hover {
    background: var(--black);
    color: var(--white);
}

.about-cta-phone {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    padding-bottom: 0.4rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.about-cta-phone span {
    transition: transform 0.25s ease;
}

.about-cta-phone:hover span {
    transform: translateX(4px);
}

/* =========================================
   GALLERY PAGE HERO
========================================= */

.gallery-page-hero {
    padding: 5rem 0 4rem;
    background: var(--white);
}

.gallery-page-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 5rem;
}

.gallery-page-hero-top .section-eyebrow {
    margin-bottom: 0;
}

.gallery-page-hero-top>span {
    color: #999;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.gallery-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: clamp(4rem, 8vw, 8rem);
}

.gallery-page-hero-title h1 {
    max-width: 900px;
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.5rem, 7.5vw, 8rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.gallery-page-hero-title h1 span {
    display: block;
    color: var(--red);
    font-style: italic;
}

.gallery-page-hero-copy {
    display: grid;
    gap: 1.2rem;
    max-width: 400px;
    padding-bottom: 0.5rem;
}

.gallery-page-hero-copy p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
}


/* SCROLL INDICATOR */

.gallery-page-scroll {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.gallery-page-scroll>span {
    width: 45px;
    height: 1px;
    background: var(--red);
}

.gallery-page-scroll p {
    color: #999;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.17em;
}


/* =========================================
   GALLERY PAGE
========================================= */

.gallery-page {
    padding: 8rem 0 10rem;
    background: var(--off-white);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
    align-items: start;
}

/* =========================================
   GALLERY ITEMS
========================================= */

.gallery-page-item {
    grid-column: span 6;
    min-width: 0;
    margin: 0;
}

.gallery-page-item-large {
    grid-column: span 7;
}

.gallery-page-item-large+.gallery-page-item {
    grid-column: span 5;
    margin-top: 8rem;
}

.gallery-page-item-wide {
    grid-column: span 8;
}

.gallery-page-item-tall {
    grid-column: span 5;
}

.gallery-page-item-tall+.gallery-page-item {
    grid-column: span 7;
}


/* IMAGE */

.gallery-page-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e9e8e5;
}

.gallery-page-item-large .gallery-page-image {
    aspect-ratio: 5 / 6;
}

.gallery-page-item-wide .gallery-page-image {
    aspect-ratio: 16 / 10;
}

.gallery-page-item-tall .gallery-page-image {
    aspect-ratio: 3 / 4;
}

.gallery-page-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.4s ease;
}

.gallery-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.4s ease;
}

.gallery-page-item:hover .gallery-page-image img {
    transform: scale(1.035);
}

.gallery-page-item:hover .gallery-page-image::after {
    background: rgba(0, 0, 0, 0.08);
}


/* =========================================
   GALLERY CAPTIONS
========================================= */

.gallery-page-item figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
}

.gallery-page-item figcaption span {
    color: var(--red);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.gallery-page-item figcaption p {
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
}

/* =========================================
GALLERY MISSING IMAGE
========================================= */

.gallery-page-image-missing {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page-image-missing::before {
    content: "NICE";

    color: #d4d2ce;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 5rem);

    letter-spacing: -0.05em;
}


/* =========================================
EMPTY GALLERY
========================================= */
.gallery-empty[hidden] {
    display: none;
}

.gallery-empty {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    min-height: 480px;

    padding: clamp(2.5rem, 6vw, 6rem);

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
}

.gallery-empty::after {
    content: "NICE";

    position: absolute;

    right: -1rem;
    bottom: -4.5rem;

    color: rgba(0, 0, 0, 0.025);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(9rem, 20vw, 18rem);
    font-weight: 700;

    line-height: 1;

    pointer-events: none;
}

.gallery-empty>span {
    position: relative;
    z-index: 1;

    margin-bottom: 2rem;

    color: var(--red);

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.gallery-empty h3 {
    position: relative;
    z-index: 1;

    max-width: 650px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -0.05em;
}

.gallery-empty h3 em {
    display: block;

    color: var(--red);

    font-weight: 400;
}

.gallery-empty>p {
    position: relative;
    z-index: 1;

    max-width: 430px;

    margin-top: 1.7rem;

    color: var(--muted);

    font-size: 0.9rem;
    line-height: 1.8;
}

/* =========================================
   GALLERY STATEMENT
========================================= */

.gallery-statement {
    padding: 10rem 0;
    background: var(--black);
    color: var(--white);
}

.gallery-statement-grid {
    display: grid;
    grid-template-columns:
        minmax(140px, 0.35fr) minmax(0, 1.4fr) minmax(240px, 0.45fr);
    align-items: start;
    gap: clamp(3rem, 6vw, 7rem);
}

.gallery-statement-label {
    padding-top: 0.7rem;
    color: #666;
    font-size: 0.52rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.16em;
}

.gallery-statement blockquote {
    max-width: 750px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.gallery-statement blockquote span {
    display: block;
    color: #ff4b50;
    font-style: italic;
}

.gallery-statement-copy {
    max-width: 320px;
    padding-top: 0.7rem;
    color: #9d9d9d;
    font-size: 0.88rem;
    line-height: 1.8;
}


/* =========================================
   GALLERY CTA
========================================= */

.gallery-cta {
    padding: 8rem 0;
    background: var(--red);
    color: var(--white);
}

.gallery-cta-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 5rem;
}

.gallery-cta-label {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.gallery-cta h2 {
    max-width: 700px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.gallery-cta h2 span {
    display: block;
    color: var(--white);
    font-style: italic;
    opacity: 0.76;
}

.gallery-cta-content p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.8;
}


/* CTA ACTIONS */

.gallery-cta-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-cta-primary {
    background: var(--white);
    color: var(--black);
}

.gallery-cta-primary:hover {
    background: var(--black);
    color: var(--white);
}

.gallery-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-cta-phone span {
    transition: transform 0.25s ease;
}

.gallery-cta-phone:hover span {
    transform: translateX(4px);
}

/* =========================================
   PRODUCTS PAGE HERO
========================================= */

.products-page-hero {
    padding: 5rem 0 4rem;
    background: var(--white);
}

.products-page-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 5rem;
}

.products-page-hero-top .section-eyebrow {
    margin-bottom: 0;
}

.products-page-hero-top>span {
    color: #999;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.products-page-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.3fr) minmax(280px, 0.55fr);

    align-items: end;
    gap: clamp(4rem, 8vw, 8rem);
}

.products-page-hero-title h1 {
    max-width: 900px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.5rem, 7.5vw, 8rem);
    font-weight: 400;

    line-height: 0.9;
    letter-spacing: -0.06em;
}

.products-page-hero-title h1 span {
    display: block;
    color: var(--red);
    font-style: italic;
}

.products-page-hero-copy {
    display: grid;
    gap: 1.2rem;

    max-width: 400px;
    padding-bottom: 0.5rem;
}

.products-page-hero-copy p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
}


/* HERO BOTTOM */

.products-page-hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-top: 5rem;
    padding-top: 1.5rem;

    border-top: 1px solid var(--border);
}

.products-page-hero-bottom>p {
    color: #999;

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.17em;
}

.products-page-hero-bottom a {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    color: var(--black);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.products-page-hero-bottom a span {
    color: var(--red);
    font-size: 1rem;

    transition: transform 0.25s ease;
}

.products-page-hero-bottom a:hover span {
    transform: translateY(4px);
}


/* =========================================
   PRODUCTS PAGE INTRO
========================================= */

.products-page-intro {
    padding: 9rem 0;
    background: var(--off-white);
}

.products-page-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(300px, 0.65fr);

    align-items: end;

    gap: clamp(4rem, 8vw, 8rem);
}

.products-page-intro h2 {
    max-width: 700px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 5vw, 5.5rem);
    font-weight: 400;

    line-height: 0.97;
    letter-spacing: -0.05em;
}

.products-page-intro h2 span {
    display: block;
    color: var(--red);
    font-style: italic;
}

.products-page-intro-copy {
    display: grid;
    gap: 1.2rem;

    max-width: 470px;
}

.products-page-intro-copy p {
    color: var(--muted);

    font-size: 0.92rem;
    line-height: 1.8;
}


/* =========================================
   PRODUCTS CATALOG
========================================= */

.products-catalog {
    padding: 9rem 0 10rem;
    background: var(--white);
}

.products-catalog-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(280px, 0.5fr);

    align-items: end;

    gap: clamp(3rem, 7vw, 7rem);

    margin-bottom: 5rem;
}

.products-catalog-heading h2 {
    max-width: 720px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 5vw, 5.6rem);
    font-weight: 400;

    line-height: 0.96;
    letter-spacing: -0.05em;
}

.products-catalog-heading h2 span {
    display: block;

    color: var(--red);
    font-style: italic;
}

.products-catalog-intro {
    max-width: 390px;

    padding-bottom: 0.5rem;

    color: var(--muted);

    font-size: 0.9rem;
    line-height: 1.8;
}


/* =========================================
   PRODUCTS CATALOG GRID
========================================= */

.products-catalog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 3.5rem 1.5rem;
}


/* =========================================
   CATALOG PRODUCT CARD
   Verrà usata da prodotti.js
========================================= */

.catalog-product-card {
    min-width: 0;
}

.catalog-product-image {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--off-white);
}

.catalog-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.035);
}


/* PRODUCT CATEGORY */

.catalog-product-category {
    position: absolute;

    top: 1rem;
    left: 1rem;

    padding: 0.65rem 0.9rem;

    background: var(--white);
    color: var(--black);

    font-size: 0.5rem;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* PRODUCT CONTENT */

.catalog-product-content {
    padding-top: 1.5rem;
}

.catalog-product-brand {
    margin-bottom: 0.7rem;

    color: var(--red);

    font-size: 0.53rem;
    font-weight: 700;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.catalog-product-content h3 {
    margin-bottom: 0.8rem;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    font-weight: 400;

    line-height: 1.05;
    letter-spacing: -0.03em;
}

.catalog-product-description {
    max-width: 360px;

    color: var(--muted);

    font-size: 0.84rem;
    line-height: 1.7;
}

.catalog-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    margin-top: 1.5rem;
    padding-top: 1rem;

    border-top: 1px solid var(--border);
}

.catalog-product-price {
    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
}

.catalog-product-link {
    display: inline-flex;
    align-items: center;

    gap: 0.6rem;

    color: var(--black);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.catalog-product-link span {
    color: var(--red);

    transition: transform 0.25s ease;
}

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

/* =========================================
PRODUCT AVAILABILITY
========================================= */

.catalog-product-availability {
    color: var(--muted);

    font-size: 0.58rem;
    font-weight: 600;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* =========================================
MISSING PRODUCT IMAGE
========================================= */

.catalog-product-image-missing {
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--off-white);
}

.catalog-product-image-missing::before {
    content: "NICE";

    color: #d8d6d2;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);

    letter-spacing: -0.04em;
}


/* =========================================
   EMPTY CATALOG
========================================= */

.products-empty[hidden] {
    display: none;
}

.products-empty {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    min-height: 480px;

    padding: clamp(2.5rem, 6vw, 6rem);

    overflow: hidden;

    background: var(--off-white);

    border: 1px solid var(--border);
}

.products-empty::after {
    content: "NICE";

    position: absolute;

    right: -1rem;
    bottom: -4.5rem;

    color: rgba(0, 0, 0, 0.025);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(9rem, 20vw, 18rem);
    font-weight: 700;

    line-height: 1;

    pointer-events: none;
}

.products-empty>span {
    position: relative;
    z-index: 1;

    margin-bottom: 2rem;

    color: var(--red);

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.products-empty h3 {
    position: relative;
    z-index: 1;

    max-width: 650px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -0.05em;
}

.products-empty h3 em {
    display: block;

    color: var(--red);

    font-weight: 400;
}

.products-empty>p {
    position: relative;
    z-index: 1;

    max-width: 430px;

    margin-top: 1.7rem;

    color: var(--muted);

    font-size: 0.9rem;
    line-height: 1.8;
}

.products-empty>a {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    margin-top: 2rem;
    padding-bottom: 0.4rem;

    border-bottom: 1px solid var(--black);

    color: var(--black);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.products-empty>a span {
    color: var(--red);

    transition: transform 0.25s ease;
}

.products-empty>a:hover span {
    transform: translateX(4px);
}


/* =========================================
   PRODUCTS ADVICE
========================================= */

.products-advice {
    padding: 9rem 0;

    background: var(--black);
    color: var(--white);
}

.products-advice-grid {
    display: grid;

    grid-template-columns:
        minmax(120px, 0.25fr) minmax(0, 1fr) minmax(280px, 0.5fr);

    align-items: start;

    gap: clamp(3rem, 7vw, 7rem);
}

.products-advice-number {
    padding-top: 0.5rem;
}

.products-advice-number>span {
    display: block;

    margin-bottom: 1rem;

    color: #ff4b50;

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.products-advice-number p {
    max-width: 130px;

    color: #666;

    font-size: 0.5rem;
    font-weight: 700;

    line-height: 1.6;
    letter-spacing: 0.15em;
}

.products-advice-title h2 {
    max-width: 700px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 5vw, 5.5rem);
    font-weight: 400;

    line-height: 0.97;
    letter-spacing: -0.05em;
}

.products-advice-title h2 span {
    display: block;

    color: #ff4b50;
    font-style: italic;
}

.products-advice-copy {
    display: grid;
    gap: 1.2rem;

    padding-top: 0.5rem;
}

.products-advice-copy p {
    color: #999;

    font-size: 0.88rem;
    line-height: 1.8;
}


/* =========================================
   PRODUCTS PAGE CTA
========================================= */

.products-page-cta {
    padding: 8rem 0;

    background: var(--red);
    color: var(--white);
}

.products-page-cta-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(280px, 0.55fr);

    align-items: end;

    gap: clamp(3rem, 8vw, 8rem);
}

.products-page-cta-label {
    margin-bottom: 1.5rem;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.products-page-cta-content h2 {
    max-width: 720px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    font-weight: 400;

    line-height: 0.94;
    letter-spacing: -0.05em;
}

.products-page-cta-content h2 span {
    display: block;

    font-style: italic;

    opacity: 0.75;
}

.products-page-cta-right {
    max-width: 410px;
}

.products-page-cta-right>p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    line-height: 1.8;
}

.products-page-cta-actions {
    display: flex;
    align-items: center;

    gap: 2rem;

    margin-top: 2.2rem;
}

.products-page-cta-primary {
    background: var(--white);
    color: var(--black);
}

.products-page-cta-primary:hover {
    background: var(--black);
    color: var(--white);
}

.products-page-cta-phone {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    padding-bottom: 0.4rem;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.products-page-cta-phone span {
    transition: transform 0.25s ease;
}

.products-page-cta-phone:hover span {
    transform: translateX(4px);
}

/* =========================================
   CONTACT PAGE HERO
========================================= */

.contact-page-hero {
    padding: 5rem 0 4rem;
    background: var(--white);
}

.contact-page-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 5rem;
}

.contact-page-hero-top .section-eyebrow {
    margin-bottom: 0;
}

.contact-page-hero-top>span {
    color: #999;

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.contact-page-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr) minmax(280px, 0.55fr);

    align-items: end;

    gap: clamp(4rem, 8vw, 8rem);
}

.contact-page-hero-title h1 {
    max-width: 900px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.5rem, 7.5vw, 8rem);
    font-weight: 400;

    line-height: 0.9;
    letter-spacing: -0.06em;
}

.contact-page-hero-title h1 span {
    display: block;

    color: var(--red);
    font-style: italic;
}

.contact-page-hero-copy {
    display: grid;

    gap: 1.2rem;

    max-width: 400px;

    padding-bottom: 0.5rem;
}

.contact-page-hero-copy p {
    color: var(--muted);

    font-size: 0.92rem;
    line-height: 1.8;
}

.contact-page-hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-top: 5rem;
    padding-top: 1.5rem;

    border-top: 1px solid var(--border);
}

.contact-page-hero-bottom>p {
    color: #999;

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.17em;
}

.contact-page-hero-bottom a {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    color: var(--black);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-page-hero-bottom a span {
    color: var(--red);

    transition: transform 0.25s ease;
}

.contact-page-hero-bottom a:hover span {
    transform: translateY(4px);
}


/* =========================================
   CONTACT INFORMATION CARDS
========================================= */

.contact-page-info {
    padding: 8rem 0 9rem;

    background: var(--off-white);
}

.contact-page-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1.5rem;
}

.contact-page-card {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 520px;

    padding: 2.2rem;

    overflow: hidden;

    background: var(--white);
    color: var(--black);

    border: 1px solid var(--border);
}

.contact-page-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--red);
}

.contact-page-number {
    color: #aaa;

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.contact-page-card-content {
    position: relative;
    z-index: 1;

    margin-top: auto;
}

.contact-page-label {
    margin-bottom: 1.2rem;

    color: var(--red);

    font-size: 0.53rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.contact-page-card h2 {
    margin-bottom: 1.5rem;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    font-weight: 400;

    line-height: 0.95;
    letter-spacing: -0.05em;
}

.contact-page-main-link {
    display: inline-block;

    margin-bottom: 1.5rem;

    padding-bottom: 0.4rem;

    border-bottom: 1px solid currentColor;

    color: var(--black);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-page-card-content>p:last-child {
    max-width: 300px;

    color: var(--muted);

    font-size: 0.86rem;
    line-height: 1.7;
}


/* RED CARD */

.contact-page-card-red {
    background: var(--red);
    color: var(--white);

    border-color: transparent;
}

.contact-page-card-red::after {
    background: rgba(255, 255, 255, 0.65);
}

.contact-page-card-red .contact-page-number {
    color: rgba(255, 255, 255, 0.6);
}

.contact-page-card-red .contact-page-label {
    color: rgba(255, 255, 255, 0.7);
}

.contact-page-card-red .contact-page-main-link {
    color: var(--white);
}

.contact-page-card-red .contact-page-card-content>p:last-child {
    color: rgba(255, 255, 255, 0.74);
}


/* DARK CARD */

.contact-page-card-dark {
    background: var(--black);
    color: var(--white);

    border-color: transparent;
}

.contact-page-card-dark::after {
    background: var(--red);
}

.contact-page-card-dark .contact-page-number {
    color: #666;
}

.contact-page-card-dark .contact-page-label {
    color: #ff4b50;
}

.contact-page-card-dark address {
    margin-bottom: 1.8rem;

    color: #aaa;

    font-style: normal;

    font-size: 0.92rem;
    line-height: 1.7;
}

.contact-page-map-link {
    display: inline-flex;
    align-items: center;

    gap: 0.7rem;

    padding-bottom: 0.4rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.45);

    color: var(--white);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-page-map-link span {
    color: #ff4b50;

    transition: transform 0.25s ease;
}

.contact-page-map-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================
   CONTACT HOURS
========================================= */

.contact-hours-page {
    padding: 9rem 0;

    background: var(--white);
}

.contact-hours-page-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr) minmax(360px, 0.8fr);

    align-items: start;

    gap: clamp(4rem, 9vw, 9rem);
}

.contact-hours-page-heading h2 {
    max-width: 580px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 5vw, 5.8rem);
    font-weight: 400;

    line-height: 0.95;
    letter-spacing: -0.05em;
}

.contact-hours-page-heading h2 span {
    display: block;

    color: var(--red);
    font-style: italic;
}

.contact-hours-page-list {
    border-top: 1px solid var(--black);
}

.contact-hours-page-list>div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    padding: 1.2rem 0;

    border-bottom: 1px solid var(--border);
}

.contact-hours-page-list span {
    color: var(--black);

    font-size: 0.8rem;
    font-weight: 600;
}

.contact-hours-page-list strong {
    color: var(--muted);

    font-size: 0.76rem;
    font-weight: 500;
}

.contact-hours-note {
    margin-top: 1.5rem;

    color: #999;

    font-size: 0.75rem;
    line-height: 1.7;
}


/* =========================================
   CONTACT LOCATION
========================================= */

.contact-location {
    padding: 9rem 0 10rem;

    background: var(--off-white);
}

.contact-location-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 4.5rem;

    padding-bottom: 1.2rem;

    border-bottom: 1px solid var(--border);
}

.contact-location-top p,
.contact-location-top span {
    color: #999;

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.contact-location-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(280px, 0.45fr);

    align-items: end;

    gap: clamp(4rem, 8vw, 8rem);

    margin-bottom: 4rem;
}

.contact-location-title h2 {
    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    font-weight: 400;

    line-height: 0.94;
    letter-spacing: -0.05em;
}

.contact-location-title h2 span {
    display: block;

    color: var(--red);
    font-style: italic;
}

.contact-location-info {
    max-width: 400px;
}

.contact-location-info p {
    margin-bottom: 1.5rem;

    color: var(--muted);

    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-location-info a {
    display: inline-flex;
    align-items: center;

    gap: 0.7rem;

    padding-bottom: 0.4rem;

    border-bottom: 1px solid var(--black);

    color: var(--black);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-location-info a span {
    color: var(--red);

    transition: transform 0.25s ease;
}

.contact-location-info a:hover span {
    transform: translate(3px, -3px);
}


/* MAP PLACEHOLDER */

.contact-map-placeholder {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 380px;

    padding: clamp(2rem, 5vw, 5rem);

    overflow: hidden;

    background: #e7e5e1;

    border: 1px solid #dedbd5;
}

.contact-map-placeholder::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            transparent 24%,
            rgba(0, 0, 0, 0.04) 25%,
            transparent 26%,
            transparent 49%,
            rgba(0, 0, 0, 0.04) 50%,
            transparent 51%,
            transparent 74%,
            rgba(0, 0, 0, 0.04) 75%,
            transparent 76%),
        linear-gradient(transparent 24%,
            rgba(0, 0, 0, 0.04) 25%,
            transparent 26%,
            transparent 49%,
            rgba(0, 0, 0, 0.04) 50%,
            transparent 51%,
            transparent 74%,
            rgba(0, 0, 0, 0.04) 75%,
            transparent 76%);

    background-size: 120px 120px;
}

.contact-map-placeholder>div,
.contact-map-arrow {
    position: relative;
    z-index: 1;
}

.contact-map-pin {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin-bottom: 2rem;

    background: var(--red);
    color: var(--white);

    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
}

.contact-map-placeholder p {
    margin-bottom: 0.5rem;

    color: var(--black);

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.contact-map-placeholder small {
    color: #777;

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.contact-map-arrow {
    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4rem);

    transition: transform 0.25s ease;
}

.contact-map-placeholder:hover .contact-map-arrow {
    transform: translate(6px, -6px);
}


/* =========================================
   CONTACT BOOKING CTA
========================================= */

.contact-booking {
    padding: 8rem 0;

    background: var(--red);
    color: var(--white);
}

.contact-booking-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(280px, 0.55fr);

    align-items: end;

    gap: clamp(3rem, 8vw, 8rem);
}

.contact-booking-label {
    margin-bottom: 1.5rem;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.contact-booking-content h2 {
    max-width: 720px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    font-weight: 400;

    line-height: 0.94;
    letter-spacing: -0.05em;
}

.contact-booking-content h2 span {
    display: block;

    font-style: italic;

    opacity: 0.76;
}

.contact-booking-right {
    max-width: 410px;
}

.contact-booking-right>p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-booking-actions {
    display: flex;
    align-items: center;

    gap: 2rem;

    margin-top: 2.2rem;
}

.contact-booking-primary {
    background: var(--white);
    color: var(--black);
}

.contact-booking-primary:hover {
    background: var(--black);
    color: var(--white);
}

.contact-booking-phone {
    display: inline-flex;
    align-items: center;

    gap: 0.8rem;

    padding-bottom: 0.4rem;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-booking-phone span {
    transition: transform 0.25s ease;
}

.contact-booking-phone:hover span {
    transform: translateX(4px);
}

/* =========================================
   TECHNICAL UI STATES
========================================= */

body.menu-open {
    overflow: hidden;
}

.image-missing {
    visibility: hidden;
}

.mobile-menu {
    position: fixed;
    inset: 78px 0 0;
    z-index: 999;

    display: none;
    overflow-y: auto;

    padding: 2rem 1rem 3rem;

    background: var(--white);
    border-top: 1px solid var(--border);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;

    width: min(100%, var(--container));
    margin: 0 auto;
}

.mobile-nav>a:not(.btn) {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border);

    color: var(--black);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-nav>a.active:not(.btn) {
    color: var(--red);
}

.mobile-nav .btn {
    margin-top: 2rem;
}

.menu-toggle span {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
HOME PRODUCTS - PREVIEW
========================================= */

.products-home-preview {
    padding: 9rem 0;
    background: var(--off-white);
}

/* =========================================
TOP
========================================= */

.products-home-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 5rem;
    padding-bottom: 1.5rem;

    border-bottom: 1px solid var(--border);
}

.products-home-preview-top .section-eyebrow {
    margin-bottom: 0;
}

.products-home-preview-top>span {
    color: #999;

    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

/* =========================================
MAIN GRID
========================================= */

.products-home-preview-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr) minmax(320px, 0.55fr);

    align-items: end;

    gap: clamp(4rem, 8vw, 8rem);
}

/* =========================================
TITLE
========================================= */

.products-home-preview-title h2 {
    max-width: 760px;

    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(3.7rem, 5.8vw, 6.5rem);
    font-weight: 400;

    line-height: 0.94;
    letter-spacing: -0.055em;
}

.products-home-preview-title h2 span {
    display: block;

    color: var(--red);

    font-style: italic;
}

/* =========================================
RIGHT CONTENT
========================================= */

.products-home-preview-content {
    max-width: 430px;

    padding-bottom: 0.4rem;
}

.products-home-preview-content>p {
    color: var(--muted);

    font-size: 0.92rem;
    line-height: 1.8;
}

/* =========================================
PRODUCTS LINK
========================================= */

.products-home-preview-link {
    display: inline-flex;
    align-items: center;

    gap: 0.9rem;

    margin-top: 2rem;
    padding-bottom: 0.45rem;

    border-bottom: 1px solid var(--black);

    color: var(--black);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.11em;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.products-home-preview-link span {
    color: var(--red);

    font-size: 1rem;

    transition: transform 0.25s ease;
}

.products-home-preview-link:hover {
    color: var(--red);
    border-color: var(--red);
}

.products-home-preview-link:hover span {
    transform: translateX(4px);
}

/* =========================================
BOTTOM
========================================= */

.products-home-preview-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-top: 5rem;
    padding-top: 1.5rem;

    border-top: 1px solid var(--border);
}

.products-home-preview-bottom>span {
    color: #999;

    font-size: 0.52rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.products-home-preview-bottom>p {
    color: var(--black);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 0.9rem;
    font-style: italic;

    letter-spacing: 0.02em;
}


/* =========================================
HOME PRODUCTS - TABLET
========================================= */

@media (max-width: 820px) {

    .products-home-preview {
        padding: 7rem 0;
    }

    .products-home-preview-top {
        margin-bottom: 4rem;
    }

    .products-home-preview-grid {
        grid-template-columns: 1fr;

        gap: 2.5rem;
    }

    .products-home-preview-title h2 {
        max-width: 680px;

        font-size: clamp(3.5rem, 9vw, 5.5rem);
    }

    .products-home-preview-content {
        max-width: 540px;

        padding-bottom: 0;
    }

    .products-home-preview-bottom {
        margin-top: 4rem;
    }
}


/* =========================================
HOME PRODUCTS - MOBILE
========================================= */

@media (max-width: 560px) {

    .products-home-preview {
        padding: 5rem 0;
    }

    .products-home-preview-top {
        align-items: flex-start;
        flex-direction: column;

        gap: 1rem;

        margin-bottom: 3rem;
    }

    .products-home-preview-title h2 {
        font-size: clamp(3rem, 14vw, 4.3rem);

        line-height: 0.95;
    }

    .products-home-preview-content>p {
        font-size: 0.88rem;
    }

    .products-home-preview-link {
        margin-top: 1.7rem;
    }

    .products-home-preview-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 1rem;

        margin-top: 3.5rem;
    }
}