* {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Archivo, system-ui, sans-serif;
    font-weight: 400;
    background-color: hsl(38, 30%, 95%);
    color: hsl(0, 0%, 0%);
    line-height: 1.5;
}

.htflow-wrapper {
    min-height: 100vh;
}

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: hsla(38, 45%, 95%, 0.95);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: hsla(38, 25%, 85%, 0.5);
}

.header-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-logo-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    border-width: 0;
    cursor: pointer;
}

.header-logo-img {
    height: 40px;
    width: auto;
    mix-blend-mode: multiply;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

.header-nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsla(0, 0%, 0%, 0.8);
    background-color: transparent;
    border-width: 0;
    cursor: pointer;
    transition-property: color;
    transition-duration: 300ms;
}

.header-nav-link-hovered {
    color: hsl(0, 0%, 0%);
}

.header-cta-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: hsl(0, 0%, 8%);
    color: hsl(38, 45%, 95%);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-width: 0;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: 300ms;
}

.header-cta-btn-hovered {
    background-color: hsla(0, 0%, 8%, 0.9);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, hsla(0, 0%, 0%, 0.2), hsla(0, 0%, 0%, 0.3), hsla(0, 0%, 0%, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: hsl(38, 45%, 95%);
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    margin-bottom: 32px;
}

.hero-subtitle-text {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsla(38, 45%, 95%, 0.8);
}

.hero-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 64px;
    margin-bottom: 16px;
}

.hero-number {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 48px;
    color: hsla(38, 45%, 95%, 0.9);
    margin-bottom: 32px;
}

.hero-location {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsla(38, 45%, 95%, 0.7);
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.hero-cta-btn {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: hsl(38, 45%, 95%);
    color: hsl(0, 0%, 8%);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-width: 0;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: 300ms;
}

.hero-cta-btn-hovered {
    background-color: hsla(38, 45%, 95%, 0.9);
}

.hero-scroll-btn {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: hsla(38, 45%, 95%, 0.7);
    background-color: transparent;
    border-width: 0;
    cursor: pointer;
    transition-property: color;
    transition-duration: 300ms;
}

.hero-scroll-btn-hovered {
    color: hsl(38, 45%, 95%);
}

.hero-scroll-icon {
    width: 32px;
    height: 32px;
}

.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: hsl(38, 45%, 95%);
}

.about-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-image-wrapper {
    order: 2;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 20px 60px -15px hsla(0, 0%, 0%, 0.18);
}

.about-image-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: hsl(0, 0%, 8%);
    color: hsl(38, 45%, 95%);
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
}

.about-badge-number {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 40px;
}

.about-badge-text {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 4px;
}

.about-content {
    order: 1;
}

.about-label {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsl(0, 0%, 40%);
}

.about-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 36px;
    margin-top: 16px;
    margin-bottom: 24px;
    color: hsl(0, 0%, 0%);
}

.about-divider {
    width: 48px;
    height: 1px;
    background-color: hsla(0, 0%, 8%, 0.3);
    margin-bottom: 32px;
}

.about-text {
    font-family: Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: hsl(0, 0%, 40%);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-stat {
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: hsla(0, 0%, 8%, 0.2);
    padding-left: 16px;
}

.about-stat-value {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 28px;
    color: hsl(0, 0%, 0%);
}

.about-stat-label {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsl(0, 0%, 40%);
    margin-top: 4px;
}

.location-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: hsl(38, 30%, 97%);
}

.location-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.location-header {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}

.location-label {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsl(0, 0%, 40%);
}

.location-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 36px;
    margin-top: 16px;
    margin-bottom: 24px;
    color: hsl(0, 0%, 0%);
}

