* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #000000;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Universal class  */
.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5px;
    /* background: #1f2937; */
    color: white;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.logo a {
    color: #15803d;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.logo-text {
    display: inline-block;
    color: #15803d;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}


.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    text-decoration: none;
    color: black;
    line-height: 1;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #166534;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navbar calculator button */
.nav-calculator {
    background: #22c55e;
    color: #ffffff !important;
    border-radius: 999px;
    font-weight: 800;
    border: 2px solid #22c55e;
    margin: 0;
}


.nav-calculator::after {
    display: none;
}

.nav-calculator:hover,
.nav-calculator:focus-visible {
    background: #15803d;
    border-color: #15803d;
    transform: translateY(-1px);
}


/* Hamburger Menu */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 200;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: black;
    border-radius: 999px;
    transition: 0.3s;
    transform-origin: center;
}

/* Mobile View */
@media (max-width: 768px) {

    .logo-text {
        font-size: 1.05rem;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .menu-btn {

        display: flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        background: #15803d;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, visibility 0.35s ease;
        z-index: 100;
        box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18);
    }

    .nav-links.active {
        max-height: 320px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        color: white;
    }

    .nav-links a::after {
        background-color: #22c55e;
    }

    .menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: black;
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: black;
    }
}

/* Hero */
.hero {
    min-height: calc(80vh - 80px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    gap: 48px;
    align-items: center;
    padding: 15px 20px 48px;
}

.hero-content {
    max-width: 560px;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    color: #166534;
    margin-bottom: 20px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    /* color: #6b7280; */
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: min(100%, 460px);
    height: auto;
    display: block;
    object-fit: contain;
}

.btn {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #22c55e;
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.secondary-btn {
    border: 2px solid #22c55e;
    color: #22c55e;
}

.secondary-btn:hover {
    background: #22c55e;
    color: white;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: auto;
        padding: 24px 0 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 0 32px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 16vw, 3.5rem);
    }

    .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}

/* Ingredients */
.ingredients {
    margin: 24px 0 40px;
    padding: clamp(44px, 7vw, 80px) clamp(20px, 5vw, 64px);
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 32px;
}

