/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

/* Theme */
:root {
  --color-bg: #f5f5f4;
  --color-surface: #ffffff;
  --color-surface-soft: #f3f4f6;
  --color-accent: #d4a017;
  --color-accent-soft: #f7e9c6;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;

  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.06);

  --max-width: 1120px;
}

/* Layout */
body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #e5e7eb 0, #f5f5f4 52%, #e5e7eb 100%);
  color: var(--color-text);
  line-height: 1.6;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.section,
.page-hero,
.hero {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
}

@media (min-width: 900px) {
  .section,
  .page-hero,
  .hero {
    padding-inline: 1.5rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
      to bottom,
      rgba(248, 250, 252, 0.96),
      rgba(248, 250, 252, 0.88),
      transparent
    );
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.site-header > .brand,
.site-header > .nav-toggle,
.site-header > .site-nav,
.site-header > .brand + .nav-toggle {
  margin-inline: 1.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.65rem;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fde68a, #d4a017);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.brand-byline {
  font-size: 0.72rem;
  color: var(--color-muted);
}

/* Nav */
.site-nav {
  display: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--color-text);
}

.site-nav a.is-active {
  color: var(--color-text);
  position: relative;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
}

.store-link {
  padding: 0.37rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.42);
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7, #fbbf24);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Nav toggle (mobile) */
.nav-toggle {
  border: none;
  background: none;
  padding: 0.35rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 0.22rem;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
}

/* Mobile nav open state */
.site-nav.is-open {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem 1.1rem;
}

.site-nav.is-open ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

/* Desktop header */
@media (min-width: 900px) {
  .site-header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: 1.5rem;
    padding-block: 0.75rem;
    column-gap: 2rem;
  }

  .site-header > .brand,
  .site-header > .nav-toggle,
  .site-header > .site-nav,
  .site-header > .brand + .nav-toggle {
    margin-inline: 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
  }
}

/* Hero */
.hero {
  display: grid;
  gap: 2.75rem;
  align-items: center;
  padding-top: 3.5rem;
}

.hero-text h1 {
  font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 0.98rem;
  color: var(--color-muted);
  max-width: 34rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.hero-meta span {
  background: rgba(148, 163, 184, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

/* Hero media */
.hero-media {
  display: grid;
  gap: 1rem;
}

.hero-photo-main {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.hero-photo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-photo-stack img {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Hero responsive */
@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

.btn-secondary {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-secondary:hover {
  background: #e5e7eb;
}

.btn-light {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.btn-light:hover {
  background: #f9fafb;
}

/* Sections & content */
.page-hero {
  padding-top: 3.25rem;
  text-align: left;
}

.page-hero h1 {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 32rem;
  color: var(--color-muted);
  font-size: 0.96rem;
}

/* Generic sections */
.section-header h2 {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.section-header p {
  margin-top: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.35rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

/* Accent section */
.section-accent {
  padding-block: 2.5rem;
}

.section-accent-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: 24px;
  padding: 1.9rem 1.6rem;
  background: radial-gradient(circle at top left, #fef3c7, #f97316);
  color: #111827;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
}

.section-accent-inner h2 {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
}

.section-accent-inner p {
  margin: 0;
  max-width: 32rem;
}

@media (min-width: 800px) {
  .section-accent-inner {
    flex-direction: row;
    align-items: center;
  }
}

/* Feature list */
.feature-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-item h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

/* Split layout */
.section-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .section-split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.about-photo img {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.timeline-item {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(249, 250, 251, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.timeline-item h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.timeline-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: auto;
}

.gallery-item figcaption {
  padding: 0.7rem 0.9rem 0.8rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Steps */
.steps-list {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.steps-list li {
  margin-bottom: 0.65rem;
}

/* Contact form */
.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  outline: none;
  font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(212, 160, 23, 0.4);
}

.contact-form button {
  margin-top: 0.25rem;
}

.form-hint {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.note {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 1.8rem 1.5rem 1.4rem;
  background: #020617;
  color: #e5e7eb;
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.footer-brand .brand-mark {
  background: radial-gradient(circle at 30% 20%, #facc15, #d97706);
  color: #111827;
}

.footer-brand .brand-name {
  color: #f9fafb;
}

.footer-brand .brand-byline {
  color: #9ca3af;
}

.footer-columns {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
}

.footer-column h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.footer-column p,
.footer-column li {
  font-size: 0.85rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a {
  color: inherit;
  text-decoration: none;
}

.footer-column a:hover {
  color: #facc15;
}

.footer-store-link {
  font-weight: 500;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 1.2rem auto 0;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding-top: 0.9rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Small screen tweaks */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
