@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --ink: #1c1b16;
  --paper: #f7f2ea;
  --accent: #c46a3b;
  --accent-2: #2c6b63;
  --sun: #f3c978;
  --deep: #1f343b;
  --muted: #6d6a62;
  --soft: #e9dfd2;
  --radius: 22px;
  --shadow: 0 30px 60px rgba(28, 27, 22, 0.16);
  --shadow-soft: 0 20px 40px rgba(31, 52, 59, 0.12);
}

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

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #f9e7cf, #f7f2ea 40%),
    radial-gradient(circle at 80% 20%, #f1d2c2, transparent 45%),
    linear-gradient(120deg, #f7f2ea 20%, #f4efe6 70%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent-2);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  padding: 28px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 242, 234, 0.8);
  border-bottom: 1px solid rgba(28, 27, 22, 0.08);
}

.logo {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(28, 27, 22, 0.18);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
}

.btn.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(44, 107, 99, 0.12);
}

.main {
  padding: 40px 6vw 80px;
}

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

.hero-banner figure {
  margin: 0 auto;
  max-width: 980px;
}

.hero-banner img {
  width: 100%;
  height: clamp(140px, 18vw, 200px);
  object-fit: cover;
  object-position: center 38%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-banner figcaption {
  margin-top: 8px;
  text-align: right;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-banner figcaption a {
  color: inherit;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  margin-bottom: 60px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent-2);
  font-weight: 600;
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  margin: 16px 0;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 28px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.6);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat {
  background: white;
  padding: 16px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stat h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.hero-card {
  background: var(--deep);
  color: white;
  padding: 28px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 55%);
  opacity: 0.6;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.section {
  margin-bottom: 64px;
}

.section-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.listing-card {
  background: white;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.listing-thumb {
  height: 160px;
  border-radius: 18px;
  background: linear-gradient(140deg, #f2c78a, #e6a482);
  position: relative;
  overflow: hidden;
}

.listing-thumb::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  top: -60px;
  right: -40px;
}

.listing-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.tag {
  background: rgba(44, 107, 99, 0.15);
  color: var(--accent-2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.service-item {
  background: var(--soft);
  padding: 20px;
  border-radius: 18px;
  display: grid;
  gap: 10px;
}

.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.neighborhoods span {
  background: white;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(28, 27, 22, 0.1);
}

.cta {
  background: linear-gradient(120deg, var(--accent), #de8a5e);
  color: white;
  padding: 32px;
  border-radius: 26px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 2rem;
}

.site-footer {
  padding: 28px 6vw 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(28, 27, 22, 0.12);
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.form-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: block;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(28, 27, 22, 0.15);
  background: #fcfbf9;
  font-family: inherit;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-aside {
  background: var(--deep);
  color: white;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-detail {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-link:visited {
  color: rgba(255, 255, 255, 0.7);
}

.contact-banner {
  background: linear-gradient(160deg, #23404a, #2c6b63);
  padding: 24px;
  border-radius: 18px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.8s ease forwards;
}

.animate-in.delay-1 {
  animation-delay: 0.15s;
}

.animate-in.delay-2 {
  animation-delay: 0.3s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-in {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .btn:focus,
  .listing-card:hover {
    transform: none;
  }
}