.ingredients-heading {
    max-width: 650px;
    margin: 0 auto clamp(32px, 5vw, 52px);
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #15803d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ingredients h2 {
    margin-bottom: 14px;
    color: #14532d;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.ingredients-heading p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ingredient-card {
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dcfce7;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(22, 101, 52, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(22, 101, 52, 0.15);
}

.ingredient-image {
    display: grid;
    min-height: 255px;
    place-items: center;
    padding: 26px 20px 12px;
    background: linear-gradient(180deg, #dcfce7 0%, rgba(240, 253, 244, 0) 100%);
}

.ingredient-image img {
    width: 100%;
    max-width: 180px;
    height: 225px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ingredient-card:hover .ingredient-image img {
    transform: scale(1.04);
}

.ingredient-content {
    padding: 22px;
    text-align: center;
}

.ingredient-content h3 {
    margin-bottom: 9px;
    color: #166534;
    font-size: 1.15rem;
}

.ingredient-content p {
    min-height: 66px;
    margin-bottom: 18px;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.55;
}

.ingredient-amount {
    display: inline-block;
    padding: 7px 12px;
    color: #166534;
    background: #dcfce7;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

@media (max-width: 960px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .ingredients {
        margin-bottom: 24px;
        padding: 38px 14px 14px;
        border-radius: 24px;
    }

    .ingredients-heading {
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ingredient-card {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
        align-items: center;
        border-radius: 20px;
    }

    .ingredient-image {
        min-height: 100%;
        padding: 18px 8px;
    }

    .ingredient-image img {
        height: 165px;
    }

    .ingredient-content {
        padding: 20px 16px 20px 14px;
    }

    .ingredient-content h3 {
        font-size: 1rem;
    }

    .ingredient-content p {
        min-height: auto;
        margin-bottom: 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .ingredient-card {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .ingredient-image img {
        height: 145px;
    }
}

/* What is Green Tea Shot Section */
.what-is-green-tea {
    margin: 40px 0;
    padding: clamp(44px, 7vw, 80px) 0;
}

.what-is-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 80px);
    align-items: center;
}

.what-is-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    padding: 20px;
}

.what-is-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.what-is-image:hover img {
    transform: scale(1.02);
}

.what-is-content h2 {
    margin: 12px 0 24px;
    color: #14532d;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.what-is-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}


@media (max-width: 768px) {
    .what-is-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .what-is-image {
        order: -1;
    }

    .what-is-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .what-is-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .what-is-green-tea {
        margin: 24px 0;
        padding: 32px 0;
    }

    .what-is-container {
        gap: 24px;
    }

    .what-is-content h2 {
        margin-bottom: 16px;
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .what-is-content p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
}

/* Equipment & Bar Tools Section */
.equipment-section {
    margin: 40px 0;
    padding: clamp(44px, 7vw, 80px) 0;
}

.equipment-content {
    max-width: 900px;
    margin: 0 auto;
}

.equipment-content h2 {
    margin: 12px 0 32px;
    color: #14532d;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.equipment-content > p {
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.equipment-list {
    margin-bottom: 48px;
    padding-left: 24px;
    list-style: none;
}

.equipment-list li {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.equipment-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.equipment-list strong {
    color: #166534;
    font-weight: 700;
}


@media (max-width: 768px) {
    .equipment-section {
        margin: 24px 0;
        padding: 32px 0;
    }

    .equipment-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }

    .equipment-content > p {
        margin-bottom: 28px;
        font-size: 1rem;
    }

    .equipment-list {
        margin-bottom: 32px;
    }

    .equipment-list li {
        margin-bottom: 16px;
        font-size: 0.9rem;
    }

}

/* Related Reading */
.related-reading-anchor {
    color: #166534;
    text-decoration: none;
    font-weight: 700;
}

.related-reading-anchor:hover,
.related-reading-anchor:focus-visible {
    text-decoration: underline;
}

/* Footer */
.site-footer {

    position: relative;
    left: 50%;
    width: 100vw;
    margin-top: 40px;
    margin-left: -50vw;
    overflow: hidden;
    color: #dcfce7;
    background: #14532d;
}

.site-footer a,
.site-footer h2,
.site-footer p {
    color: inherit;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.8fr 1.3fr;
    gap: clamp(28px, 5vw, 64px);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 68px);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.footer-logo-img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    object-fit: contain;
}

.footer-brand span{
    color: #ffffff;
}

.footer-brand p,
.footer-newsletter p {
    color: #bbf7d0;
    font-size: 0.92rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    background: #22c55e;
    transform: translateY(-2px);
}

.footer-column h2,
.footer-newsletter h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 1rem;
}

.footer-column ul {
    display: grid;
    gap: 13px;
    list-style: none;
}

.footer-column a {
    color: #bbf7d0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    padding: 5px;
    background: #ffffff;
    border-radius: 999px;
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 11px 14px;
    color: #14532d;
    background: transparent;
    border: 0;
    outline: 0;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    padding: 11px 18px;
    color: #ffffff;
    background: #22c55e;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
    background: #15803d;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px clamp(40px, 6vw, 68px);
    background: rgba(0, 0, 0, 0.12);
}

.footer-bottom > *:first-child {
    margin-left: max(0px, calc((100% - 1200px) / 2));
}

.footer-bottom > *:last-child {
    margin-right: max(0px, calc((100% - 1200px) / 2));
}

.footer-bottom p {
    color: #bbf7d0;
    font-size: 0.8rem;
}

@media (max-width: 960px) {
    .footer-main {
        grid-template-columns: 1.3fr 1fr;
    }
}

@media (max-width: 600px) {
    .site-footer {
        margin-top: 24px;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
        padding: 28px 20px 24px;
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .footer-logo {
        margin-bottom: 0;
        font-size: 1.35rem;
    }

    .footer-logo-img {
        width: 36px;
        height: 36px;
    }

    .footer-brand p,
    .footer-newsletter p {
        display: none;
    }

    .social-links {
        flex-shrink: 0;
        margin-top: 0;
    }

    .social-links a {
        width: 34px;
        height: 34px;
    }

    .footer-column h2,
    .footer-newsletter h2 {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .footer-column ul {
        gap: 8px;
    }

    .footer-column a {
        font-size: 0.8rem;
    }

    .newsletter-form {
        margin-top: 0;
    }

    .newsletter-form input,
    .newsletter-form button {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .footer-bottom {
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
    }

    .footer-bottom > *:first-child,
    .footer-bottom > *:last-child {
        margin-right: 0;
        margin-left: 0;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    .footer-bottom p:last-child {
        flex-shrink: 0;
        text-align: right;
    }
}

@media (max-width: 420px) {
    .newsletter-form {
        gap: 4px;
        padding: 4px;
    }

    .newsletter-form input {
        width: 100%;
        padding-right: 6px;
        padding-left: 10px;
    }

    .newsletter-form button {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 0.78rem;
    }

    .footer-main {
        gap: 22px 14px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .footer-brand {
        gap: 10px;
    }

    .footer-logo {
        font-size: 1.15rem;
    }

    .footer-logo-img {
        width: 32px;
        height: 32px;
    }

    .social-links {
        gap: 6px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.64rem;
    }

    .footer-bottom {
        padding-right: 16px;
        padding-left: 16px;
    }
}
