/*=========================================================
MIISOFA VERSION 2
miisofa-styles.css
=========================================================*/

/*=========================================================
Variables
=========================================================*/
:root {
    --primary: #45190D;
    --secondary: #D9B98A;
    --secondary-light: #F6F0E7;

    --text: #45190D;
    --text-light: #6F6660;

    --white: #ffffff;

    --background: #F6F0E7;
    --background-light: #F6F0E7;

    --border: #ECE6DF;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 34px;
    --radius-xl: 60px;

    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.14);

    --container: 1320px;
    --transition: .35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    outline: none;
}

/*=========================================================
Typography
=========================================================*/
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
}

h1 {
    font-size: 84px;
    letter-spacing: -2px;
}

h2 {
    font-size: 58px;
    margin-bottom: 28px;
}

h3 {
    font-size: 38px;
    margin-bottom: 18px;
}

h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
}

/*=========================================================
Layout
=========================================================*/
.container {
    width: min(var(--container), calc(100% - 80px));
    margin: auto;
}

.section {
    padding: 130px 0;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header h2 {
    margin: 20px 0 24px;
}

.section-header p {
    max-width: 650px;
    margin: auto;
}

/*=========================================================
Progress Bar
=========================================================*/
.progress-bar {
    position: fixed;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: var(--secondary);
    z-index: 99999;
}

/*=========================================================
Header
=========================================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 999;
    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*=========================================================
Logo
=========================================================*/
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
}

.logo img {
    width: 180px;   /* Adjust as needed */
    height: auto;   /* Maintains aspect ratio */
    display: block;
}

/* Header base */
.header {
    background: var(--primary);
}

/* Sticky/scrolled header */
.header.scrolled {
    background: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Header text */
.logo,
nav a,
.btn-outline {
    color: var(--secondary);
}

/* Underline color for nav links */
nav a::after {
    background: var(--secondary);
}

/* Optional: keep hover state aligned */
nav a:hover,
nav a.active {
    color: var(--secondary);
}

/* Outline button border in header */
.btn-outline {
    border: 1px solid rgba(217, 185, 138, 0.35);
}

.header.scrolled .btn-outline {
    border-color: rgba(217, 185, 138, 0.35);
}

/* Optional hover for outline button */
.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
}
/*=========================================================
Navigation
=========================================================*/
nav ul {
    display: flex;
    gap: 42px;
    align-items: center;
}

nav a {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: .35s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary);
}

/*=========================================================
Buttons
=========================================================*/
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .35);
    color: var(--primary);
}

.header.scrolled .btn-outline {
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/*=========================================================
Mobile Menu
=========================================================*/
.mobile-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-sm);
    font-size: 18px;
}

/*=========================================================
Hero
=========================================================*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 12px 20px;
    background: white;
    border-radius: 100px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    color: var(--secondary);
}

.hero h1 {
    max-width: 620px;
    margin-bottom: 30px;
}

.hero p {
    max-width: 560px;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: fadeIn .9s ease .2s both;
}

.hero-image img {
    height: 760px;
    object-fit: cover;
    transition: 1s;
}

.hero-image:hover img {
    transform: scale(1.04);
}

.hero-content {
    animation: fadeUp .8s ease forwards;
}

/*=========================================================
Hero Stats
=========================================================*/
.hero-stats {
    display: flex;
    gap: 60px;
}

.hero-stats h2 {
    font-size: 42px;
    margin-bottom: 6px;
}

.hero-stats span {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

/*=========================================================
Intro
=========================================================*/
.intro {
    padding: 40px 0;
    background: var(--primary);
}

.intro-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
    align-items: center;
}

.intro .section-tag {
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 100px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.intro h2 {
    max-width: 900px;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
    color: var(--secondary);
}

.intro p {
    color: rgba(255, 255, 255, .75);
}

/*=========================================================
About
=========================================================*/
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image,
.collection-image,
.craft-image,
.gallery-grid figure {
    overflow: hidden;
    transition: .35s ease;
}

.about-image,
.craft-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.collection-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.gallery-grid figure {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.about-image img,
.craft-image img {
    height: 720px;
    object-fit: cover;
    transition: 1s;
}

.collection-image img {
    height: 620px;
    object-fit: cover;
    transition: 1s;
}

.about-image:hover img,
.collection-image:hover img,
.craft-image:hover img,
.gallery-grid figure:hover img {
    transform: scale(1.05);
}

.collection-image:hover,
.about-image:hover,
.craft-image:hover,
.gallery-grid figure:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    max-width: 620px;
    margin: 18px 0 30px;
}

.about-content p {
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.about-features > div {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.about-features > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-features i {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 164, 109, .12);
    color: var(--secondary);
    font-size: 22px;
    transition: var(--transition);
}

.about-features > div:hover i {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-4px);
}

.about-features h4 {
    margin-bottom: 10px;
}

/*=========================================================
Collections
=========================================================*/
.collections {
    background: var(--background-light);
}

.collection-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    margin-bottom: 130px;
}

