/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #2a2a2a;
  line-height: 1.7;
  background: #fafafa;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Colors ===== */
:root {
  --maroon: #8B1A1A;
  --maroon-dark: #6B1010;
  --gold: #C9A96E;
  --charcoal: #1a1a1a;
  --cream: #FAF7F2;
  --white: #ffffff;
}

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

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--white);
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 36px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=1920&q=80') center/cover no-repeat;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border: 2px solid var(--maroon);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: none;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}
.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--charcoal);
}

/* About Grid */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.about-card {
  text-align: center;
  padding: 32px 20px;
}
.about-card h3 {
  font-size: 1.4rem;
  color: var(--maroon);
  margin-bottom: 16px;
}
.about-card p {
  font-size: 0.9rem;
  color: #555;
}

/* CTA */
.cta {
  background: var(--charcoal);
  color: var(--white);
}
.cta-inner {
  text-align: center;
  max-width: 700px;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Contact Page ===== */
.page-header {
  padding: 120px 0 60px;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.page-header p {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

/* Form */
.form-card {
  background: var(--white);
  padding: 48px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.form-card h2 {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--maroon);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #666;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  background: #fafafa;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--maroon);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-consent {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 24px;
}
.form-consent a { color: var(--maroon); text-decoration: underline; }
.btn-submit {
  width: 100%;
  border: none;
  padding: 16px;
}
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 0.85rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}
.form-status.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
}

/* Office Info */
.office-card {
  padding: 20px 0;
}
.office-card h2 {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--maroon);
}
.office-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.office-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 24px;
}
.office-card a {
  color: var(--maroon);
  text-decoration: underline;
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  text-decoration: none !important;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
  transition: background 0.3s;
}
.whatsapp-link:hover { background: #1da851; }

/* ===== Legal Pages ===== */
.legal-section {
  padding: 60px 0 100px;
  background: var(--white);
}
.legal-section .container {
  max-width: 800px;
}
.legal-section h3 {
  font-size: 1.2rem;
  color: var(--maroon);
  margin: 40px 0 12px;
}
.legal-section p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 16px;
}
.legal-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}
.legal-section th, .legal-section td {
  padding: 10px 16px;
  border: 1px solid #ddd;
  text-align: left;
}
.legal-section th {
  background: var(--cream);
  font-weight: 600;
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand p {
  font-size: 0.75rem;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.7rem;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
