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

:root {
  --cream:      #f5f0e8;
  --parchment:  #ede5d0;
  --warm-brown: #6b4f2a;
  --dark-brown: #2c1f0e;
  --gold:       #b8935a;
  --sand:       #c4a882;
  --text:       #1e140a;
  --muted:      #7a6a55;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.5;
}

/* ── HERO ── */
.hero { position: relative; width: 100%; height: 100svh; min-height: 600px; overflow: hidden; }

.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; display: block; filter: sepia(18%) contrast(1.05) brightness(0.92); }

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(28,18,8,0.15) 0%,rgba(28,18,8,0.02) 35%,rgba(28,18,8,0.72) 100%); }

.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 2.5rem 3.5rem; text-align: center; }

.hero-forsale { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 700; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.5rem; opacity: 0; animation: fadeUp 1s ease 0.2s forwards; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 700; color: #f5f0e8; line-height: 1.0; margin-bottom: 0.5rem; opacity: 0; animation: fadeUp 1s ease 0.4s forwards; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }

.hero-subtitle { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1rem, 3vw, 1.6rem); color: var(--sand); margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s ease 0.6s forwards; }

.hero-cta { display: inline-block; border: 1px solid var(--sand); color: var(--sand); font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; text-decoration: none; padding: 0.7rem 2rem; transition: all 0.3s ease; opacity: 0; animation: fadeUp 1s ease 0.8s forwards; }

.hero-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--dark-brown); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.ornament { text-align: center; padding: 3rem 0 1.5rem; color: var(--gold); font-size: 1.2rem; letter-spacing: 0.5em; }

section { max-width: 900px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }

.section-label { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }

.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; color: var(--dark-brown); margin-bottom: 1.5rem; line-height: 1.2; }

.desc-block { margin-bottom: 2rem; }

.desc-block p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; line-height: 1.85; color: var(--text); margin-bottom: 1rem; }

.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0; border: 1px solid var(--parchment); margin-top: 1rem; }

.spec-item { padding: 1.0rem 1.4rem; border-right: 1px solid var(--parchment); border-bottom: 1px solid var(--parchment); display: flex; align-items: flex-start; gap: 0.75rem; transition: background 0.2s; }

.spec-item:hover { background: var(--parchment); }

.spec-bullet { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.55rem; }

.spec-text { font-family: 'Cormorant Garamond', serif; font-size: 1.0rem; font-weight: 400; color: var(--text); line-height: 1.4; }

.rule { border: none; border-top: 1px solid var(--parchment); max-width: 900px; margin: 0 auto; }

/* ── GALLERY ── */
.gallery-section { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }

.gallery-count { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.15em; margin-top: 0.25rem; margin-bottom: 1.5rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 8px; }

.gallery-grid .tall { grid-row: span 2; }

.gallery-item { overflow: hidden; position: relative; cursor: pointer; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(12%) contrast(1.04) brightness(0.96); transition: transform 0.6s ease, filter 0.4s ease; }

.gallery-item:hover img { transform: scale(1.04); filter: sepia(5%) contrast(1.06) brightness(1.0); }

.gallery-item::after { content: '⊕'; position: absolute; bottom: 10px; right: 12px; color: rgba(245,240,232,0.85); font-size: 1.4rem; opacity: 0; transition: opacity 0.3s; text-shadow: 0 1px 4px rgba(0,0,0,0.5); pointer-events: none; }

.gallery-item:hover::after { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(20,12,4,0.97); align-items: center; justify-content: center; flex-direction: column; }

.lightbox.active { display: flex; }

.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; filter: sepia(8%) contrast(1.05); border: 1px solid rgba(184,147,90,0.2); box-shadow: 0 8px 60px rgba(0,0,0,0.6); animation: lbFade 0.25s ease; }

@keyframes lbFade { from { opacity:0; transform: scale(0.97); } to { opacity:1; transform: scale(1); } }

.lightbox-controls { display: flex; align-items: center; gap: 2rem; margin-top: 1.5rem; }

.lb-btn { background: none; border: 1px solid rgba(184,147,90,0.5); color: var(--sand); font-size: 1.4rem; width: 48px; height: 48px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }

.lb-btn:hover { background: var(--gold); color: var(--dark-brown); border-color: var(--gold); }

.lb-counter { font-family: 'Cormorant Garamond', serif; font-size: 0.8rem; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; min-width: 80px; text-align: center; }

.lb-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; color: var(--sand); font-size: 2rem; cursor: pointer; line-height: 1; transition: color 0.2s; }

.lb-close:hover { color: var(--gold); }

/* ── LOCATION ── */
.location-strip { background: var(--parchment); text-align: center; padding: 1.5rem; border-top: 1px solid #ddd4bb; border-bottom: 1px solid #ddd4bb; }

.location-strip p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--warm-brown); letter-spacing: 0.08em; }

.location-strip span { font-weight: 500; color: var(--dark-brown); }

/* ── CONTACT ── */
.contact-section { background: var(--dark-brown); padding: 5rem 1.5rem 3rem; text-align: center; }

.contact-inner { max-width: 600px; margin: 0 auto; }

.contact-label { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }

.contact-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; color: var(--cream); margin-bottom: 0.5rem; }

.contact-sub { font-family: 'Playfair Display', serif; font-style: italic; color: var(--sand); font-size: 1.05rem; margin-bottom: 1rem; }

.pricing-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold); font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.6rem 1.8rem; margin-bottom: 2.5rem; text-shadow: 0 0 30px rgba(184,147,90,0.3); }

.contact-links { display: flex; flex-direction: column; gap: 1rem; align-items: center; }

.contact-link { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--cream); text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; padding: 0.9rem 2.5rem; border: 1px solid rgba(184,147,90,0.4); width: 100%; max-width: 340px; justify-content: center; transition: all 0.3s ease; letter-spacing: 0.04em; }

.contact-link:hover { background: var(--gold); border-color: var(--gold); color: var(--dark-brown); }

.contact-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── SOCIAL ── */
.social-section { background: var(--dark-brown); padding: 0 1.5rem 3.5rem; text-align: center; border-top: 1px solid rgba(184,147,90,0.15); }

.social-label { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; padding-top: 2.5rem; display: block; }

.social-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.social-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--sand); text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(184,147,90,0.3); padding: 0.55rem 1.3rem; transition: all 0.25s; }

.social-link:hover { background: var(--gold); color: var(--dark-brown); border-color: var(--gold); }

.social-link svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

footer { text-align: center; padding: 1.5rem; background: #1a0f05; color: var(--muted); font-family: 'Cormorant Garamond', serif; font-size: 0.8rem; letter-spacing: 0.15em; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .tall { grid-row: span 1; }
}
