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

:root {
  --navy: #1a2f4b;
  --gold: #c8922a;
  --white: #ffffff;
  --light: #f5f5f0;
  --dark: #222222;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  color: var(--dark);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

nav a {
  display: none;
}

/* HERO */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, #1a2f4b 0%, #0d1e30 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #a8781f;
}

/* ABOUT */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.about-text p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.about-deco {
  background: linear-gradient(135deg, var(--navy), #2a4a7f);
  border-radius: 4px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deco-text {
  color: rgba(255, 255, 255, 0.15);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  padding: 2rem;
  line-height: 1.2;
}

/* PROPERTIES */
.properties {
  padding: 5rem 0;
  background: var(--light);
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

.props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.prop-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.prop-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
}

.prop-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.prop-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* CONTACT */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.contact-info {
  padding-top: 0.5rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.info-value {
  color: #444;
  line-height: 1.5;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

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

/* MEDIA QUERIES */
@media (min-width: 768px) {
  nav a {
    display: inline;
    color: var(--white);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  nav a:hover {
    color: var(--gold);
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .props-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
