    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    /* ✅ FIX: prevents images from blowing up */
    img {
    max-width: 100%;
    height: auto;
    display: block;
    }
    
    body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f5f1e8;
    color: #1a1a1a;
    line-height: 1.6;
    }
    
    /* Hero Section */
    .hero {
    background: #0a0804;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f5f1e8;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    }
    
    .logo-container {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    }
    
    .maguey-logo {
    width: 320px;
    height: auto;
    filter: brightness(0) invert(1);
    }
    
    .hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    }
    
    .hero-tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 0.08em;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
    }
    
    .scroll-hint {
    position: absolute;
    bottom: 40px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
    }
    
    @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    }
    
    /* Navigation */
    nav {
    background: #2c2419;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    flex-wrap: wrap;
    }
    
    nav a {
    color: #f5f1e8;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    }
    
    nav a:hover {
    color: #5a7a5e;
    }
    
    /* Section Base */
    section {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 6rem) 2rem;
    }
    
    h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    }
    
    h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #8b6f47 0%, #5a7a5e 100%);
    }
    
    /* Brand Section */
    .brand-section {
    background: #fdfcfa;
    }
    
    .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
    }
    
    .brand-story {
    font-size: 1.15rem;
    line-height: 1.9;
    }
    
    .brand-story p {
    margin-bottom: 1.8rem;
    }
    
    .brand-story strong {
    color: #8b6f47;
    font-weight: 700;
    }
    
    .brand-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f1e8;
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
    }
    
    .maguey-symbol {
    width: 220px;
    margin-bottom: 2rem;
    }
    
    .symbol-meaning {
    font-size: 0.95rem;
    color: #666;
    max-width: 280px;
    line-height: 1.6;
    }
    
    .symbol-meaning strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    }
    
    .pullquote {
    background: #8b6f47;
    color: #f5f1e8;
    padding: 2.5rem 3rem;
    margin: 3rem 0;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    border-radius: 4px;
    position: relative;
    }
    
    .pullquote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    font-family: Georgia, serif;
    }
    
    /* Founder Section */
    .founder-section {
    background: #f5f1e8;
    }
    
    .founder-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
    }
    
    .founder-image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #8b6f47 0%, #6b5435 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f1e8;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    
    .founder-text {
    font-size: 1.15rem;
    line-height: 1.9;
    }
    
    .founder-text p {
    margin-bottom: 1.8rem;
    }
    
    .founder-highlight {
    background: #fdfcfa;
    border-left: 5px solid #8b6f47;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    }
    
    .founder-name {
    font-size: 2rem;
    font-weight: 900;
    color: #8b6f47;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    }
    
    .founder-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    }
    
    /* Product Section */
    .product-section {
    background: #fdfcfa;
    }
    
    .product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
    }
    
    .product-image-container {
    background: #f5f1e8;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    
    .product-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    }
    
    .product-info h3 {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 900;
    }
    
    .product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
    }
    
    .features-list {
    list-style: none;
    margin: 2rem 0;
    }
    
    .features-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid #e8e3d8;
    }
    
    .features-list li:last-child {
    border-bottom: none;
    }
    
    .features-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #5a7a5e;
    font-size: 1.2rem;
    }
    
    .tech-specs {
    background: #f5f1e8;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
    }
    
    .tech-specs h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    }
    
    .specs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    }
    
    .spec-item {
    font-size: 0.95rem;
    }
    
    .spec-label {
    font-weight: 700;
    color: #5a7a5e;
    display: block;
    margin-bottom: 0.25rem;
    }
    
    /* Journey Section */
    .journey-section {
    background: #2c2419;
    color: #f5f1e8;
    }
    
    /* Podcast Section */
    .podcast-section {
    background: #fdfcfa;
    }
    
    .podcast-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    }
    
    .podcast-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    }
    
    .podcast-highlight {
    background: #8b6f47;
    color: #f5f1e8;
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 4px;
    }
    
    .podcast-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    }
    
    .podcast-highlight p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0;
    }
    
    .guest-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    }
    
    .guest-type {
    background: #f5f1e8;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    }
    
    .guest-type h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #5a7a5e;
    font-weight: 700;
    letter-spacing: 0.05em;
    }
    
    .guest-type p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #666;
    }
    
    /* Future Drops Section */
    .future-drops-section {
    background: #f5f1e8;
    }
    
    .drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    }
    
    .drop-item {
    background: #fdfcfa;
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 5px solid #5a7a5e;
    }
    
    .drop-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    }
    
    .drop-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    }
    
    .drop-feature {
    background: #f5f1e8;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-style: italic;
    }
    
    /* Journey Section */
    .journey-section {
    background: #2c2419;
    color: #f5f1e8;
    }
    
    .journey-section h2::after {
    background: #f5f1e8;
    }
    
    .journey-steps {
    margin-top: 4rem;
    display: grid;
    gap: 4rem;
    }
    
    .journey-step {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    }
    
    .step-label {
    text-align: right;
    font-size: 1.8rem;
    font-weight: 900;
    color: #5a7a5e;
    letter-spacing: 0.05em;
    }
    
    .step-content {
    border-left: 3px solid #5a7a5e;
    padding-left: 2.5rem;
    padding-bottom: 1rem;
    }
    
    .step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    }
    
    .step-content p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #d4cfc4;
    }
    
    /* CTA Section */
    .cta-section {
    background: linear-gradient(135deg, #8b6f47 0%, #6b5435 100%);
    color: #f5f1e8;
    text-align: center;
    padding: 5rem 2rem;
    }
    
    .cta-section h2 {
    color: #f5f1e8;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    }
    
    .cta-section h2::after {
    display: none;
    }
    
    .cta-text {
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    }
    
    .email-form {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    }
    
    .email-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    }
    
    .email-form input:focus {
    outline: 3px solid rgba(255,255,255,0.5);
    }
    
    .email-form button {
    padding: 1.2rem 3rem;
    background: #2c2419;
    color: #f5f1e8;
    border: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    }
    
    .email-form button:hover {
    background: #1a1510;
    transform: translateY(-2px);
    }
    
    .social-prompt {
    margin-top: 3rem;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    }
    
    /* Footer */
    footer {
    background: #1a1510;
    color: #f5f1e8;
    padding: 3rem 2rem;
    text-align: center;
    }
    
    footer p {
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    opacity: 0.8;
    }
    
    /* Responsive */
    @media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .brand-grid,
    .founder-layout,
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .founder-image-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .journey-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-label {
        text-align: left;
    }
    
    nav ul {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    }
    
    @media (max-width: 640px) {
    section {
        padding: 3rem 1.5rem;
    }
    
    .pullquote {
        padding: 2rem 1.5rem;
        font-size: 1.2rem;
    }
    
    .product-image-container {
        padding: 1rem;
    }
    }
    
    .hero-photo-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    }
    .hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: saturate(0.7) brightness(0.48);
    transform: scale(1.04);
    }
    .hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,6,3,0.25) 0%,
        rgba(8,6,3,0.1) 35%,
        rgba(8,6,3,0.82) 100%
    );
    }
    .hero .logo-container,
    .hero h1,
    .hero .hero-tagline,
    .hero .scroll-hint {
    position: relative;
    z-index: 2;
    }
    /* ── El Camino walker banner ── */
    .camino-photo-banner {
    position: relative;
    height: 60vh;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    }
    
    .camino-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(0.65) brightness(0.55);
    transform: scale(1.03);
    transition: transform 8s ease;
    }
    
    .camino-photo-banner:hover .camino-photo {
    transform: scale(1.0);
    }
    
    .camino-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
    rgba(44, 36, 25, 0.4) 0%,
    rgba(44, 36, 25, 0.1) 40%,
    rgba(44, 36, 25, 0.95) 100%);
    }
    
    .camino-photo-text {
    position: relative;
    z-index: 2;
    padding: 3rem clamp(2rem, 6vw, 6rem);
    color: #f5f1e8;
    }
    
    .camino-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    color: #5a7a5e;
    font-weight: 700;
    margin-bottom: 0.8rem;
    }
    
    .camino-subhead {
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: #f5f1e8;
    }
    
    .maguey-roots-wrapper {
    background: #0a0804;
    }
    
    .maguey-field-hero {
    position: relative;
    height: 80vh;
    min-height: 460px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    }
    
    .field-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    transform: scale(1.04);
    transition: transform 7s ease;
    }
    
    .maguey-field-hero:hover .field-bg-img {
    transform: scale(1.0);
    }
    
    .field-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 4, 0.93) 0%, rgba(10, 8, 4, 0.2) 55%, rgba(10, 8, 4, 0.05) 100%);
    }
    
    .field-text {
    position: relative;
    z-index: 2;
    padding: 4rem clamp(2rem, 6vw, 6rem);
    max-width: 860px;
    color: #f5f1e8;
    }
    
    .field-eyebrow {
    font-size: .72rem;
    letter-spacing: .32em;
    color: #5a7a5e;
    margin-bottom: 1.1rem;
    font-weight: 700;
    }
    
    .field-headline {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: .05em;
    line-height: 1.06;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    }
    
    .field-sub {
    font-size: clamp(.92rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: #c8c0b0;
    max-width: 540px;
    }
    
    .maguey-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    }
    
    .detail-box {
    position: relative;
    overflow: hidden;
    }
    
    .detail-box--large {
    min-height: 460px;
    }
    
    .detail-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    }
    
    .detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.25, .46, .45, .94);
    }
    
    .detail-box:hover .detail-img {
    transform: scale(1.06);
    }
    
    .detail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(to top, rgba(10, 8, 4, .92) 0%, transparent 100%);
    color: #f5f1e8;
    }
    
    .detail-label {
    display: block;
    font-size: .65rem;
    letter-spacing: .32em;
    color: #5a7a5e;
    font-weight: 700;
    margin-bottom: .5rem;
    }
    
    .detail-caption p {
    font-size: .95rem;
    line-height: 1.5;
    color: #d4cfc4;
    margin: 0;
    }
    
    .detail-box-stack {
    display: flex;
    flex-direction: column;
    gap: 3px;
    }
    
    .campesino-panel {
    background: #121008;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    flex: 1;
    }
    
    .campesino-img-wrap {
    flex-shrink: 0;
    width: 200px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .55);
    }
    
    .campesino-img {
    width: 100%;
    height: auto;
    display: block;
    }
    
    .campesino-caption {
    color: #f5f1e8;
    }
    
    .campesino-caption p {
    font-size: .98rem;
    line-height: 1.65;
    color: #c0b8a8;
    margin: 0;
    }
    
    .detail-stat-block {
    background: #1a1410;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    
    .stat-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.6rem;
    }
    
    .stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: #f5f1e8;
    line-height: 1;
    }
    
    .stat-num span {
    font-size: 1.5rem;
    color: #5a7a5e;
    }
    
    .stat-desc {
    font-size: .78rem;
    color: #8b7a60;
    margin-top: .3rem;
    line-height: 1.4;
    max-width: 110px;
    }
    
    .stat-tagline {
    font-size: .92rem;
    color: #c8c0b0;
    line-height: 1.65;
    border-top: 1px solid #2c2419;
    padding-top: 1.2rem;
    }
    
    .stat-tagline em {
    color: #8b6f47;
    }
    
    .maguey-manifesto {
    background: #0f0c08;
    border-top: 1px solid #1e1810;
    }
    
    .manifesto-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #f5f1e8;
    }
    
    .pan-eyebrow {
    font-size: .65rem;
    letter-spacing: .32em;
    color: #5a7a5e;
    font-weight: 700;
    margin-bottom: 1.4rem;
    }
    
    .manifesto-inner p {
    font-size: 1.02rem;
    line-height: 1.88;
    color: #c8c0b0;
    margin-bottom: 1.1rem;
    }
    
    .manifesto-inner em {
    color: #f5f1e8;
    font-style: italic;
    }
    
    .pan-rule {
    width: 46px;
    height: 2px;
    background: #8b6f47;
    margin: 1.6rem 0;
    }
    
    .pan-quote {
    font-size: .97rem;
    line-height: 1.75;
    color: #7a6a50;
    font-style: italic;
    }
    
    .pan-quote em {
    display: block;
    margin-top: .35rem;
    font-size: .85rem;
    color: #52473a;
    }
    
    @media(max-width:860px) {
    .maguey-detail-grid {
    grid-template-columns: 1fr;
    }
    
    .campesino-panel {
    flex-direction: column;
    align-items: flex-start;
    }
    
    .campesino-img-wrap {
    width: 160px;
    }
    
    .detail-box--large {
    min-height: 300px;
    }
    }