:root {
  --navy: #16324f;
  --teal: #2a7f8e;
  --sand: #f6f1e7;
  --ink: #22303c;
  --muted: #5c6b78;
  --white: #ffffff;
  --line: #e3ddd0;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

header.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand { font-size: 1.35rem; font-weight: bold; letter-spacing: 0.02em; }
.brand a { color: var(--white); text-decoration: none; }
.brand .tagline { display: block; font-size: 0.75rem; font-weight: normal; color: #bcd0e0; font-family: Verdana, sans-serif; }

nav.site-nav a {
  color: #dbe7f0;
  text-decoration: none;
  margin-left: 1.1rem;
  font-family: Verdana, sans-serif;
  font-size: 0.85rem;
}
nav.site-nav a:hover, nav.site-nav a.active { color: var(--white); text-decoration: underline; }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}
.hero h1 { font-size: 2.4rem; margin-bottom: 0.6rem; }
.hero p { max-width: 640px; margin: 0 auto 1.4rem; color: #e8f0f5; }

.btn {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
}
.btn.dark { background: var(--navy); color: var(--white); }

main { max-width: 960px; margin: 0 auto; padding: 2.5rem 1.5rem; }

h1.page-title { font-size: 2rem; color: var(--navy); margin-bottom: 0.4rem; }
p.page-intro { color: var(--muted); margin-bottom: 2rem; max-width: 700px; }

section { margin-bottom: 2.5rem; }
section h2 { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.8rem; border-bottom: 2px solid var(--line); padding-bottom: 0.3rem; }
section h3 { color: var(--teal); font-size: 1.1rem; margin: 1rem 0 0.4rem; }
section p, section li { margin-bottom: 0.5rem; }
section ul { padding-left: 1.4rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.2rem;
}
.card h3 { margin-top: 0; }
.card .price { font-size: 1.3rem; color: var(--navy); font-weight: bold; margin: 0.3rem 0; }
.card .meta { color: var(--muted); font-size: 0.9rem; font-family: Verdana, sans-serif; }
.card .status { display: inline-block; font-family: Verdana, sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.15rem 0.5rem; border-radius: 3px; background: var(--teal); color: var(--white); margin-bottom: 0.5rem; }
.card .status.rent { background: #8e6a2a; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-family: Verdana, sans-serif;
  font-size: 0.9rem;
}
th, td { border: 1px solid var(--line); padding: 0.6rem 0.8rem; text-align: left; }
th { background: var(--navy); color: var(--white); }

.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 1rem 1.2rem; margin-bottom: 0.9rem; }
.faq-item h3 { margin-top: 0; color: var(--navy); }

footer.site-footer {
  background: var(--navy);
  color: #bcd0e0;
  text-align: center;
  padding: 1.5rem;
  font-family: Verdana, sans-serif;
  font-size: 0.8rem;
}
footer.site-footer a { color: #dbe7f0; }

.notice {
  background: #fff8e6;
  border: 1px solid #e8d9a0;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-family: Verdana, sans-serif;
  font-size: 0.8rem;
  color: #7a6520;
  margin-bottom: 2rem;
}

/* Hero with banner illustration */
.hero.with-banner {
  background:
    linear-gradient(rgba(18, 40, 63, 0.55), rgba(18, 40, 63, 0.7)),
    url('images/banner-home.jpg') center / cover no-repeat,
    linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: 5.5rem 1.5rem;
}
.hero .hero-kicker {
  display: block;
  font-family: Verdana, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffd9a0;
  margin-bottom: 0.8rem;
}
.hero .btn + .btn { margin-left: 0.6rem; }

/* Stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem 1rem;
}
.stats .num { display: block; font-size: 1.9rem; font-weight: bold; color: var(--navy); }
.stats .lbl { font-family: Verdana, sans-serif; font-size: 0.78rem; color: var(--muted); }

/* Listing cards with photos */
.card.photo-card { padding: 0; overflow: hidden; }
.card.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.card.photo-card .card-body { padding: 1.1rem 1.2rem 1.2rem; }
.card .ref { font-family: Verdana, sans-serif; font-size: 0.72rem; color: var(--muted); float: right; margin-top: 0.2rem; }

/* Testimonials */
blockquote.testimonial {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  font-style: italic;
}
blockquote.testimonial footer { font-style: normal; font-family: Verdana, sans-serif; font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }

/* Testimonial cards */
.t-card .t-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.5rem; }
.t-card .t-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line); flex-shrink: 0; }
.t-card .t-context { display: block; font-family: Verdana, sans-serif; font-size: 0.75rem; color: var(--muted); }
.t-card .stars { color: #dd9f1b; letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 0.4rem; }
.t-card .t-quote { font-style: italic; }
.t-aggregate { font-family: Verdana, sans-serif; font-size: 0.82rem; color: var(--muted); }

/* News / blog */
.news-card h3 a { color: var(--teal); text-decoration: none; }
.news-card h3 a:hover { text-decoration: underline; }
.news-meta { font-family: Verdana, sans-serif; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
article.post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.6rem;
}
article.post h2 { border-bottom: none; margin-bottom: 0.2rem; }
article.post img.post-thumb {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0.8rem 0 1rem;
}

/* Forms (feedback / contact) */
form.feedback { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 1.4rem 1.6rem; max-width: 640px; }
form.feedback .field { margin-bottom: 1rem; }
form.feedback label { display: block; font-family: Verdana, sans-serif; font-size: 0.82rem; font-weight: bold; color: var(--navy); margin-bottom: 0.3rem; }
form.feedback input, form.feedback select, form.feedback textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid #c9c2b2;
  border-radius: 4px;
  font-family: Verdana, sans-serif;
  font-size: 0.88rem;
  background: #fcfbf7;
  color: var(--ink);
}
form.feedback textarea { min-height: 120px; resize: vertical; }
form.feedback input:focus, form.feedback select:focus, form.feedback textarea:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
form.feedback button {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.7rem 1.6rem;
  font-family: Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
}
form.feedback button:hover { background: var(--teal); }
form.feedback .form-note { font-family: Verdana, sans-serif; font-size: 0.75rem; color: var(--muted); margin-top: 0.6rem; }

/* Subscribe (homepage email list) */
.subscribe-form { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 520px; margin-top: 0.8rem; }
.subscribe-form input {
  flex: 1 1 240px;
  padding: 0.55rem 0.7rem;
  border: 1px solid #c9c2b2;
  border-radius: 4px;
  font-family: Verdana, sans-serif;
  font-size: 0.88rem;
  background: #fcfbf7;
  color: var(--ink);
}
.subscribe-form input:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
.subscribe-form button {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.7rem 1.6rem;
  font-family: Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
}
.subscribe-form button:hover { background: var(--teal); }
.subscribe-note { font-family: Verdana, sans-serif; font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; min-height: 1.2em; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

img.team-photo {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--line);
  margin-bottom: 0.7rem;
}

.map-figure { margin: 0; }
.map-figure img { display: block; width: 100%; max-width: 720px; border: 1px solid var(--line); border-radius: 6px; }
.map-figure figcaption { font-family: Verdana, sans-serif; font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; }