.collection-row:last-child {
    margin-bottom: 0;
}

.collection-row.reverse {
    direction: rtl;
}

.collection-row.reverse > * {
    direction: ltr;
}

.collection-content {
    max-width: 520px;
}

.collection-content span {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary);
}

.collection-content h3 {
    margin-bottom: 22px;
    font-size: 46px;
}

.collection-content p {
    margin-bottom: 34px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.text-link i {
    font-size: 14px;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--secondary);
}

.text-link:hover i {
    transform: translateX(8px);
}

/*=========================================================
Highlights
=========================================================*/
.highlights {
    padding: 120px 0;
    background: var(--primary);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-box {
    padding: 55px 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .06);
}

.highlight-box h3 {
    font-size: 64px;
    margin-bottom: 18px;
    color: #fff;
}

.highlight-box p {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/*=========================================================
Craft
=========================================================*/
.craft {
    background: #fff;
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.craft-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.craft-item {
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border);
}

.craft-item:last-child {
    border: none;
    padding-bottom: 0;
}

.craft-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.craft-item h3 {
    font-size: 34px;
    margin-bottom: 16px;
}

/*=========================================================
Gallery
=========================================================*/
.gallery {
    background: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 260px;
    gap: 20px;
}

.gallery-large {
    grid-row: span 2;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

/*=========================================================
CTA
=========================================================*/
.cta {
    padding: 140px 0;
    background: var(--primary);
}

.cta-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.cta-box span {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-light);
}

.cta-box h2 {
    font-size: 72px;
    color: #fff;
    margin-bottom: 30px;
}

.cta-box p {
    max-width: 620px;
    margin: auto auto 40px;
    color: rgba(255, 255, 255, .75);
}

.cta .hero-buttons {
    justify-content: center;
    margin: 0;
}

.cta .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
}

.cta .btn-secondary:hover {
    background: #fff;
    color: var(--primary);
}

/*=========================================================
Contact
=========================================================*/
.contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 90px;
    align-items: start;
}

.contact-left h2 {
    margin: 18px 0 30px;
    max-width: 520px;
}

.contact-left > p {
    margin-bottom: 45px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info > div {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 164, 109, .12);
    color: var(--secondary);
    font-size: 20px;
}

.contact-info strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    color: var(--primary);
}

.contact-right {
    background: var(--background-light);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-right input,
.contact-right textarea,
.newsletter-form input {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
    transition: var(--transition);
}

.contact-right input,
.contact-right textarea {
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 15px;
}

.contact-right textarea {
    resize: vertical;
    min-height: 180px;
}

/*=========================================================
Newsletter
=========================================================*/
.newsletter {
    padding: 120px 0;
    background: var(--background-light);
}

.newsletter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 70px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.newsletter-content {
    max-width: 620px;
}

.newsletter-content h2 {
    margin: 18px 0 20px;
}

.newsletter-form {
    display: flex;
    gap: 14px;
    min-width: 420px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 22px;
    border-radius: 100px;
}

/*=========================================================
Footer
=========================================================*/
.footer {
    background: var(--primary);
    padding-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 70px;
}

.footer-logo {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-about p {
    max-width: 380px;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 30px;
}

.footer h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer li,
.footer a {
    color: rgba(255, 255, 255, .68);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
}

.footer-social a:hover {
    background: var(--secondary);
    color: #fff;
}

.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .6);
}

.footer-links {
    display: flex;
    gap: 30px;
}

/*=========================================================
Scroll Top
=========================================================*/
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--primary);
}

/*=========================================================
Utilities
=========================================================*/
.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

/*=========================================================
Animations
=========================================================*/
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.97);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/*=========================================================
Form Focus
=========================================================*/
input:focus,
textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(210, 164, 109, .12);
}

/*=========================================================
Selection
=========================================================*/
::selection {
    background: var(--secondary);
    color: #fff;
}

