/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: #FAF8F4;
  color: #1a1a1a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
}

/* ===== Header ===== */
header {
  text-align: center;
  padding: 2.5rem 1.5rem 1rem;
}

header a img {
  display: block;
  margin: 0 auto;
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* ===== Navigation ===== */
nav {
  text-align: center;
  padding: 0.75rem 1.5rem 0;
}

nav a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 1rem;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover {
  color: #1a1a1a;
}

nav a.active {
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.hero p {
  font-size: 1.05rem;
  color: #555;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== Opening / launch ===== */
.opening-section {
  max-width: 480px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  text-align: center;
}

.opening-section img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ===== Section divider ===== */
.divider {
  width: 48px;
  height: 1.5px;
  background: #c9a96e;
  margin: 0 auto;
  border: none;
}

/* ===== Feed section ===== */
.feed-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
}

.feed-section h2 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: 4px;
  overflow: hidden;
}

.instagram-feed .feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ede9e1;
  cursor: pointer;
  display: block;
}

.instagram-feed .feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.instagram-feed .feed-item:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.instagram-feed .feed-item .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-feed .feed-item:hover .overlay {
  opacity: 1;
}

.overlay svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.feed-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: #999;
}

.feed-loading .spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #e0dbd3;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cta-row {
  text-align: center;
  margin-top: 2rem;
}

.cta-row a {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.cta-row a:hover {
  background: #1a1a1a;
  color: #FAF8F4;
}

/* ===== Newsletter ===== */
.newsletter-section {
  max-width: 540px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  text-align: center;
}

.newsletter-heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.newsletter-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.25rem;
}

/* ===== About page ===== */
.about-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.about-section .about-hero-img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 6px;
}

.about-section h1 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.about-section p {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  color: #333;
}

.about-section p a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-section blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid #c9a96e;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  background: rgba(201, 169, 110, 0.06);
  border-radius: 0 4px 4px 0;
}

.about-section .founders {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid #e8e2da;
  color: #999;
  font-size: 0.75rem;
}

footer .footer-address {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.25rem;
}

footer .footer-hours {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
}

footer a {
  color: #666;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  header {
    padding: 1.75rem 1rem 0.75rem;
  }

  header a img {
    max-width: 200px;
  }

  .hero {
    padding: 1.5rem 1rem 0.75rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .feed-section {
    padding: 1.5rem 0.75rem 2rem;
  }

  .instagram-feed {
    gap: 3px;
  }

  .about-section {
    padding: 1.5rem 1rem 2.5rem;
  }
}
