/* ==========================================================================
   Lake Effect Rentals — Design Tokens
   Palette: white ground, deep navy ink, lake blue, sky blue mist, brass accent
   Type: Cormorant Garamond (display, classic serif) + Source Sans 3 (body)
   Spacing uses margins on children rather than flex/grid `gap` for the
   widest possible browser compatibility.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --white: #FFFFFF;
  --ivory-dim: #F3EFE6;
  --navy: #16233D;
  --navy-soft: #2A3C5C;
  --lake: #2C6591;
  --sky: #7FADC7;
  --sky-pale: #DCE7EC;
  --brass: #B8935A;
  --brass-dim: #D8C3A0;

  /* Serif stack: Playfair Display first (strong, editorial, used widely in
     real-estate and luxury branding), falling back to well-installed
     professional serifs. */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;

  --max-width: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

/* ---- Header: logo only, centered ---- */
.site-header {
  background: var(--white);
  padding: 30px 0;
  text-align: center;
}

.brand {
  display: inline-block;
}

.brand img {
  height: 240px;
  width: auto;
  margin: 0 auto;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 28px 0 64px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% -10%, var(--sky-pale) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1.06;
  margin: 0 0 22px;
  color: var(--navy);
}

.hero h1 em { font-style: italic; color: var(--lake); }

.hero p.lede {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy-soft);
}

.hero-divider {
  width: 72px;
  height: 2px;
  background: var(--brass);
  margin: 0 auto 40px;
}

/* ---- Map section (signature element) ---- */
.map-section { padding: 8px 0 40px; position: relative; }

.map-wrap {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.map-wrap svg { width: 100%; height: auto; overflow: visible; display: block; }

.ny-outline {
  fill: var(--ivory-dim);
  stroke: var(--navy);
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.map-pin .pin-body {
  stroke: var(--navy);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.buffalo-pin .pin-body { fill: var(--lake); }

.map-pin .pin-hole { fill: var(--white); }

.map-pin { filter: drop-shadow(0 4px 6px rgba(22,35,61,0.35)); }

/* ---- Property sections ---- */
.property { padding: 84px 0; }

.property-stack {
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-stack .collage { margin: 0 48px 0 0; flex-shrink: 0; }

.property-copy { max-width: 480px; text-align: left; }

.property-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  margin: 0 0 18px;
  color: var(--navy);
}

.property-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--navy-soft);
  margin: 0 0 28px;
  max-width: 46ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.btn:hover { background: var(--lake); border-color: var(--lake); transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; margin-left: 10px; }

/* ---- Collage (emblem card) ---- */
.collage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  background: linear-gradient(175deg, var(--white) 0%, var(--ivory-dim) 100%);
  border: 1px solid var(--sky-pale);
  border-radius: var(--radius);
  padding: 32px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 22px 44px -26px rgba(22, 35, 61, 0.28);
}

.collage-emblem { width: 112px; height: 112px; margin-bottom: 22px; }
.collage-emblem svg { width: 100%; height: 100%; display: block; overflow: visible; }
.collage-emblem .ring { fill: none; stroke: var(--brass); stroke-width: 1.2; }
.collage-emblem .ring-fill { fill: var(--sky-pale); opacity: 0.55; }
.collage-emblem .mark { fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.collage-emblem .mark-fill { fill: var(--navy); }
.collage-emblem .mark-accent { fill: none; stroke: var(--brass); stroke-width: 2; stroke-linecap: round; }

.collage-city {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--navy);
}

/* ---- Footer ---- */
.site-footer { padding: 48px 0 36px; text-align: center; }

.footer-contact {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  margin-bottom: 18px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-contact:hover { color: var(--lake); border-color: var(--lake); }

.footer-fine { font-size: 11.5px; color: var(--navy-soft); opacity: 0.55; }

/* ---- Contact page ---- */
.contact-hero { padding: 64px 0 40px; text-align: center; }

.contact-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 52px);
  margin: 0 0 16px;
}

.contact-hero p { max-width: 480px; margin: 0 auto; color: var(--navy-soft); line-height: 1.7; }

.contact-wrap { max-width: 620px; margin: 0 auto; padding: 20px 32px 110px; }

.form-row { margin-bottom: 22px; display: flex; flex-direction: column; }

.form-row label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 8px;
}

.form-row input, .form-row select, .form-row textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--sky-pale);
  border-radius: var(--radius);
  padding: 14px 16px;
  resize: vertical;
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--lake); }

.form-two { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.form-two .form-row { width: 50%; box-sizing: border-box; padding: 0 10px; }

.form-note { font-size: 12.5px; color: var(--navy-soft); opacity: 0.75; margin-top: -6px; margin-bottom: 24px; }

.form-status { margin-top: 18px; font-size: 14px; display: none; }
.form-status.success { color: var(--lake); display: block; }
.form-status.error { color: #A3423A; display: block; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .property-stack { flex-direction: column; text-align: center; }
  .property-stack .collage { margin: 0 0 36px; }
  .property-copy { text-align: center; max-width: 560px; }
  .property-copy p { max-width: none; margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  .brand img { height: 150px; }
  .hero { padding: 56px 0 44px; }
  .property { padding: 56px 0; }
  .property-copy h2 { font-size: 32px; }
  .form-two { margin: 0; }
  .form-two .form-row { width: 100%; padding: 0; }
}
