{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}

body {
font-family: 'Montserrat', sans-serif;
background: #faf9f7;
color: #1c1c1c;
line-height: 1.7;
}

a {
text-decoration: none;
color: inherit;
}

img {
max-width: 100%;
display: block;
}

/* =========================
NAVBAR
========================= */

.navbar {
width: 100%;
height: 82px;
padding: 0 7%;
display: flex;
align-items: center;
justify-content: space-between;

background: rgba(255, 255, 255, 0.97);

position: fixed;
top: 0;
left: 0;
z-index: 1000;

border-bottom: 1px solid rgba(0, 0, 0, 0.08);

}

.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 32px;
font-weight: 700;
letter-spacing: 6px;
color: #191919;
}

.desktop-nav {
display: flex;
align-items: center;
gap: 38px;
}

.desktop-nav a {
font-size: 12px;
font-weight: 500;
letter-spacing: 1.5px;
text-transform: uppercase;
transition: color 0.3s ease;
}

.desktop-nav a:hover {
color: #a8874f;
}

.nav-order {
border: 1px solid #b0925b;
padding: 11px 20px;

font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;

transition: all 0.3s ease;

}

.nav-order:hover {
background: #b0925b;
color: white;
}

/* =========================
HERO
========================= */

.hero {
min-height: 100vh;

position: relative;

display: flex;
align-items: center;
justify-content: center;

text-align: center;

background:
    linear-gradient(
        rgba(0, 0, 0, 0.38),
        rgba(0, 0, 0, 0.48)
    ),
    url("images/hero.jpg");

background-size: cover;
background-position: center;

}

.hero-overlay {
position: absolute;
inset: 0;
background:
radial-gradient(
circle at center,
transparent 0%,
rgba(0, 0, 0, 0.25) 100%
);
}

.hero-content {
position: relative;
z-index: 2;
color: white;

max-width: 800px;
padding: 40px 25px;

}

.hero-small {
font-size: 12px;
letter-spacing: 6px;
margin-bottom: 20px;
font-weight: 500;
}

.hero h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(55px, 8vw, 100px);
line-height: 0.95;
font-weight: 600;
}

.hero h1 span {
color: #d7b979;
font-style: italic;
}

.hero-description {
max-width: 570px;
margin: 30px auto;
font-size: 15px;
font-weight: 300;
letter-spacing: 0.5px;
}

.btn {
display: inline-block;

padding: 15px 34px;

background: #b0925b;
color: white;

font-size: 11px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;

transition: all 0.3s ease;

}

.btn:hover {
background: white;
color: #222;
}

/* =========================
SECTION HEADING
========================= */

.section-heading {
text-align: center;
max-width: 700px;
margin: 0 auto 60px;
}

.section-small {
color: #a8874f;
font-size: 11px;
font-weight: 600;
letter-spacing: 4px;
margin-bottom: 10px;
}

.section-heading h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(40px, 5vw, 62px);
font-weight: 600;
line-height: 1.1;
}

.section-heading > p:last-child {
color: #777;
font-size: 14px;
font-weight: 300;
margin-top: 20px;
}

.gold-line {
width: 55px;
height: 1px;
background: #b0925b;
margin: 22px auto;
}

/* =========================
PRODUCTS
========================= */

.products-section {
padding: 120px 7%;
background: #faf9f7;
}

.product-grid {
max-width: 1100px;
margin: auto;

display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 45px;

}

.product-card {
background: white;

border: 1px solid #eee;

overflow: hidden;

transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

}

.product-card:hover {
transform: translateY(-7px);

box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.09);

}

.product-image {
width: 100%;
height: 460px;
background: #f1efeb;

display: flex;
align-items: center;
justify-content: center;

overflow: hidden;

}

.product-image img {
width: 100%;
height: 100%;

object-fit: cover;

transition: transform 0.6s ease;

}

.product-card:hover .product-image img {
transform: scale(1.04);
}

.product-info {
padding: 30px;
text-align: center;
}

.product-size {
color: #a8874f;

font-size: 10px;
letter-spacing: 3px;
font-weight: 600;

}

.product-card h3 {
font-family: 'Cormorant Garamond', serif;

font-size: 32px;
font-weight: 600;

margin-top: 6px;

}

.volume {
display: inline-block;

color: #777;

font-size: 12px;
letter-spacing: 2px;

margin-top: 3px;

}

.notes {
color: #777;

font-size: 12px;
font-weight: 300;

line-height: 1.9;

margin: 20px 0;

}

