:root {
  --primary: #1a3a2a;        /* Forest Green */
  --primary-dark: #12281d;   /* 15% darker */
  --accent: #b5651d;         /* Copper */
  --accent-light: #d89656;   /* 30% lighter */
  --bg: #f9f6ef;             /* Ivory */
  --bg-alt: #f1ede1;         /* Warm Ivory-Gray */
  --text: #1f2937;           /* Dark Slate-900 */
  --text-muted: #6b7280;     /* Slate-500 */
  --border: #e5e7eb;         /* Slate-200 */
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --border-radius: 0; /* Sharp, editorial feel worked well for these luxury firms */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
}

/* Floating Pill-Nav */
nav {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 58, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(181, 101, 29, 0.3);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 1.5rem;
}

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

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

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

/* Layout Padding for Top Header (Brand Area) */
header.brand-area {
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

.header-cta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Splitscreen Hero */
.hero-split {
  display: flex;
  height: 100vh;
  min-height: 700px;
  align-items: stretch;
}

.hero-content {
  flex: 1;
  padding: 12rem 4rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
section {
  padding: 10rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 8rem 4rem 4rem 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bg);
  margin-bottom: 2rem;
}

.footer-links h4 {
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 400px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.5rem;
  z-index: 3000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: none;
}

/* Cards & Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  padding: 3rem;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

/* Forms */
.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--primary);
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  background: var(--primary);
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
