/* Aspan Properties — interim static site
   Brand: Swedish countryside hospitality, rustic elegance
   Stack: pure HTML/CSS, no JS, no dependencies */

:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe2;
  --ink: #2b2a26;
  --ink-soft: #5c5852;
  --accent: #6b5b3e;
  --rule: rgba(43,42,38,.12);
  --max: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Apple Garamond", Garamond, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: .5em; }
h3 { font-size: 1.45rem; font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; letter-spacing: .02em; }

p { color: var(--ink-soft); }
p + p { margin-top: 1em; }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }
a:hover { color: var(--ink); }

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

/* Header */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 28px 0;
}
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; }
.brand { font-family: "Cormorant Garamond", Garamond, serif; font-size: 1.6rem; letter-spacing: .04em; color: #fff; text-decoration: none; border: 0; }
.brand--dark { color: var(--ink); }
.nav { display: flex; gap: 28px; }
.nav a { color: #fff; border: 0; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; }
.nav a:hover { opacity: .7; }
.nav--dark a { color: var(--ink); }

/* Hero */
.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  background: #2b2a26;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.62);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 760px; padding: 0 28px; }
.hero-content .kicker { text-transform: uppercase; letter-spacing: .25em; font-size: .8rem; opacity: .85; margin-bottom: 1.4em; display: inline-block; }
.hero-content h1 { color: #fff; font-style: italic; font-weight: 400; }
.hero-content p { color: rgba(255,255,255,.85); margin-top: 1.5em; font-size: 1.1rem; }
.hero-content .cta {
  display: inline-block;
  margin-top: 2.4em;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .85rem;
  background: transparent;
}
.hero-content .cta:hover { background: #fff; color: var(--ink); }

/* Section */
section { padding: clamp(64px, 9vw, 120px) 0; }
section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 72px); }
.section-head .label { text-transform: uppercase; letter-spacing: .25em; font-size: .8rem; color: var(--accent); margin-bottom: 1em; display: block; }
.section-head p { margin-top: 1em; font-size: 1.08rem; }

/* Properties grid */
.properties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.property {
  background: #fff;
}
.property .img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-alt); }
.property .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.property:hover .img img { transform: scale(1.04); }
.property .body { padding: 22px 8px 6px; }
.property h4 { margin-bottom: 4px; }
.property .meta { font-size: .85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .15em; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-grid img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.about-grid h2 { margin-bottom: .6em; }
.about-grid p { font-size: 1.05rem; }
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Offer */
.offer { text-align: center; max-width: 720px; margin: 0 auto; }
.offer p { font-size: 1.1rem; margin-top: 1.2em; }

/* Footer */
.site-footer {
  background: #1f1e1b;
  color: rgba(255,255,255,.72);
  padding: 72px 0 36px;
  font-size: .95rem;
}
.site-footer a { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.3); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-grid h4 { color: #fff; margin-bottom: 1em; font-size: 1rem; letter-spacing: .05em; }
.footer-brand { font-family: "Cormorant Garamond", Garamond, serif; font-size: 1.5rem; color: #fff; letter-spacing: .04em; margin-bottom: .8em; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: .5em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; font-size: .8rem; color: rgba(255,255,255,.4); text-align: center; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Contact page */
.contact-hero {
  padding: clamp(120px, 18vw, 180px) 0 clamp(80px, 12vw, 120px);
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}
.contact-hero h1 { font-style: italic; font-weight: 400; margin-bottom: .4em; }
.contact-hero p { font-size: 1.15rem; max-width: 540px; margin: 0 auto; }

.contact-card {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 28px;
}
.contact-card .email-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 40px;
  background: var(--ink);
  color: #fff;
  border: 0;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .85rem;
  font-family: inherit;
}
.contact-card .email-cta:hover { background: var(--accent); }
.contact-card .meta { margin-top: 36px; color: var(--ink-soft); font-size: .95rem; }
.contact-card .meta strong { color: var(--ink); font-weight: 500; }
