/* Oculax-PT - Completely New Unique Design */
/* Warm Neutral + Sage Palette | Large 24px Radius | Soft Large Shadows | Pill Buttons | Asymmetric Modular Layout */

:root {
  --bg: #F5F0E6;
  --text: #2C2C2C;
  --primary: #8B9A7D;
  --accent: #C17F59;
  --light: #EDE7DC;
  --card: #FFFFFF;
  --border: #D4C9B8;
  --shadow: 0 15px 40px rgba(44, 44, 44, 0.08);
  --radius: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header - Classic with centered logo */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
}

nav ul {
  display: flex;
  gap: 44px;
  list-style: none;
}

nav a {
  color: #4A4A4A;
  font-weight: 600;
  font-size: 0.97rem;
}

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

.btn {
  padding: 15px 34px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 25px rgba(139, 154, 125, 0.3);
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(193, 127, 89, 0.35);
}

/* Asymmetric Hero */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 92vh;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}

.hero-content h1 {
  font-size: 4.1rem;
  line-height: 1.05;
  margin-bottom: 26px;
}

.hero-content p {
  font-size: 1.18rem;
  color: #555;
  max-width: 520px;
  margin-bottom: 38px;
}

.hero-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

/* Modular Blocks - Asymmetric Grid */
.modular-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin: 80px 0;
}

.modular-block {
  background: var(--card);
  border-radius: var(--radius);
  padding: 42px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.4s ease;
}

.modular-block:hover {
  transform: translateY(-8px);
}

.modular-block.large {
  grid-row: span 2;
}

/* Blog Masonry */
.masonry-grid {
  columns: 3;
  column-gap: 28px;
}

@media (max-width: 1100px) {
  .masonry-grid { columns: 2; }
}
@media (max-width: 700px) {
  .masonry-grid { columns: 1; }
}

.masonry-card {
  break-inside: avoid;
  margin-bottom: 28px;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.masonry-card img {
  width: 100%;
  display: block;
}

/* Footer */
footer {
  background: #2C2C2C;
  color: #B8B0A0;
  padding: 75px 0 45px;
  margin-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 55px;
}

.footer-col h4 {
  color: #EDE7DC;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.footer-col a {
  color: #B8B0A0;
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

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

.footer-bottom {
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid #444;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}