/* ─── LAYOUT ───────────────────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TERMS ──────────────────────────────────────────────────────────────── */
.terms {
    padding: clamp(1rem, 2vw, 2rem) 0;
    background-color: var(--cream);
}

.terms .container {
    max-width: 800px; 
    margin: 0 auto;
    padding: 0 20px;
}

.terms .label {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    color: var(--terra);
    margin-bottom: 12px;
    font-weight: 600;
}

.terms h2 {
    text-align: center;
    font-family: var(--font-serif);
    margin-bottom: 48px;
    color: var(--dark);
}

/* ─── CARD LAYOUT ──────────────────────────────────────────────────────────── */
.terms_card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 24px;
    align-items: flex-start; /* Aligns number box to the top */
    transition: transform var(--transition);
}

.terms_card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* The Blue Number Box */
.card_number {
    background-color: var(--terra-d);
    min-width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.span_number {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Text Content Area */
.terms_grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card_header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card_header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1610;
    font-family: var(--font-sans);
    margin: 0;
}

.card_header img {
    height: 22px;
}

.card_text p {
    line-height: 1.6;
    color: #64748b; /* Muted gray-blue for text */
    font-size: 0.95rem;
}

/* ─── SPECIAL STYLING FOR SECURITY DEPOSIT (Item 5) ───────────────────────── */

/* If you add the green "100% refundable" box from the image */
.refundable_tag {
    margin-top: 16px;
    padding: 12px 16px;
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: var(--radius-sm);
    color: #166534;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .terms_card {
        flex-direction: column;
        padding: 24px;
    }
}










/* ─── SUMMARY ──────────────────────────────────────────────────────────────── */
/* ─── SUMMARY SECTION ────────────────────────────────────────────────────── */

.summary {
    background-color: var(--sand); /* Using #f5f0e8 as requested */
    padding: 100px 0;
}

.summary .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.summary_header {
    text-align: center;
    margin-bottom: 60px;
}

.summary_header h2 {
    font-family: var(--font-serif);
    color: var(--dark);
    margin-bottom: 12px;
}

.summary_header p {
    font-family: var(--font-sans);
    color: var(--mid);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ─── SUMMARY GRID & CARDS ───────────────────────────────────────────────── */

.summary_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns like the image */
    gap: 20px;
}

.summary_card {
    /* Subtle border and slightly darker tint than the sand background */
    background: rgba(26, 22, 16, 0.03); 
    border: 1px solid rgba(26, 22, 16, 0.1);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: default;
}

/* Elevates the card on hover to match a modern interactive feel */
.summary_card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

/* Text Styling inside Cards */
.summary_card h4 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 12px 0 8px 0; /* Space for the future SVG */
}

.summary_card p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--light); /* Muted text for the description */
    line-height: 1.5;
}




/* ─── CONTACT ───────────────────────────────────────────────────────────────── */
.contact {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(160deg, #1a1610 0%, #2e2416 100%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}
.contact__left h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.contact__left h2 em { color: var(--terra); }
.contact__left p { color: rgba(255,255,255,.6); margin-bottom: 2.5rem; }
.contact__host {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__host strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
}
.contact__host span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ─── FORM ──────────────────────────────────────────────────────────────────── */
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.15rem;
}
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--mid);
  text-transform: uppercase;
}
.form-group input:not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--warm);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196,132,90,.18);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238a7d6e' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  cursor: pointer;
}
.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--light);
  margin-top: .85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

.btn--primary:hover {
  background: var(--terra-d);
  border-color: var(--terra-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,132,90,.35);
}

.btn--full { width: 100%; justify-content: center; }


/* ─── RESPONSIVE ADJUSTMENTS ────────────────────────────────────────────── */

@media (max-width: 992px) {
    .summary_grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 640px) {
    .summary_grid {
        grid-template-columns: 1fr; /* Stacked on mobile */
        gap: 16px;
    }
        
    .summary_card {
        padding: 32px 24px;
    }
    .btn { justify-content: center; }
}



