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

body {
    background-color: #ffffff;
    font-family: sans-serif;
    color: #221604;
}

.home-nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: rgba(180, 175, 168, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-radius: 15px;
}

.home-logo {
    font-family: "Schoolbell", cursive;
    font-weight: 400;
    font-size: 24px;
    color: #221604;
    text-decoration: none;
}

.home-nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.home-nav-links a {
    color: #221604;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-nav-links a:hover {
    opacity: 0.5;
}

.home-nav-cart {
    background: #221604;
    color: #ffffff !important;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px !important;
    letter-spacing: 0 !important;
}

.home-nav-cart:hover {
    opacity: 0.7 !important;
}
/* GALLERY STRIP */
.home-gallery {
    background: #ffffff;
    padding: 80px 40px;
}

.home-gallery-header {
    margin-bottom: 32px;
}

.home-gallery-title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #221604;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-gallery-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.home-gallery-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.home-gallery-item img:hover {
    opacity: 0.85;
}

.home-gallery-caption {
    font-size: 13px;
    color: #221604;
    letter-spacing: 0.05em;
}

.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 22, 4, 0.2);
}

.home-hero-text {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.home-hero-title {
    font-family: "Schoolbell", cursive;
    font-size: 52px;
    color: #EDE7DA;
    margin-bottom: 10px;
    transition: opacity 0.5s ease;
}

.home-hero-sub {
    display: block;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #EDE7DA;
    text-decoration: none;
    text-transform: uppercase;
}

.home-hero-sub:hover {
    opacity: 0.7;
}
.home-reviews {
    padding: 80px 40px;
    background: #ffffff;
}

.home-reviews-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #221604;
    margin-bottom: 16px;
}

.home-reviews-rule {
    border: none;
    border-top: 0.5px solid rgba(34, 22, 4, 0.15);
    margin-bottom: 48px;
}

.home-reviews-track-wrapper {
    overflow-x: auto;
    cursor: grab;
    scrollbar-width: none;
}

.home-reviews-track-wrapper::-webkit-scrollbar {
    display: none;
}

.home-reviews-track-wrapper:active {
    cursor: grabbing;
}

.home-reviews-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.home-review-card {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-review-stars {
    font-size: 18px;
    color: #221604;
    letter-spacing: 2px;
}

.home-review-text {
    font-size: 15px;
    font-weight: 500;
    color: #221604;
    line-height: 1.6;
}

.home-review-author {
    font-size: 14px;
    font-weight: 400;
    color: #221604;
}
.home-footer {
    background: rgba(180, 175, 168, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    margin: 0 24px 24px;
    color: #221604;
    padding: 80px 40px 32px;
    opacity: 1;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.home-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-footer-top {
    text-align: center;
    margin-bottom: 60px;
}

.home-footer-logo {
    font-family: "Schoolbell", cursive;
    font-size: 36px;
    color: #221604;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.home-footer-tagline {
    font-size: 13px;
    letter-spacing: 0.15em;
    color: #593F28;
    text-transform: uppercase;
}

.home-footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 0.5px solid rgba(34, 22, 4, 0.2);
    padding-top: 48px;
    margin-bottom: 48px;
}

.home-footer-links-label,
.home-footer-waitlist-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #593F28;
    margin-bottom: 20px;
}

.home-footer-link {
    display: inline-block;
    font-size: 14px;
    color: #221604;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid #221604;
    padding: 12px 28px;
    transition: background 0.2s, color 0.2s;
}

.home-footer-link:hover {
    background: #221604;
    color: #EDE7DA;
}

.home-footer-waitlist {
    max-width: 400px;
    width: 100%;
}

.home-footer-waitlist-sub {
    font-size: 13px;
    color: #593F28;
    margin-bottom: 20px;
    line-height: 1.6;
}

.home-footer-form {
    display: flex;
    gap: 0;
}

.home-footer-input {
    flex: 1;
    background: transparent;
    border: 0.5px solid rgba(34, 22, 4, 0.3);
    color: #221604;
    padding: 12px 16px;
    font-size: 13px;
    font-family: sans-serif;
    outline: none;
}

.home-footer-input::placeholder {
    color: rgba(34, 22, 4, 0.4);
}

.home-footer-input:focus {
    border-color: rgba(34, 22, 4, 0.6);
}

.home-footer-btn {
    background: #221604;
    color: #EDE7DA;
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

.home-footer-btn:hover {
    opacity: 0.8;
}

.home-footer-success {
    display: none;
    font-size: 12px;
    color: #593F28;
    margin-top: 12px;
    letter-spacing: 0.1em;
}

.home-footer-bottom {
    border-top: 0.5px solid rgba(34, 22, 4, 0.15);
    padding-top: 24px;
    font-size: 11px;
    color: rgba(34, 22, 4, 0.5);
    letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .home-nav-links { gap: 20px; }
  .home-hero-text { white-space: normal; width: 90%; }
  .home-hero-title { font-size: 40px; }
  .home-hero-sub { font-size: 11px; letter-spacing: 0.12em; }
  .home-gallery { padding: 56px 20px; }
  .home-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .home-reviews { padding: 56px 20px; }
  .home-review-card { width: 300px; }
  .home-footer { padding: 56px 24px 24px; margin: 0 16px 16px; }
  .home-footer-middle { flex-direction: column; gap: 40px; }
  .home-footer-waitlist { max-width: 100%; }
}
@media (max-width: 480px) {
  .home-nav-links { gap: 12px; }
  .home-nav-links a { font-size: 10px; }
  .home-hero-title { font-size: 30px; }
  .home-gallery-grid { grid-template-columns: 1fr; }
  .home-review-card { width: 260px; }
  .home-footer { margin: 0 10px 10px; padding: 40px 16px 20px; }
}