/*=========================================================
Scrollbar
=========================================================*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/*=========================================================
Accessibility
=========================================================*/
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/*=========================================================
Responsive
=========================================================*/
@media (max-width: 1400px) {
    :root {
        --container: 1180px;
    }

    h1 {
        font-size: 72px;
    }

    h2 {
        font-size: 52px;
    }

    .hero-grid,
    .about-grid,
    .craft-grid,
    .contact-grid {
        gap: 70px;
    }
}

@media (max-width: 1200px) {
    :root {
        --container: 1040px;
    }

    .section {
        padding: 110px 0;
    }

    .hero {
        padding-top: 140px;
        min-height: auto;
    }

    .hero-grid,
    .about-grid,
    .craft-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1,
    .hero p {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .collection-row,
    .collection-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 50px;
        margin-bottom: 90px;
    }

    .collection-content {
        max-width: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: auto;
        height: 520px;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: 100%;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        width: calc(100% - 50px);
    }

    .header {
        padding: 20px 0;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 88px;
        background: #fff;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        padding: 25px;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .btn-outline {
        display: none;
    }

    h1 {
        font-size: 58px;
    }

    h2 {
        font-size: 46px;
    }

    .hero-image img,
    .about-image img,
    .craft-image img {
        height: 560px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: auto;
        height: 380px;
    }

    .gallery-grid figure {
        height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 36px);
    }

    .section {
        padding: 90px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-grid {
        gap: 50px;
    }

    h1 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 30px;
    }

    p {
        font-size: 16px;
    }

    .hero-buttons,
    .newsletter-form,
    .footer-links {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .intro {
        padding: 90px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro h2 {
        font-size: 36px;
    }

    .about-features {
        margin-top: 25px;
    }

    .about-features > div,
    .contact-info > div {
        flex-direction: column;
    }

    .contact-right {
        padding: 30px;
    }

    .newsletter-box {
        padding: 40px 30px;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 30px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-image img,
    .about-image img,
    .craft-image img {
        height: 360px;
    }

    .collection-image img {
        height: 300px;
    }

    .gallery-grid figure,
    .gallery-large {
        height: 240px;
    }

    .hero-tag,
    .section-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 16px 24px;
        font-size: 14px;
    }

    .contact-info > div {
        gap: 12px;
    }

    .scroll-top {
        right: 20px;
        bottom: 20px;
        width: 48px;
        height: 48px;
    }
}

/*=========================================================
COLLECTION SHOWCASE
=========================================================*/
.section-cream {
    background: var(--background-light);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-head h2 {
    margin: 18px 0 22px;
}

.section-head p:last-child {
    max-width: 650px;
    margin: auto;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.eyebrow-dark {
    color: var(--secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 22px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card .visual {
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.feature-card .visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: 1s;
}

.feature-card:hover .visual img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 32px;
    margin-bottom: 14px;
}

.feature-card p {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-head {
        margin-bottom: 50px;
    }

    .section-head h2 {
        margin: 16px 0 18px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 18px 18px 24px;
    }

    .feature-card .visual img {
        height: 300px;
    }

    .feature-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .feature-card .visual img {
        height: 240px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .feature-card h3 {
        font-size: 26px;
    }
}


/*=========================================================
COLLECTION STORY
=========================================================*/
.collection-story {
    background: var(--background-light);
}

.collection-story .section-header {
    margin-bottom: 90px;
}

.collection-story-wrap {
    display: flex;
    flex-direction: column;
    gap: 130px;
}

.collection-story .collection-row {
    margin-bottom: 0;
}

.collection-story .collection-image img {
    height: 560px;
}

.collection-story .collection-content {
    max-width: 540px;
}

.collection-story .collection-content span {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary);
}

.collection-story .collection-content h3 {
    font-size: 46px;
    margin-bottom: 22px;
}

.collection-story .collection-content p {
    margin-bottom: 0;
    max-width: 500px;
}

@media (max-width: 1200px) {
    .collection-story-wrap {
        gap: 90px;
    }

    .collection-story .collection-image img {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .collection-story .section-header {
        margin-bottom: 55px;
    }

    .collection-story-wrap {
        gap: 70px;
    }

    .collection-story .collection-content h3 {
        font-size: 34px;
    }

    .collection-story .collection-image img {
        height: 340px;
    }
}

@media (max-width: 576px) {
    .collection-story .collection-image img {
        height: 260px;
    }

    .collection-story .collection-content h3 {
        font-size: 30px;
    }

    .collection-story .collection-content span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}