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

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

:root {
  --forest: #2c3e2d;
  --moss: #4a6741;
  --sage: #7a9e6e;
  --sand: #d4b896;
  --cream: #f5efe6;
  --warm-white: #faf7f2;
  --bark: #8b6f47;
  --charcoal: #2a2a2a;
  --light-text: #5a5a5a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(44, 62, 45, 0.92);
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}
.language {display:none;}
@media (max-width: 900px) {
    .language{
    color: white;text-decoration: none;font-family: 'Lato', sans-serif;font-size: 16px;font-variant-caps: all-small-caps;display:block;}
}
    
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.nav-logo span {
  color: var(--sand);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--sand);
}

/* ---- HERO ---- */
#hero {
  height: 100vh;
  background: 
    linear-gradient(to bottom, rgba(30,45,30,0.65) 0%, rgba(44,62,45,0.4) 60%, rgba(212,184,150,0.3) 100%),
    url('/img/home.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeUp 0.8s ease both;
}

#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  color: var(--warm-white);
  line-height: 1.1;
  max-width: 800px;
  animation: fadeUp 0.9s 0.1s ease both;
}

#hero h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  margin-top: 24px;
  font-size: 1.1rem;
  color: rgba(245,239,230,0.85);
  max-width: 500px;
  font-weight: 300;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.3s ease both;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: 'Lato', sans-serif;
}

.btn-primary {
  background: var(--moss);
  color: var(--warm-white);
}

.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,62,45,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid rgba(245,239,230,0.6);
}

.btn-outline:hover {
  border-color: var(--sand);
  color: var(--sand);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s 1.5s infinite;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.6);
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(245,239,230,0.6);
}

/* ---- SECTION BASE ---- */
section {
  padding: 100px 60px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--forest);
  max-width: 600px;
}

.section-title em {
  font-style: italic;
  color: var(--bark);
}

.section-body {
  color: var(--light-text);
  max-width: 560px;
  margin-top: 20px;
  font-size: 1.05rem;
}

/* ---- INTRO STRIP ---- */
#intro {
  background: var(--forest);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.intro-item {
  text-align: center;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.intro-item .icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.intro-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--sand);
}

.intro-item p {
  font-size: 0.85rem;
  opacity: 0.75;
  max-width: 180px;
  line-height: 1.5;
}

/* ---- PARKING ---- */
#parking {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.parking-image {
  position: relative;
  height: 480px;
}

.parking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.parking-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--sage);
  border-radius: 2px;
  z-index: -1;
}

.features-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--light-text);
}

.features-list li::before {
  content: '→';
  color: var(--moss);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- BOUTIQUE ---- */
#boutique {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.boutique-content {
  order: -1;
}

.boutique-image {
  position: relative;
  height: 480px;
}

.boutique-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.boutique-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  left: 16px;
  top: 16px;
  border: 2px solid var(--sand);
  border-radius: 2px;
  z-index: -1;
}

.sell-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 24px;
  background: var(--forest);
  color: var(--sand);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ---- INTERIOR ---- */
#interior {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#interior .section-label {
  color: var(--sand);
}

#interior .section-title {
  color: var(--cream);
}

#interior .section-body {
  color: rgba(245,239,230,0.75);
}

.interior-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.interior-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,239,230,0.12);
  padding: 24px;
  border-radius: 2px;
  transition: background 0.2s;
}

.interior-card:hover {
  background: rgba(255,255,255,0.1);
}

.interior-card .card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.interior-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--sand);
  font-size: 1rem;
  margin-bottom: 6px;
}

.interior-card p {
  font-size: 0.85rem;
  color: rgba(245,239,230,0.65);
  line-height: 1.5;
}

.interior-image {
  height: 520px;
  position: relative;
}

.interior-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* ---- SPIRIT ---- */
#spirit {
  text-align: center;
  background: 
    linear-gradient(rgba(245,239,230,0.94), rgba(245,239,230,0.94)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a6741' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 100px 20px;
}

.spirit-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--forest);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
  font-style: italic;
}

.spirit-quote::before,
.spirit-quote::after {
  content: '"';
  color: var(--sand);
  font-size: 1.3em;
}

.spirit-note {
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--light-text);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- LOCATION ---- */
#location {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.map-embed {
  height: 420px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44,62,45,0.15);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(74,103,65,0.15);
}

.location-detail .loc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.location-detail p {
  font-size: 0.95rem;
  color: var(--light-text);
}

.location-detail strong {
  color: var(--forest);
}

/* ---- CONTACT ---- */
#contact {
  background: var(--forest);
  padding: 100px 60px;
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

#contact .section-label {
  color: var(--sand);
}

#contact .section-title {
  color: var(--cream);
  max-width: none;
}

#contact .section-body {
  color: rgba(245,239,230,0.7);
  max-width: none;
  margin: 16px auto 0;
}

.contact-form {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(245,239,230,0.2);
  color: var(--cream);
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,239,230,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: rgba(255,255,255,0.1);
}

.form-group select option {
  background: var(--forest);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
}

.form-submit .btn-primary {
  background: var(--sand);
  color: var(--forest);
  padding: 16px 52px;
  font-size: 0.9rem;
}

.form-submit .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.form-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 14px;
  border-radius: 2px;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: rgba(122,158,110,0.25);
  border: 1px solid var(--sage);
  color: var(--sage);
  display: block;
}

.form-message.error {
  background: rgba(200,80,80,0.2);
  border: 1px solid rgba(200,80,80,0.5);
  color: #e88;
  display: block;
}

/* ---- FOOTER ---- */
footer {
  background: #1a2619;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
}

.footer-logo span {
  color: var(--sand);
}

.footer-info {
  font-size: 0.82rem;
  color: rgba(245,239,230,0.45);
  text-align: right;
}

.footer-info a {
  color: var(--sand);
  text-decoration: none;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav { padding: 2px 14px; }
  .nav-links { display: none; }
  .nav-logo {text-align: center;}
  #subject {width: 100%;}
  section { padding: 70px 24px; }
  #parking, #boutique, #interior, #location { grid-template-columns: 1fr; gap: 40px; }
  .boutique-content { order: 0; }
  .interior-cards { grid-template-columns: 1fr; }
  .parking-image, .boutique-image, .interior-image { height: 300px; }
  #intro { padding: 40px 24px; gap: 40px; }
  .contact-form { grid-template-columns: 1fr; }
  footer { padding: 30px 24px; }
  .footer-info { text-align: left; }
}