.location-divider {
    width: 48px;
    height: 1px;
    background-color: hsla(0, 0%, 8%, 0.3);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.location-text {
    font-family: Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: hsl(0, 0%, 40%);
    line-height: 1.7;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.location-card {
    background-color: hsl(38, 45%, 95%);
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    box-shadow: 0 8px 24px -4px hsla(0, 0%, 0%, 0.10);
    transition-property: box-shadow;
    transition-duration: 300ms;
}

.location-card-hovered {
    box-shadow: 0 20px 60px -15px hsla(0, 0%, 0%, 0.18);
}

.location-card-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(0, 0%, 8%, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.location-icon-svg {
    width: 24px;
    height: 24px;
    color: hsl(0, 0%, 8%);
}

.location-card-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 18px;
    color: hsl(0, 0%, 0%);
    margin-bottom: 8px;
}

.location-card-text {
    font-size: 14px;
    color: hsl(0, 0%, 40%);
    line-height: 1.6;
}

.amenities-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: hsl(38, 45%, 95%);
}

.amenities-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.amenities-header {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}

.amenities-label {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsl(0, 0%, 40%);
}

.amenities-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 36px;
    margin-top: 16px;
    margin-bottom: 24px;
    color: hsl(0, 0%, 0%);
}

.amenities-divider {
    width: 48px;
    height: 1px;
    background-color: hsla(0, 0%, 8%, 0.3);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.amenities-text {
    font-family: Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: hsl(0, 0%, 40%);
    line-height: 1.7;
}

.amenities-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.amenities-image-card {
    position: relative;
    overflow: hidden;
}

.amenities-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition-property: transform;
    transition-duration: 700ms;
}

.amenities-image-card-hovered .amenities-image {
    transform: scale(1.05);
}

.amenities-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to top, hsla(0, 0%, 8%, 0.6), transparent);
}

.amenities-image-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.amenities-image-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 20px;
    color: hsl(38, 45%, 95%);
}

.amenities-image-subtitle {
    color: hsla(38, 45%, 95%, 0.8);
    font-size: 14px;
    margin-top: 4px;
}

.amenities-list-container {
    background-color: hsl(38, 30%, 97%);
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
}

.amenities-list-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 20px;
    color: hsl(0, 0%, 0%);
    text-align: center;
    margin-bottom: 32px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.amenities-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenities-list-dot {
    width: 6px;
    height: 6px;
    background-color: hsl(0, 0%, 8%);
    flex-shrink: 0;
}

.amenities-list-text {
    font-size: 14px;
    color: hsla(0, 0%, 0%, 0.8);
}

.availability-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: hsl(38, 45%, 95%);
}

.availability-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.availability-header {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.availability-label {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsl(0, 0%, 40%);
}

.availability-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 36px;
    margin-top: 16px;
    margin-bottom: 24px;
    color: hsl(0, 0%, 0%);
}

