/* ============================
   Reset + Base
============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #F5F0EB;
  --color-bg-light: #FFFFFF;
  --color-bg-soft: #E8DFD6;
  --color-border: #D4C4B0;
  --color-border-hover: #C8A882;
  --color-accent: #687956;
  --color-muted: #978476;
  --color-dark: #0D0D0D;
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================
   Reveal animations
============================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  animation: fadeInUp 0.9s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   Hero
============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  background: linear-gradient(135deg, #E8DFD6 0%, #F5F0EB 50%, #FFFFFF 100%);
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.circle-1 {
  top: 5rem;
  right: 2.5rem;
  width: 500px;
  height: 500px;
  background: var(--color-accent);
  opacity: 0.03;
  animation: floatRotate 20s linear infinite;
}

.circle-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 450px;
  height: 450px;
  background: var(--color-muted);
  opacity: 0.03;
  animation: floatRotateReverse 25s linear infinite;
}

@keyframes floatRotate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.1) rotate(90deg); }
}

@keyframes floatRotateReverse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.2) rotate(-90deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 64rem;
}

.hero-logo {
  margin: 0 auto 3rem;
  height: 16rem;
  width: auto;
}

@media (min-width: 768px) {
  .hero-logo {
    height: 20rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    height: 24rem;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title { font-size: 4rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 48rem;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  width: 2rem;
  height: 2rem;
  color: var(--color-accent);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 100%;
  height: 100%;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* ============================
   Section base
============================ */
.section {
  padding: 8rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-subtitle { font-size: 1.125rem; }
}

/* ============================
   About
============================ */
.about {
  background-color: var(--color-bg);
}

.featured-image {
  position: relative;
  margin-bottom: 5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(212, 196, 176, 0.3);
}

.featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-image:hover img {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.1), transparent);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 196, 176, 0.4);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.5s ease, background 0.5s ease,
              border-color 0.5s ease, box-shadow 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--color-bg-light);
  border-color: rgba(200, 168, 130, 0.6);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}

.feature-icon svg {
  width: 3rem;
  height: 3rem;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================
   USPs
============================ */
.usps {
  background-color: var(--color-bg-light);
}

.usps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .usps-grid { grid-template-columns: repeat(3, 1fr); }
}

.usp-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(245, 240, 235, 0.5);
  border: 1px solid rgba(212, 196, 176, 0.3);
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.usp-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(200, 168, 130, 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.usp-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.usp-icon svg {
  width: 2rem;
  height: 2rem;
}

.usp-card p {
  font-size: 1rem;
  color: var(--color-dark);
}

/* ============================
   Audience
============================ */
.audience {
  background-color: var(--color-bg);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}

.audience-card {
  padding: 2rem;
  text-align: center;
  border-radius: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.audience-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.audience-card h3 {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem auto 0;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 196, 176, 0.5);
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  color: var(--color-accent);
}

.location-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.audience .container > .location-badge {
  display: inline-flex;
}

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

.location-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-align: left;
}

.location-value {
  font-size: 1rem;
  color: var(--color-dark);
  text-align: left;
}

/* ============================
   CTA
============================ */
.cta {
  background-color: var(--color-accent);
  color: #fff;
}

.cta-content {
  max-width: 64rem;
  text-align: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .cta-title { font-size: 3rem; }
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cta-subtitle { font-size: 1.125rem; }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  border-radius: 9999px;
  transition: transform 0.4s ease, background 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-bg-soft);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: var(--color-border);
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: scale(1.05);
}

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

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

.footer-logo {
  margin: 0 auto 1.5rem;
  height: 5rem;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
