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

:root {
  --primary: #000000;
  --secondary: #4b5563; /* gray-600 */
  --light-gray: #f3f4f6; /* gray-100 */
  --border-color: #f3f4f6; /* gray-100 */
  --bg-light: #f9fafb; /* gray-50 */
  --text-main: #111827; /* gray-900 */
  --text-light: #9ca3af; /* gray-400 */
  --text-muted: #6b7280; /* gray-500 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  border-radius: 0 !important; /* Sharp edges */
}

body {
  background-color: #ffffff;
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
  background-color: #ffffff;
}

.bg-white {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.text-center {
  text-align: center;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

h2.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

h2.section-title[data-subtitle]::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
}

.text-center h2.section-title {
  margin-left: auto;
  margin-right: auto;
}

p {
  color: var(--text-muted);
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  line-height: 1.6;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  height: 4rem;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  text-transform: none;
}

.logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.35rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.625rem; /* text-[10px] */
  letter-spacing: 0.2em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 2rem;
  margin-top: 4rem; /* For fixed header */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-left: 4px solid black;
  text-align: left;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 0.9;
}

.hero-content p {
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.625rem; /* text-[10px] */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn:hover {
  background: var(--text-muted);
}

/* Grids - Styled as 1px separated tiles */
.grid-2, .grid-3, .grid-4 {
  background-color: var(--border-color);
  border: 1px solid var(--border-color);
  display: grid;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1px; }

/* Cards */
.card {
  background: #fff;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card.p-4 {
  padding: 2rem;
}

.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.card-content h3[data-subtitle]::before, .card-content .card-title[data-subtitle]::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 0.5rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}

/* Split blocks */
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.split-content {
  padding: 3rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Utilities */
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }

/* Parallax Banners */
.parallax-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  position: relative;
}

.parallax-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* Light overlay for editorial vibe */
}

.parallax-banner .container {
  position: relative;
  z-index: 1;
}

.parallax-banner h2 {
  font-size: 3.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: none;
  background: var(--light-gray);
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
}

.form-control:focus {
  outline: 1px solid var(--primary);
  background: #fff;
}

#contactForm {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.success-message {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #f0fdf4; /* green-50 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10;
  padding: 2rem;
}

.success-message.show {
  opacity: 1;
  visibility: visible;
}

.success-message h3 {
  font-size: 0.625rem;
  font-weight: 800;
  color: #16a34a; /* green-600 */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.success-message p {
  color: #111827;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: none;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
}
.faq-item {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-q {
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-a {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}

.faq-item.active .faq-a {
  padding: 0 0 1.5rem 0;
  max-height: 400px;
}

/* Quote styling */
p[style*="italic"] {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 1.5rem !important;
  line-height: 1.4 !important;
  color: var(--primary) !important;
  text-transform: none !important;
}

/* Animations (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Footer */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 0.625rem;
  margin-bottom: 1rem;
  letter-spacing: 0.3em;
}

.footer-col p {
  font-size: 0.625rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: left;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 { font-size: 3rem; }
  h2.section-title { font-size: 2.25rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
  }
  .nav-links.show { display: flex; }
  .mobile-menu-btn { display: block; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
