/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: #2a2420;
  background-color: #faf9f7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.6;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(42, 36, 32, 0.08);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Hero Section */
.hero {
  height: 100vh;
  max-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(42, 36, 32, 0.3), rgba(42, 36, 32, 0.2));
}

.hero-text {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.95;
}

/* Introduction Section */
.intro-section {
  padding: 8rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lead-text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.65;
  font-weight: 300;
  color: #3a332e;
}

/* Offerings Section */
.offerings-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 8rem;
}

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

.offering-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.offering-item.reverse {
  direction: rtl;
}

.offering-item.reverse > * {
  direction: ltr;
}

.offering-image {
  width: 100%;
}

.offering-image img {
  width: 100%;
  border-radius: 2px;
}

.offering-text {
  padding: 2rem 0;
}

.offering-text h3 {
  margin-bottom: 1.25rem;
  color: #2a2420;
}

.offering-text p {
  color: #4a433d;
  line-height: 1.75;
}

/* Philosophy Section */
.philosophy-section {
  background-color: #f0ede8;
  padding: 8rem 3rem;
}

.philosophy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-text h2 {
  margin-bottom: 3rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  margin-top: 2rem;
}

.philosophy-item h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.philosophy-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a524c;
}

.philosophy-image img {
  width: 100%;
  border-radius: 2px;
}

/* Visit Section */
.visit-section {
  padding: 8rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.visit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.visit-info h2 {
  margin-bottom: 3rem;
}

.info-block {
  margin-bottom: 2.5rem;
}

.info-block h4 {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #6a615a;
}

.info-block p {
  line-height: 1.75;
  color: #3a332e;
}

.info-block .note {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6a615a;
  font-style: italic;
}

.visit-image img {
  width: 100%;
  border-radius: 2px;
}

/* Footer */
.footer {
  background-color: #2a2420;
  color: #e8e4df;
  padding: 3rem 3rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #b8b0a8;
}

.footer-right {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-right:hover {
  opacity: 1;
}

/* Responsive Design - Mobile Only (640px and below) */
@media (max-width: 640px) {
  /* Navigation */
  .nav-content {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav-links {
    gap: 1.25rem;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    margin-top: 100px;
    max-height: 600px;
  }

  .hero-text {
    padding: 0 1.5rem;
  }

  /* Sections - Single Column Layouts */
  .intro-section {
    padding: 4rem 1.5rem;
  }

  .offerings-section {
    padding: 0 1.5rem 4rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

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

  .offering-item.reverse {
    direction: ltr;
  }

  /* Philosophy */
  .philosophy-section {
    padding: 4rem 1.5rem;
  }

  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  /* Visit */
  .visit-section {
    padding: 4rem 1.5rem;
  }

  .visit-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 1.5rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