.notes strong {
color: #333;
font-weight: 500;
}

.price {
display: block;

color: #a8874f;

font-size: 12px;
font-weight: 600;

margin-bottom: 20px;

}

/* =========================
WHATSAPP PRODUCT BUTTON
========================= */

.whatsapp-btn {
width: 100%;

display: flex;
align-items: center;
justify-content: center;
gap: 10px;

padding: 15px 20px;

background: #25D366;
color: white;

border: none;

font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.4px;

cursor: pointer;

transition:
    background 0.3s ease,
    transform 0.2s ease;

}

.whatsapp-btn:hover {
background: #1ebe5d;
transform: translateY(-2px);
}

.whatsapp-btn svg {
flex-shrink: 0;
}

/* =========================
ABOUT
========================= */

.about-section {
padding: 130px 7%;

background:
    linear-gradient(
        135deg,
        #20201e,
        #11110f
    );

color: white;

}

.about-container {
max-width: 1000px;
margin: auto;
}

.about-heading {
margin-bottom: 55px;
}

.about-heading h2 {
color: white;
}

.about-content {
max-width: 900px;
margin: auto;
}

.about-content > p {
color: #d2d2d2;
font-size: 14px;
font-weight: 300;
line-height: 2;
margin-bottom: 22px;
}

.about-intro {
font-family: 'Cormorant Garamond', serif;

font-size: 25px !important;
line-height: 1.55 !important;

color: #eee !important;

}

.about-points {
margin: 45px 0;
}

.about-point {
display: grid;
grid-template-columns: 70px 1fr;

gap: 25px;

padding: 30px 0;

border-top: 1px solid rgba(255, 255, 255, 0.13);

}

.about-point:last-child {
border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.point-number {
font-family: 'Cormorant Garamond', serif;

font-size: 30px;

color: #c8a96b;

}

.about-point h3 {
font-family: 'Cormorant Garamond', serif;

font-size: 28px;
font-weight: 600;

margin-bottom: 8px;

}

.about-point p {
color: #bdbdbd;

font-size: 13px;
font-weight: 300;

line-height: 1.9;

}

.about-highlight {
text-align: center;

font-family: 'Cormorant Garamond', serif;

font-size: 32px !important;

color: #d6bd89 !important;

margin: 60px 0 !important;

}

.about-world {
text-align: center;

margin-top: 80px;

}

.about-world h2 {
font-family: 'Cormorant Garamond', serif;

font-size: 42px;
font-weight: 600;

color: white;

margin-bottom: 15px;

}

.about-world > p {
color: #bdbdbd;

font-size: 14px;
font-weight: 300;

max-width: 700px;
margin: auto;

}

.world-points {
max-width: 700px;

margin: 40px auto 0;

display: grid;
grid-template-columns: repeat(2, 1fr);

gap: 30px;

text-align: left;

}

.world-points > div {
padding: 25px;

border: 1px solid rgba(255, 255, 255, 0.1);

}

.world-points span {
color: #c8a96b;
font-size: 20px;
}

.world-points p {
color: #bdbdbd;

font-size: 13px;
font-weight: 300;

margin-top: 10px;

}

.world-points strong {
color: white;
}

.about-final {
text-align: center;

margin-top: 75px;
padding-top: 45px;

border-top: 1px solid rgba(255, 255, 255, 0.12);

}

.about-final h2 {
font-family: 'Cormorant Garamond', serif;

font-size: 36px;
color: #d6bd89;

}

.about-final p {
margin-top: 10px;

color: #aaa;

font-size: 13px;

}

/* =========================
CONTACT
========================= */

.contact-section {
padding: 120px 7%;

background: #f5f2ed;

}

.contact-container {
max-width: 800px;
margin: auto;
}

.contact-card {
max-width: 600px;

margin: auto;

padding: 55px 35px;

text-align: center;

background: white;

border: 1px solid #e8e3db;

box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.05);

}

.contact-icon {
width: 75px;
height: 75px;

margin: 0 auto 20px;

display: flex;
align-items: center;
justify-content: center;

border-radius: 50%;

background: #25D366;
color: white;

}

.contact-label {
color: #a8874f;

font-size: 10px;
font-weight: 600;
letter-spacing: 4px;

}

.contact-card h3 {
font-family: 'Cormorant Garamond', serif;

font-size: 38px;

margin: 5px 0 10px;

}

.contact-card > p {
color: #777;

font-size: 13px;
font-weight: 300;

max-width: 450px;

margin: 0 auto 25px;

}

