@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Bitter:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

:root {
  --bg: #e2ddd5;
  --text: #111;
  --muted: #6b6660;
  --max-w: 1300px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Bitter', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: 'Shrikhand', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
}

.nav-links { display: flex; gap: 2rem; }

.nav-links a {
  font-size: 0.95rem;
  color: var(--text);
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.55; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 82vh;
  min-height: 500px;
  overflow: hidden;
}

.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-overlay h1 {
  font-family: 'Shrikhand', serif;
  font-style: italic;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.15;
  color: #f0ece4;
  max-width: 900px;
}

/* ── SPLIT SECTION ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-img {
  overflow: hidden;
}

.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.split-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h2 {
  font-family: 'Shrikhand', serif;
  font-style: italic;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text);
}

.split-text p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.split-text p:last-child { margin-bottom: 0; }

/* ── SOCIAL SECTION ── */
.social-section {
  padding: 5rem 2.5rem;
  text-align: center;
}

.social-section h2 {
  font-family: 'Shrikhand', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.social-btn {
  display: block;
  background: var(--text);
  color: #fff;
  padding: 0.65rem 1rem;
  font-family: 'Bitter', serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: opacity 0.2s;
}

.social-btn:hover { opacity: 0.7; color: #fff; }

/* ── FOOTER / CONTACT STRIP ── */
.footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.5rem 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-strip .tagline {
  font-family: 'Shrikhand', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text);
}

.footer-contact {
  text-align: right;
}

.footer-contact .label {
  font-family: 'Shrikhand', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-contact a:hover { color: var(--text); }

/* ── PAGE HEADER (about/contact pages) ── */
.page-header {
  padding: 5rem 2.5rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Shrikhand', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
}

.page-header .subtitle {
  color: var(--muted);
  font-style: italic;
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* ── ABOUT SPLIT (about page) ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}

.about-split img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── CONTACT PAGE ── */
.contact-wrap {
  max-width: 600px;
  padding: 0 2.5rem 5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.contact-detail span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 55px;
}

.contact-detail a:hover { opacity: 0.6; }

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.contact-social a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--text);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 999px;
}

.contact-social a:hover { opacity: 0.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-img { height: 50vw; min-height: 280px; }
  .split-text { padding: 3rem 2rem; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-strip { flex-direction: column; gap: 2rem; text-align: center; }
  .footer-contact { text-align: center; }
}

@media (max-width: 480px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
