/* =========================================================
   RHINO IT SOLUTIONS
   Base site stylesheet
   ========================================================= */


/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
    width: 100%;
    background: #ffffff;

    position: relative;
    z-index: 100;
}

.header-inner {
    width: 100%;
    max-width: 1600px;

    margin: 0 auto;

    padding: 24px 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    flex: 1;
}

.site-title a {
    text-decoration: none;

    font-size: 22px;
    font-weight: 500;

    letter-spacing: -0.02em;
}

.site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 32px;
}

.site-navigation a {
    text-decoration: none;

    font-size: 15px;

    transition: opacity 0.2s ease;
}

.site-navigation a:hover {
    opacity: 0.55;
}

.header-action {
    flex: 1;

    display: flex;
    justify-content: flex-end;
}

.header-button {
    display: inline-block;

    padding: 11px 20px;

    border: 1px solid #111111;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.header-button:hover {
    background: #111111;
    color: #ffffff;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.hero-section {
    min-height: 72vh;

    display: flex;
    align-items: center;

    padding: 100px 48px;
}

.hero-content {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
}

.hero-content h1 {
    max-width: 1050px;

    margin: 0;

    font-size: clamp(52px, 8vw, 120px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.055em;
}


/* ---------------------------------------------------------
   SERVICES
   --------------------------------------------------------- */

.services-section {
    width: 100%;

    padding: 120px 48px;
}

.section-heading {
    max-width: 1500px;

    margin: 0 auto 70px;
}

.section-heading h1 {
    margin: 0;

    max-width: 850px;

    font-size: clamp(40px, 5vw, 72px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.045em;
}


/* SERVICE GRID */

.services-grid {
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 80px 40px;
}


/* SERVICE CARD */

.service-card {
    min-width: 0;
}

.service-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #eeeeee;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.service-details {
    padding-top: 24px;
}

.service-details h2 {
    margin: 0 0 14px;

    font-size: clamp(25px, 2.5vw, 38px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -0.03em;
}

.service-details p {
    max-width: 650px;

    margin: 0;

    font-size: 16px;

    line-height: 1.6;

    opacity: 0.7;
}

.service-button {
    display: inline-block;

    margin-top: 22px;

    padding-bottom: 4px;

    border-bottom: 1px solid #111111;

    text-decoration: none;

    font-size: 14px;

    transition: opacity 0.2s ease;
}

.service-button:hover {
    opacity: 0.5;
}


/* ---------------------------------------------------------
   ABOUT
   --------------------------------------------------------- */

.about-section {
    padding: 150px 48px;
}

.about-content {
    max-width: 1500px;

    margin: 0 auto;
}

.about-content h1 {
    max-width: 1000px;

    margin: 0 0 40px;

    font-size: clamp(42px, 6vw, 84px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.05em;
}

.about-content p {
    max-width: 650px;

    margin: 0 0 30px;

    font-size: 18px;

    line-height: 1.7;

    opacity: 0.7;
}

.text-link {
    display: inline-block;

    text-decoration: none;

    border-bottom: 1px solid #111111;

    padding-bottom: 4px;

    font-size: 14px;
}


/* ---------------------------------------------------------
   PROPOSAL
   --------------------------------------------------------- */

.proposal-section {
    padding: 130px 48px;

    border-top: 1px solid #dddddd;
}

.proposal-content {
    max-width: 1500px;

    margin: 0 auto;
}

.proposal-content h1 {
    max-width: 850px;

    margin: 0 0 25px;

    font-size: clamp(44px, 6vw, 82px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.05em;
}

.proposal-content p {
    max-width: 600px;

    margin: 0 0 35px;

    font-size: 17px;

    line-height: 1.6;

    opacity: 0.7;
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.site-footer {
    border-top: 1px solid #dddddd;

    padding: 45px 48px;
}

.footer-inner {
    max-width: 1500px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}

.footer-inner h2 {
    margin: 0 0 8px;

    font-size: 18px;

    font-weight: 400;
}

.footer-inner p {
    margin: 0;

    font-size: 13px;

    opacity: 0.6;
}

.footer-inner a {
    font-size: 14px;

    text-decoration: none;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .header-inner {
        padding: 20px 24px;

        flex-wrap: wrap;

        gap: 20px;
    }

    .site-title {
        flex: 1;
    }

    .site-navigation {
        order: 3;

        width: 100%;

        justify-content: flex-start;

        gap: 22px;
    }

    .header-action {
        flex: 0;
    }


    .hero-section {
        min-height: 65vh;

        padding: 80px 24px;
    }


    .services-section {
        padding: 90px 24px;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .about-section {
        padding: 100px 24px;
    }


    .proposal-section {
        padding: 100px 24px;
    }


    .site-footer {
        padding: 35px 24px;
    }

    .footer-inner {
        flex-direction: column;

        gap: 30px;
    }
}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 500px) {

    .header-inner {
        padding: 18px 20px;
    }

    .site-navigation {
        gap: 17px;
    }

    .site-navigation a {
        font-size: 14px;
    }

    .header-button {
        padding: 9px 15px;
    }

    .hero-section {
        padding: 70px 20px;
    }

    .services-section {
        padding: 75px 20px;
    }

    .about-section {
        padding: 80px 20px;
    }

    .proposal-section {
        padding: 80px 20px;
    }

    .site-footer {
        padding: 30px 20px;
    }
}
/* ---------------------------------------------------------
   ORIGINAL HOMEPAGE IMAGES
   --------------------------------------------------------- */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.hero-section::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;

    color: #ffffff;
}


/* ---------------------------------------------------------
   ADVISORY IMAGE
   --------------------------------------------------------- */

.about-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0;

    padding: 0;
}

.about-image {
    width: 100%;
    min-height: 650px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-content {
    padding: 80px 6vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


@media (max-width: 800px) {

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 500px;
    }

}/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-page {
    width: 100%;
    padding: 110px 48px 140px;
}

.services-page-header {
    max-width: 1500px;
    margin: 0 auto 70px;
}

.services-page-header h1 {
    margin: 0;

    font-size: clamp(52px, 7vw, 100px);
    font-weight: 400;

    line-height: 0.95;
    letter-spacing: -0.055em;
}


/* SERVICE LIST */

.service-list {
    max-width: 1500px;
    margin: 0 auto;
}


/* INDIVIDUAL SERVICE */

.service-list-item {
    display: grid;

    grid-template-columns: minmax(180px, 300px) 1fr;

    align-items: center;

    gap: 40px;

    padding: 30px 0;

    border-bottom: 1px solid #dddddd;
}

.service-list-item:first-child {
    border-top: 1px solid #dddddd;
}


/* IMAGE */

.service-list-image {
    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 8px;
}

.service-list-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* CONTENT */

.service-list-content {
    min-width: 0;
}

.service-list-content h2 {
    margin: 0;

    font-size: clamp(28px, 3vw, 46px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -0.035em;
}

.service-list-content p {
    max-width: 750px;

    margin: 12px 0 0;

    font-size: 16px;

    line-height: 1.5;

    opacity: 0.7;
}

.service-list-content .service-button {
    margin-top: 22px;
}


/* MOBILE */

@media (max-width: 767px) {

    .services-page {
        padding: 80px 24px 100px;
    }

    .services-page-header {
        margin-bottom: 45px;
    }

    .service-list-item {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 25px 0 35px;
    }

    .service-list-image {
        aspect-ratio: 3 / 2;

        border-radius: 8px;
    }

    .service-list-content h2 {
        font-size: 30px;
    }

}/* =========================================================
   SERVICES PAGE — ORIGINAL STRUCTURE
   ========================================================= */

.services-hero {
    width: 100%;
    padding: 45px 4vw 0;
}

.services-hero-image {
    width: 100%;
    height: 510px;
    overflow: hidden;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------------------------------------------------------
   SERVICES INTRO
   --------------------------------------------------------- */

.services-intro {
    width: 100%;

    padding: 55px 4vw 90px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.services-intro-title h1 {
    margin: 0;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.services-intro-text {
    max-width: 700px;
}

.services-intro-text p {
    margin: 0 0 28px;

    font-size: 17px;

    line-height: 1.55;
}


/* ---------------------------------------------------------
   SERVICE LIST
   --------------------------------------------------------- */

.services-list-section {
    width: 100%;

    padding: 0 4vw 120px;
}

.service-list {
    width: 100%;
}

.service-list-item {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    padding: 55px 0;

    border-top: 1px solid #dddddd;
}

.service-list-item:last-child {
    border-bottom: 1px solid #dddddd;
}

.service-list-image {
    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;
}

.service-list-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.service-list-content {
    align-self: center;

    max-width: 650px;
}

.service-list-content h2 {
    margin: 0 0 20px;

    font-size: clamp(32px, 4vw, 55px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -0.04em;
}

.service-list-content p {
    margin: 0;

    font-size: 17px;

    line-height: 1.55;
}

.service-list-content .service-button {
    margin-top: 30px;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .services-hero {
        padding: 25px 20px 0;
    }

    .services-hero-image {
        height: 400px;
    }

    .services-intro {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 45px 20px 70px;
    }

    .services-list-section {
        padding: 0 20px 80px;
    }

    .service-list-item {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 40px 0;
    }

    .service-list-image {
        aspect-ratio: 4 / 3;
    }

}/* =========================================================
   INDIVIDUAL SERVICE PAGE
   ========================================================= */

.service-detail {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 80px 48px 140px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.service-detail-image {
    width: 100%;

    aspect-ratio: 3 / 4;

    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.service-detail-content {
    max-width: 650px;
}

.service-breadcrumb {
    display: inline-block;

    margin-bottom: 35px;

    font-size: 14px;

    text-decoration: none;

    border-bottom: 1px solid #111111;

    padding-bottom: 4px;
}

.service-detail-content h1 {
    margin: 0 0 30px;

    font-size: clamp(48px, 6vw, 88px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.05em;
}

.service-detail-description {
    margin: 0 0 25px;

    font-size: 21px;

    line-height: 1.5;
}

.service-detail-text {
    margin: 0;

    max-width: 600px;

    font-size: 17px;

    line-height: 1.65;

    opacity: 0.7;
}

.service-detail-button {
    display: inline-block;

    margin-top: 35px;

    padding: 13px 22px;

    border: 1px solid #111111;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.service-detail-button:hover {
    background: #111111;

    color: #ffffff;
}


/* ---------------------------------------------------------
   INDIVIDUAL SERVICE — MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .service-detail {
        grid-template-columns: 1fr;

        padding: 55px 24px 100px;

        gap: 50px;
    }

    .service-detail-image {
        aspect-ratio: 4 / 3;
    }

    .service-detail-content h1 {
        font-size: clamp(44px, 12vw, 70px);
    }

}

@media (max-width: 500px) {

    .service-detail {
        padding: 45px 20px 80px;
    }

}/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
    width: 100%;
    min-height: calc(100vh - 90px);

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: stretch;
}

.about-page-content {
    padding: 25px 70px 70px 48px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-page-content h1 {
    max-width: 700px;

    margin: 0 0 38px;

    font-size: clamp(52px, 5vw, 78px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.about-page-content p {
    max-width: 620px;

    margin: 0 0 28px;

    font-size: 18px;

    line-height: 1.35;
}

.about-page-image {
    width: 100%;
    height: 100%;

    overflow: hidden;
}

.about-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}


/* ---------------------------------------------------------
   ABOUT PAGE — MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .about-page {
        grid-template-columns: 1fr;
    }

    .about-page-content {
        padding: 60px 24px;
    }

    .about-page-content h1 {
        font-size: clamp(46px, 11vw, 70px);
    }

    .about-page-image {
        min-height: 600px;
    }

}


@media (max-width: 500px) {

    .about-page-content {
        padding: 45px 20px;
    }

    .about-page-content p {
        font-size: 16px;
    }

    .about-page-image {
        min-height: 500px;
    }

}/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    width: 100%;
    min-height: calc(100vh - 90px);

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-content {
    padding: 25px 70px 80px 48px;
}

.contact-content h1 {
    max-width: 650px;

    margin: 0 0 42px;

    font-size: clamp(52px, 5vw, 78px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.contact-intro {
    max-width: 620px;

    margin: 0 0 60px;

    font-size: 18px;

    line-height: 1.4;
}


/* CONTACT PEOPLE */

.contact-people {
    max-width: 620px;

    display: flex;
    flex-direction: column;

    gap: 42px;
}

.contact-person {
    display: grid;

    grid-template-columns: 150px 1fr;

    column-gap: 20px;

    align-items: baseline;
}

.contact-number {
    font-size: 14px;
}

.contact-person h2 {
    margin: 0;

    font-size: 22px;

    font-weight: 400;
}

.contact-person > a:not(.contact-call) {
    grid-column: 2;

    margin-top: 4px;

    font-size: 17px;

    text-decoration: none;
}

.contact-call {
    grid-column: 2;

    width: fit-content;

    margin-top: 12px;

    padding-bottom: 3px;

    border-bottom: 1px solid #111111;

    font-size: 14px;

    text-decoration: none;
}

.contact-call:hover {
    opacity: 0.5;
}


/* EMAIL */

.contact-email {
    max-width: 620px;

    margin-top: 75px;

    padding-top: 35px;

    border-top: 1px solid #dddddd;
}

.contact-email h2 {
    margin: 0 0 12px;

    font-size: 22px;

    font-weight: 400;
}

.contact-email p {
    margin: 0;

    font-size: 17px;

    line-height: 1.5;

    opacity: 0.7;
}


/* IMAGE */

.contact-image {
    width: 100%;
    height: 100%;

    min-height: 750px;

    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* ---------------------------------------------------------
   CONTACT MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .contact-page {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 60px 24px 80px;
    }

    .contact-content h1 {
        font-size: clamp(48px, 11vw, 72px);
    }

    .contact-people {
        gap: 38px;
    }

    .contact-person {
        grid-template-columns: 120px 1fr;
    }

    .contact-image {
        min-height: 600px;
    }

}


@media (max-width: 500px) {

    .contact-content {
        padding: 45px 20px 65px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-person {
        display: block;
    }

    .contact-number {
        display: block;

        margin-bottom: 8px;
    }

    .contact-person h2 {
        margin-bottom: 5px;
    }

    .contact-person > a:not(.contact-call) {
        display: block;
    }

    .contact-call {
        display: inline-block;
    }

    .contact-image {
        min-height: 500px;
    }

}/* =========================================================
   APPOINTMENTS PAGE
   ========================================================= */

.appointment-page {
    width: 100%;

    padding: 100px 48px 140px;
}

.appointment-content {
    max-width: 900px;

    margin: 0 auto;
}

.appointment-content h1 {
    margin: 0 0 25px;

    font-size: clamp(52px, 7vw, 100px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.055em;
}

.appointment-content > p {
    max-width: 600px;

    margin: 0 0 65px;

    font-size: 18px;

    line-height: 1.6;

    opacity: 0.7;
}


/* FORM */

.appointment-form {
    width: 100%;
}

.form-field {
    margin-bottom: 32px;
}

.form-field label {
    display: block;

    margin-bottom: 10px;

    font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 14px 0;

    border: 0;

    border-bottom: 1px solid #111111;

    border-radius: 0;

    background: transparent;

    color: #111111;

    font-family: inherit;

    font-size: 16px;

    outline: none;
}

.form-field textarea {
    resize: vertical;

    min-height: 140px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-width: 2px;
}

.appointment-submit {
    display: inline-block;

    margin-top: 15px;

    padding: 13px 24px;

    border: 1px solid #111111;

    background: #ffffff;

    color: #111111;

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.appointment-submit:hover {
    background: #111111;

    color: #ffffff;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 800px) {

    .appointment-page {
        padding: 80px 24px 100px;
    }

    .appointment-content > p {
        margin-bottom: 50px;
    }

}


@media (max-width: 500px) {

    .appointment-page {
        padding: 65px 20px 80px;
    }

    .form-field {
        margin-bottom: 27px;
    }

}
/* =========================================================
   APPOINTMENT PAGE
   ========================================================= */

.appointment-page {
    width: 100%;
    padding: 120px 48px 150px;
}

.appointment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.appointment-content h1 {
    max-width: 900px;

    margin: 0 0 30px;

    font-size: clamp(48px, 7vw, 100px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.055em;
}

.appointment-content > p {
    max-width: 650px;

    margin: 0 0 75px;

    font-size: 18px;

    line-height: 1.7;

    opacity: 0.7;
}


/* FORM */

.appointment-form {
    width: 100%;
}

.form-field {
    margin-bottom: 38px;
}

.form-field label {
    display: block;

    margin-bottom: 12px;

    font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
    display: block;

    width: 100%;

    padding: 14px 0;

    border: 0;
    border-bottom: 1px solid #111111;

    border-radius: 0;

    outline: none;

    background: transparent;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom: 2px solid #111111;
}

.form-field textarea {
    min-height: 150px;

    resize: vertical;
}

.form-field select {
    cursor: pointer;
}


/* SUBMIT */

.appointment-submit {
    display: inline-block;

    margin-top: 10px;

    padding: 13px 22px;

    border: 1px solid #111111;

    background: #ffffff;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.appointment-submit:hover {
    background: #111111;

    color: #ffffff;
}


/* MOBILE */

@media (max-width: 800px) {

    .appointment-page {
        padding: 90px 24px 110px;
    }

    .appointment-content > p {
        margin-bottom: 55px;
    }

}


@media (max-width: 500px) {

    .appointment-page {
        padding: 75px 20px 90px;
    }

    .form-field {
        margin-bottom: 30px;
    }

}/* =========================================================
   APPOINTMENT PAGE
   ========================================================= */

.appointment-page {
    width: 100%;
    padding: 120px 48px 150px;
}

.appointment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.appointment-content h1 {
    max-width: 900px;

    margin: 0 0 20px;

    font-size: clamp(52px, 7vw, 100px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.055em;
}

.appointment-content > p {
    margin: 0 0 65px;

    font-size: 18px;

    opacity: 0.7;
}


/* FORM */

.appointment-form {
    width: 100%;
}

.form-field {
    margin-bottom: 35px;
}

.form-field label {
    display: block;

    margin-bottom: 10px;

    font-size: 14px;
}

.form-field input {
    width: 100%;

    padding: 14px 0;

    border: 0;
    border-bottom: 1px solid #111111;

    background: transparent;

    color: #111111;

    font-family: inherit;
    font-size: 18px;

    outline: none;
}

.form-field input:focus {
    border-bottom-width: 2px;
}


/* SERVICES */

.appointment-services {
    margin-top: 65px;
    margin-bottom: 50px;

    opacity: 0;
    transform: translateY(15px);

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.appointment-services.visible {
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
}

.appointment-services h2 {
    margin: 0 0 25px;

    font-size: 24px;

    font-weight: 400;

    letter-spacing: -0.02em;
}


/* SERVICE GRID */

.service-options {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.service-option {
    min-height: 130px;

    padding: 24px;

    border: 1px solid #dddddd;

    display: flex;

    align-items: flex-end;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.service-option:hover {
    border-color: #111111;
}

.service-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.service-option span {
    font-size: 17px;

    line-height: 1.2;
}

.service-option:has(input:checked) {
    border-color: #111111;

    background: #f5f5f5;
}


/* EMAIL */

.appointment-email {
    margin-top: 55px;
}


/* SUBMIT */

.appointment-submit {
    display: inline-block;

    margin-top: 15px;

    padding: 13px 22px;

    border: 1px solid #111111;

    background: #ffffff;

    color: #111111;

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.appointment-submit:hover {
    background: #111111;

    color: #ffffff;
}


/* MOBILE */

@media (max-width: 800px) {

    .appointment-page {
        padding: 90px 24px 110px;
    }

    .service-options {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 500px) {

    .appointment-page {
        padding: 70px 20px 90px;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .service-option {
        min-height: 100px;
    }

}