.contact-whatsapp {
display: inline-block;

background: #25D366;
color: white;

padding: 14px 28px;

font-size: 11px;
font-weight: 600;
letter-spacing: 1px;

transition: background 0.3s ease;

}

.contact-whatsapp:hover {
background: #1ebe5d;
}

/* =========================
FOOTER
========================= */

footer {
padding: 55px 20px;

background: #11110f;

text-align: center;

color: #aaa;

}

.footer-logo {
font-family: 'Cormorant Garamond', serif;

color: white;

font-size: 32px;
font-weight: 700;

letter-spacing: 6px;

}

footer > p {
font-size: 12px;

margin-top: 8px;

color: #999;

}

.footer-line {
width: 40px;
height: 1px;

background: #b0925b;

margin: 25px auto;

}

footer .copyright {
font-size: 10px;

color: #666;

margin-top: 0;

}

/* =========================
FLOATING WHATSAPP
========================= */

.float-whatsapp {
position: fixed;

right: 25px;
bottom: 25px;

width: 62px;
height: 62px;

display: flex;
align-items: center;
justify-content: center;

background: #25D366;

border-radius: 50%;

z-index: 999;

box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.2);

transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

}

.float-whatsapp:hover {
transform: scale(1.08);

box-shadow:
    0 12px 35px rgba(37, 211, 102, 0.35);

}

/* =========================
RESPONSIVE - TABLET
========================= */

@media (max-width: 850px) {

.navbar {
    padding: 0 5%;
}

.desktop-nav {
    gap: 18px;
}

.desktop-nav a {
    font-size: 10px;
}

.product-grid {
    gap: 25px;
}

.product-image {
    height: 380px;
}

}

/* =========================
RESPONSIVE - MOBILE
========================= */

@media (max-width: 650px) {

.navbar {
    height: 70px;
    padding: 0 20px;
}

.logo {
    font-size: 25px;
    letter-spacing: 4px;
}

.desktop-nav {
    display: none;
}

.nav-order {
    padding: 9px 12px;
    font-size: 9px;
}


/* HERO */

.hero {
    min-height: 90vh;
}

.hero-content {
    padding: 30px 20px;
}

.hero-small {
    font-size: 9px;
    letter-spacing: 4px;
}

.hero h1 {
    font-size: 55px;
}

.hero-description {
    font-size: 13px;
}


/* PRODUCTS */

.products-section {
    padding: 80px 20px;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 44px;
}

.product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.product-image {
    height: 380px;
}

.product-info {
    padding: 25px 20px;
}

.product-card h3 {
    font-size: 29px;
}


/* ABOUT */

.about-section {
    padding: 85px 20px;
}

.about-intro {
    font-size: 22px !important;
}

.about-point {
    grid-template-columns: 45px 1fr;
    gap: 15px;
}

.point-number {
    font-size: 25px;
}

.about-point h3 {
    font-size: 24px;
}

.about-world h2 {
    font-size: 35px;
}

.world-points {
    grid-template-columns: 1fr;
}

.about-final h2 {
    font-size: 30px;
}


/* CONTACT */

.contact-section {
    padding: 85px 20px;
}

.contact-card {
    padding: 40px 20px;
}

.contact-card h3 {
    font-size: 31px;
}


/* FLOATING BUTTON */

.float-whatsapp {
    width: 55px;
    height: 55px;

    right: 18px;
    bottom: 18px;
}

}
.navbar {
    box-sizing: border-box;
    width: 100%;
    padding-right: 30px;
}

.nav-order {
    flex-shrink: 0;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .navbar {
        padding-right: 20px;
        padding-left: 20px;
    }

    .nav-order {
        font-size: 11px;
        padding: 10px 14px;
    }
}
.navbar {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    left: 0;
    right: 0;
}

.nav-order {
    position: relative;
    right: auto;
    margin-left: auto;
    margin-right: 0;
    transform: none;
    flex-shrink: 1;
    max-width: 180px;
    box-sizing: border-box;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-order {
        max-width: 130px;
        padding: 9px 12px;
        font-size: 10px;
    }
}
.hero-small {
    font-size: 50px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    font-weight: 500;

    transform: translateY(1px);
}
@media (max-width: 650px) {

    .hero-small {
        transform: translateY(14px);
    }

}
.hero-small {
    font-family: 'Open Sans', serif;
    font-size: 50px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    font-weight: 700;

    transform: translateY(18px);
}
