@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
    --bg: #f8f4ed;
    --bg-alt: #f0ebe0;
    --text: #2c1810;
    --text-light: #7a6e63;
    --accent: #8B4513;
    --accent-hover: #6d3410;
    --accent-light: #c49a6c;
    --border: #ddd5c8;
    --white: #ffffff;
    --card-bg: #ffffff;
    --heading: 'Playfair Display', Georgia, serif;
    --body: 'Inter', -apple-system, sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 0.6em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.5em;
}

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

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

button {
    cursor: pointer;
    font-family: var(--body);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 244, 237, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand a {
    font-family: var(--heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-links a.active {
    color: var(--accent);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 11px 28px;
    border: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 11px 28px;
    border: 1.5px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    border-radius: 2px;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 80px;
    min-height: 70vh;
}

.hero-subtitle {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 480px;
}

.hero blockquote {
    font-family: var(--heading);
    font-style: italic;
    color: var(--text-light);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 24px 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-est {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    border-top: 2px solid var(--accent);
    display: inline-block;
    padding-top: 8px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
    border-radius: var(--radius);
    transition: transform 0.6s ease;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* Hero Overlay variant — text on top of image */
.hero-overlay {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 60px;
}

.hero-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s ease;
    display: block;
}

.hero-overlay:hover .hero-overlay-bg {
    transform: scale(1.03);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to top, rgba(30, 15, 5, 0.88) 0%, rgba(30, 15, 5, 0.55) 40%, rgba(30, 15, 5, 0.15) 70%, transparent 100%);
    pointer-events: none;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    max-width: 680px;
    width: 100%;
}

.hero-overlay-content .hero-subtitle {
    color: var(--accent-light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-overlay-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-overlay-content h1 em {
    color: var(--accent-light);
    font-style: italic;
}

.hero-overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 520px;
}

.hero-overlay-content .hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* ============ SECTION ============ */
.section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 0;
}

.section-header a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ CARDS ============ */
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.card-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.card-title {
    font-family: var(--heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-price {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: auto;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.card-detail-btn {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    transition: var(--transition);
}

.card-detail-btn:hover {
    background: var(--accent-hover);
}

.card-fav {
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 4px;
}

.card-fav:hover {
    color: #e74c3c;
    transform: scale(1.2);
}

/* ============ GRID LAYOUTS ============ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

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

/* ============ CONTACT / ABOUT SECTION ============ */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.contact-form-wrap {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 4px;
    font-family: var(--body);
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.1rem;
}

.info-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 4px;
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.map-placeholder {
    height: 220px;
    background: #e8e1d5;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23d0c8bb' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='%23e8e1d5'/%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
    background-size: cover;
}

.map-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--white);
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ============ PHILOSOPHY SECTION ============ */
.philosophy-section {
    background: var(--text);
    color: var(--bg);
    border-radius: var(--radius);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.philosophy-section h2 {
    color: var(--bg);
    font-size: 2.2rem;
}

.philosophy-section p {
    color: #c4b8a8;
    line-height: 1.8;
}

.philosophy-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.philosophy-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 154, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.philosophy-item h4 {
    color: var(--accent-light);
    font-size: 1rem;
    margin-bottom: 4px;
}

.philosophy-item p {
    font-size: 0.85rem;
    color: #a89888;
}

/* ============ NEWSLETTER / CTA ============ */
.cta-section {
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    padding: 50px 60px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 28px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--body);
    font-size: 0.9rem;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-form button {
    background: var(--white);
    color: var(--accent);
    padding: 14px 28px;
    border: none;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-form button:hover {
    background: var(--bg);
}

/* ============ COLLECTIONS PAGE ============ */
.page-header {
    padding: 30px 0 40px;
}

.page-header .breadcrumb {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.page-header .breadcrumb a {
    color: var(--text-light);
}

.page-header .breadcrumb a:hover {
    color: var(--accent);
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    max-width: 550px;
    font-size: 0.92rem;
}

.collections-layout {
    display: flex;
    gap: 36px;
    padding-bottom: 80px;
    align-items: flex-start;
}

.collections-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: start;
}

.filter-box {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: sticky;
    top: 90px;
}

.filter-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h5 {
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 12px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.88rem;
}

.filter-check input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.filter-tag {
    display: inline-block;
    background: var(--bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    margin: 0 6px 8px 0;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.price-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 8px;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
}

.collections-grid {
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
    align-items: center;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination .active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============ DETAIL PAGE ============ */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 20px 0 80px;
    align-items: start;
}

.detail-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.detail-breadcrumb {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-breadcrumb a {
    color: var(--text-light);
}

.detail-breadcrumb a:hover {
    color: var(--accent);
}

.detail-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 8px;
}

.detail-artist {
    font-family: var(--heading);
    font-style: italic;
    color: var(--accent);
    font-size: 1.15rem;
    margin-bottom: 28px;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}

.spec-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-price {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.detail-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1fb855;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.detail-secondary-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.detail-description {
    margin-top: 32px;
}

.detail-description h4 {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.detail-description p {
    color: var(--text-light);
    line-height: 1.9;
}

/* ============ FOOTER ============ */
footer {
    background: #e8e1d5;
    padding: 60px 0 24px;
    margin-top: 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--heading);
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.footer-links h4 {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #d0c8bb;
    font-size: 0.82rem;
    color: var(--text-light);
}

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

.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 60px;
    }

    .hero-image img {
        min-height: 320px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .philosophy-section {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
        box-shadow: var(--shadow);
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .collections-layout {
        flex-direction: column;
    }

    .collections-sidebar {
        width: 100%;
        position: static;
    }

    .filter-box {
        position: static;
    }

    .detail-specs {
        grid-template-columns: 1fr 1fr;
    }

    .cta-section {
        padding: 40px 24px;
    }

    .cta-form {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .philosophy-section {
        padding: 30px 20px;
    }

    .section {
        padding: 50px 0;
    }

    .detail-secondary-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .card-img {
        height: 220px;
    }
}

/* ============ HUBUNGI KAMI PAGE ============ */
.contact-story-section {
    padding: 60px 0 80px;
}

.contact-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-subtitle {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    font-weight: 600;
}

.story-title {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--text);
    line-height: 1.15;
}

.story-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.story-quote {
    font-family: var(--heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text);
    border-left: 2px solid var(--accent-light);
    padding-left: 20px;
    line-height: 1.65;
    margin: 12px 0;
}

.story-est {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.est-line {
    width: 32px;
    height: 1px;
    background-color: var(--accent-light);
}

.est-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
}

.story-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.story-image-wrap:hover .story-img {
    transform: scale(1.02);
}

.contact-info-section {
    background-color: var(--bg-alt);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-icon-container {
    width: 56px;
    height: 56px;
    background-color: #fceee3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c86b2d;
    font-size: 1.5rem;
}

.contact-service-card h3 {
    font-family: var(--heading);
    font-size: 1.6rem;
    color: var(--text);
    line-height: 1.3;
}

.contact-service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

.btn-consultation {
    background-color: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
    margin-top: 12px;
}

.btn-consultation:hover {
    background-color: var(--accent-hover);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.contact-details-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-details-col h2 {
    font-family: var(--heading);
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: -10px;
}

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

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-item-icon {
    width: 48px;
    height: 48px;
    background-color: #fceee3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c86b2d;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item-label {
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c86b2d;
}

.contact-info-item-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 260px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.5) contrast(1.1) sepia(0.1);
}

.contact-map-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: var(--white);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: var(--shadow);
    color: var(--text);
    z-index: 5;
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .contact-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-story-section {
        padding: 40px 0 50px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-service-card {
        padding: 32px;
    }
}