.availability-divider {
    width: 48px;
    height: 1px;
    background-color: hsla(0, 0%, 8%, 0.3);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.availability-text {
    font-family: Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: hsl(0, 0%, 40%);
    line-height: 1.7;
}

.availability-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.availability-tab {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    color: hsl(0, 0%, 8%);
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    border-top-color: hsla(0, 0%, 8%, 0.2);
    border-bottom-color: hsla(0, 0%, 8%, 0.2);
    border-left-color: hsla(0, 0%, 8%, 0.2);
    border-right-color: hsla(0, 0%, 8%, 0.2);
    margin-left: -1px;
    cursor: pointer;
    transition-property: background-color, color;
    transition-duration: 300ms;
}

.availability-tab:first-child {
    margin-left: 0;
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
}

.availability-tab:last-child {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.availability-tab-active {
    background-color: hsl(0, 0%, 8%);
    color: hsl(38, 45%, 95%);
}

.availability-tab-hovered {
    background-color: hsla(0, 0%, 8%, 0.05);
}

.availability-tab-active.availability-tab-hovered {
    background-color: hsl(0, 0%, 8%);
}

.availability-category {
    text-align: center;
    margin-bottom: 32px;
}

.availability-category-text {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 18px;
    color: hsl(0, 0%, 8%);
}

.availability-table-wrapper {
    background-color: hsl(38, 30%, 97%);
    overflow: hidden;
}

.availability-table {
    width: 100%;
    border-collapse: collapse;
}

.availability-table-header-row {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: hsla(0, 0%, 8%, 0.2);
}

.availability-table-header {
    text-align: left;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(0, 0%, 8%);
}

.availability-table-header-right {
    text-align: right;
}

.availability-table-header-hidden-sm {
    display: none;
}

.availability-table-header-hidden-md {
    display: none;
}

.availability-table-row {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: hsla(0, 0%, 8%, 0.1);
}

.availability-table-row-sold {
    opacity: 0.5;
}

.availability-table-cell {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
}

.availability-table-cell-name {
    font-weight: 500;
    color: hsl(0, 0%, 8%);
}

.availability-table-cell-muted {
    color: hsl(0, 0%, 40%);
}

.availability-table-cell-hidden-sm {
    display: none;
}

.availability-table-cell-hidden-md {
    display: none;
}

.availability-table-cell-right {
    text-align: right;
}

.availability-table-cell-value {
    font-weight: 600;
    color: hsl(0, 0%, 8%);
}

.availability-status-badge {
    display: inline-flex;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: hsl(32, 40%, 85%);
    color: hsla(0, 0%, 8%, 0.7);
}

.availability-footer {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: hsl(38, 45%, 95%);
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: hsla(0, 0%, 8%, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.availability-cta-btn {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: hsl(0, 0%, 8%);
    color: hsl(38, 45%, 95%);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-width: 0;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: 300ms;
}

.availability-cta-btn-hovered {
    background-color: hsla(0, 0%, 8%, 0.9);
}

.availability-disclaimer {
    font-size: 12px;
    color: hsl(0, 0%, 40%);
    text-align: center;
}

.contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: hsl(38, 30%, 97%);
}

.contact-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info {
    order: 1;
}

.contact-label {
    font-family: Archivo, sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsl(0, 0%, 40%);
}

.contact-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 36px;
    margin-top: 16px;
    margin-bottom: 24px;
    color: hsl(0, 0%, 0%);
}

.contact-divider {
    width: 48px;
    height: 1px;
    background-color: hsla(0, 0%, 8%, 0.3);
    margin-bottom: 32px;
}

.contact-text {
    font-family: Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: hsl(0, 0%, 40%);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(0, 0%, 8%, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-svg {
    width: 20px;
    height: 20px;
    color: hsl(0, 0%, 8%);
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    font-weight: 500;
    color: hsl(0, 0%, 0%);
}

.contact-detail-value {
    color: hsl(0, 0%, 40%);
    text-decoration: none;
    transition-property: color;
    transition-duration: 300ms;
}

.contact-detail-value-hovered {
    color: hsl(0, 0%, 8%);
}

.contact-brand-box {
    margin-top: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: hsl(38, 45%, 95%);
}

.contact-brand-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 18px;
    color: hsl(0, 0%, 0%);
    margin-bottom: 8px;
}

.contact-brand-text {
    font-size: 14px;
    color: hsl(0, 0%, 40%);
}

.contact-form-wrapper {
    order: 2;
}

.contact-form {
    background-color: hsl(38, 45%, 95%);
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
    box-shadow: 0 20px 60px -15px hsla(0, 0%, 0%, 0.18);
}

.contact-form-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 20px;
    color: hsl(0, 0%, 0%);
    margin-bottom: 24px;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-form-label {
    font-size: 14px;
    font-weight: 500;
    color: hsl(0, 0%, 0%);
    margin-bottom: 8px;
}

.contact-form-input {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: hsl(38, 30%, 97%);
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    border-top-color: hsl(38, 25%, 85%);
    border-bottom-color: hsl(38, 25%, 85%);
    border-left-color: hsl(38, 25%, 85%);
    border-right-color: hsl(38, 25%, 85%);
    color: hsl(0, 0%, 0%);
    font-family: Archivo, sans-serif;
    font-size: 14px;
    transition-property: border-color;
    transition-duration: 300ms;
    outline: none;
}

.contact-form-input:focus {
    border-top-color: hsl(0, 0%, 8%);
    border-bottom-color: hsl(0, 0%, 8%);
    border-left-color: hsl(0, 0%, 8%);
    border-right-color: hsl(0, 0%, 8%);
}

.contact-form-select {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: hsl(38, 30%, 97%);
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    border-top-color: hsl(38, 25%, 85%);
    border-bottom-color: hsl(38, 25%, 85%);
    border-left-color: hsl(38, 25%, 85%);
    border-right-color: hsl(38, 25%, 85%);
    color: hsl(0, 0%, 0%);
    font-family: Archivo, sans-serif;
    font-size: 14px;
    transition-property: border-color;
    transition-duration: 300ms;
    outline: none;
    cursor: pointer;
}

.contact-form-select:focus {
    border-top-color: hsl(0, 0%, 8%);
    border-bottom-color: hsl(0, 0%, 8%);
    border-left-color: hsl(0, 0%, 8%);
    border-right-color: hsl(0, 0%, 8%);
}

.contact-form-textarea {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: hsl(38, 30%, 97%);
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-style: solid;
    border-top-color: hsl(38, 25%, 85%);
    border-bottom-color: hsl(38, 25%, 85%);
    border-left-color: hsl(38, 25%, 85%);
    border-right-color: hsl(38, 25%, 85%);
    color: hsl(0, 0%, 0%);
    font-family: Archivo, sans-serif;
    font-size: 14px;
    transition-property: border-color;
    transition-duration: 300ms;
    outline: none;
    resize: none;
}

.contact-form-textarea:focus {
    border-top-color: hsl(0, 0%, 8%);
    border-bottom-color: hsl(0, 0%, 8%);
    border-left-color: hsl(0, 0%, 8%);
    border-right-color: hsl(0, 0%, 8%);
}

.contact-form-submit {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: hsl(0, 0%, 8%);
    color: hsl(38, 45%, 95%);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-width: 0;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: 300ms;
}

.contact-form-submit-hovered {
    background-color: hsla(0, 0%, 8%, 0.9);
}

.contact-form-disclaimer {
    font-size: 12px;
    color: hsl(0, 0%, 40%);
    text-align: center;
}

.footer-main {
    background-color: hsl(0, 0%, 8%);
    color: hsl(38, 45%, 95%);
    padding-top: 48px;
    padding-bottom: 48px;
}

.footer-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand-title {
    font-family: Bebas Neue, Archivo, sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-brand-subtitle {
    color: hsla(38, 45%, 95%, 0.6);
    font-size: 14px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-title {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    margin-bottom: 8px;
}

.footer-nav-link {
    color: hsla(38, 45%, 95%, 0.6);
    background-color: transparent;
    border-width: 0;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    transition-property: color;
    transition-duration: 300ms;
}

.footer-nav-link-hovered {
    color: hsl(38, 45%, 95%);
}

.footer-contact-title {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    margin-bottom: 16px;
}

.footer-contact-text {
    color: hsla(38, 45%, 95%, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: hsla(38, 45%, 95%, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-copyright {
    font-size: 12px;
    color: hsla(38, 45%, 95%, 0.4);
}

.footer-disclaimer {
    font-size: 12px;
    color: hsla(38, 45%, 95%, 0.4);
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }

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

    .availability-table-header-hidden-sm {
        display: table-cell;
    }

    .availability-table-cell-hidden-sm {
        display: table-cell;
    }

    .contact-form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .header-container {
        height: 80px;
    }

    .header-logo-img {
        height: 48px;
    }

    .hero-title {
        font-size: 96px;
    }

    .hero-number {
        font-size: 64px;
    }

    .about-section {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .about-image {
        height: 500px;
    }

    .about-image-badge {
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .about-badge-number {
        font-size: 48px;
    }

    .location-section {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .location-card {
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .amenities-section {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .amenities-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-image {
        height: 400px;
    }

    .amenities-list-container {
        padding-top: 48px;
        padding-bottom: 48px;
        padding-left: 48px;
        padding-right: 48px;
    }

    .amenities-list-title {
        font-size: 24px;
    }

    .amenities-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .availability-section {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .availability-table-header-hidden-md {
        display: table-cell;
    }

    .availability-table-cell-hidden-md {
        display: table-cell;
    }

    .contact-section {
        padding-top: 112px;
        padding-bottom: 112px;
    }

    .contact-form {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
    }

    .hero-title {
        font-size: 128px;
    }

    .hero-number {
        font-size: 72px;
    }

    .about-section {
        padding-top: 128px;
        padding-bottom: 128px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }

    .about-image-wrapper {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .location-section {
        padding-top: 128px;
        padding-bottom: 128px;
    }

    .location-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .amenities-section {
        padding-top: 128px;
        padding-bottom: 128px;
    }

    .availability-section {
        padding-top: 128px;
        padding-bottom: 128px;
    }

    .contact-section {
        padding-top: 128px;
        padding-bottom: 128px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }
}
