/* PALETTE: Egg-White: #F9F9F9 | Light Gray: #A0A0A0 */

:root {
    --egg-white: #F9F9F9;
    --light-gray: #A0A0A0;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--egg-white);
    color: var(--light-gray);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
}

/* TYPOGRAPHY */
.monogram {
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: -4px;
    text-align: center;
    margin: 100px 0;
}

.label {
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
}

.title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.description {
    font-size: 1.1rem;
    max-width: 450px;
}

/* GRID SYSTEM */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* COMPONENTS */
.gray-bg {
    background-color: #EAEAEA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
}

.placeholder-img {
    aspect-ratio: 4/5;
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
}

.gallery {
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 16/9;
}

/* BUTTONS */
button, .btn-waze, .btn-outline {
    background: transparent;
    border: 1px solid var(--light-gray);
    color: var(--light-gray);
    padding: 15px 30px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s ease;
}

button:hover, .btn-waze:hover {
    background-color: var(--light-gray);
    color: var(--egg-white);
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .monogram {
        font-size: 4rem;
    }

    .title {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }
}

.palette {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}

.color {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.c1 { background: #e8e2d6; }
.c2 { background: #9dad84; }
.c3 { background: #a88b7a; }
.c4 { background: #5a4a3f; }

.gallery {
  position: relative;
  overflow: hidden;
}

.images {
  display: flex;
  transition: transform 0.4s ease;
}

.images img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  margin: 0 10px;
  border-radius: 6px;
}

.arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.left {
  left: -10px;
}

.right {
  right: -10px;
}