/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0e0e0e;
  color: #e8e0d6;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Variables ──────────────────────────────────── */
:root {
  --bg:        #0e0e0e;
  --bg-soft:   #161616;
  --bg-card:   #1a1a1a;
  --gold:      #c8956c;
  --gold-light:#dbb08f;
  --gold-dim:  #8a6344;
  --sand:      #e8e0d6;
  --sand-dim:  #a09080;
  --terracotta:#b5624a;
  --white:     #ffffff;
  --nav-h:     72px;
}

/* ── Container ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Section helpers ────────────────────────────── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
  border-radius: 20px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--sand-dim);
  line-height: 1.8;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--gold);
  color: #0e0e0e;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,149,108,.3); }
.btn-ghost {
  background: transparent;
  color: var(--sand);
  border: 1px solid rgba(232,224,214,.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(14,14,14,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,149,108,.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sand);
}
.nav-logo-icon { width: 28px; height: 28px; }
.nav-logo-text { letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .85rem;
  font-weight: 400;
  color: var(--sand-dim);
  transition: color .2s;
  letter-spacing: .03em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 8px 20px;
  border-radius: 6px;
  transition: all .25s ease !important;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-bar {
  width: 24px; height: 2px;
  background: var(--sand);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,.55) 0%,
    rgba(14,14,14,.4) 50%,
    rgba(14,14,14,.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}
.hero-tag {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-accent {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(232,224,214,.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--gold);
  opacity: .6;
  transition: opacity .3s;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll svg { width: 24px; height: 24px; animation: bob 2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── COTTAGE ────────────────────────────────────── */
.cottage { background: var(--bg); }
.cottage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cottage-media { position: relative; }
.cottage-img-main img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.cottage-img-side {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  border: 3px solid var(--bg);
}
.cottage-img-side img { width: 100%; display: block; }
.cottage-text .section-tag { margin-bottom: 16px; }
.cottage-text .section-title { text-align: left; margin-bottom: 24px; }
.cottage-text p { color: var(--sand-dim); margin-bottom: 16px; line-height: 1.8; }
.cottage-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cottage-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--sand);
}
.cottage-features svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── AMENITIES ──────────────────────────────────── */
.amenities { background: var(--bg-soft); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,149,108,.08);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all .3s ease;
}
.amenity-card:hover {
  border-color: rgba(200,149,108,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.amenity-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(200,149,108,.1);
  margin-bottom: 20px;
}
.amenity-icon svg { width: 24px; height: 24px; color: var(--gold); }
.amenity-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 10px;
}
.amenity-card p {
  font-size: .9rem;
  color: var(--sand-dim);
  line-height: 1.7;
}

/* ── LOCATION ───────────────────────────────────── */
.location { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-text .section-tag { margin-bottom: 16px; }
.location-text .section-title { text-align: left; margin-bottom: 24px; }
.location-text p { color: var(--sand-dim); line-height: 1.8; margin-bottom: 16px; }
.location-details { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.location-detail svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.location-detail strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}
.location-detail span,
.location-detail a {
  font-size: .95rem;
  color: var(--sand-dim);
  transition: color .2s;
}
.location-detail a:hover { color: var(--gold); }
.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  border: 1px solid rgba(200,149,108,.1);
}
.location-map iframe { width: 100%; height: 100%; min-height: 400px; }

/* ── GALLERY ────────────────────────────────────── */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--sand);
  font-weight: 600;
}

/* ── CTA ────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, #1a1208 0%, #0e0e0e 50%, #0e1014 100%);
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta .section-tag { margin-bottom: 16px; }
.cta .section-title { margin-bottom: 20px; }
.cta .section-sub { margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ────────────────────────────────────── */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info .section-sub { text-align: left; margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-method svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-method strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}
.contact-method span,
.contact-method a {
  font-size: .95rem;
  color: var(--sand-dim);
  transition: color .2s;
}
.contact-method a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(200,149,108,.1);
  border-radius: 12px;
  padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sand-dim);
}
.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid rgba(200,149,108,.15);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--sand);
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(160,144,128,.5); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-note {
  font-size: .8rem;
  color: var(--sand-dim);
  text-align: center;
  margin-top: 4px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--sand);
  margin-bottom: 8px;
}
.form-success p { color: var(--sand-dim); font-size: .95rem; }

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid rgba(200,149,108,.08);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 12px;
}
.footer-logo-icon { width: 28px; height: 28px; }
.footer-tagline { font-size: .9rem; color: var(--sand-dim); line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: var(--sand-dim);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact p { font-size: .9rem; color: var(--sand-dim); }
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(200,149,108,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(160,144,128,.5); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .cottage-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cottage-img-side { right: 0; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(14,14,14,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform .35s ease;
    border-bottom: 1px solid rgba(200,149,108,.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cottage-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
