/* ============================================
   WALT BARTEEE COINS & BULLION
   Bold Editorial — Forest Green & Off-White
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-deep: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #40916C;
    --green-pale: #52B788;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8E0D0;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #5A5A5A;
    --white: #FFFFFF;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
}

em {
    font-style: italic;
    font-weight: 400;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    transition: color 0.4s ease;
}

.nav.scrolled .nav-logo {
    color: var(--green-deep);
}

.nav-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.nav-logo-text {
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--white);
}

.nav.scrolled .nav-link {
    color: var(--text-light);
}

.nav.scrolled .nav-link:hover {
    color: var(--green-deep);
}

.nav-link--cta {
    padding: 10px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-link--cta:hover {
    background: var(--white);
    color: var(--green-deep) !important;
    border-color: var(--white);
}

.nav.scrolled .nav-link--cta {
    border-color: var(--green-deep);
    color: var(--green-deep);
}

.nav.scrolled .nav-link--cta:hover {
    background: var(--green-deep);
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav.scrolled .nav-toggle-line {
    background: var(--green-deep);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--cream);
    padding: 12px 0;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--green-pale);
}

.mobile-menu-cta {
    margin-top: 16px;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-pale) !important;
}

.mobile-menu-contact {
    margin-top: 40px;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.875rem;
    line-height: 2;
}

.mobile-menu-contact a {
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s ease;
}

.mobile-menu-contact a:hover {
    color: var(--cream);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-deep);
    color: var(--cream);
    border-color: var(--green-deep);
}

.btn--primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: var(--white);
    color: var(--green-deep);
    border-color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--green-deep);
}

.btn--outline:hover {
    background: var(--green-deep);
    color: var(--cream);
}

.btn--light {
    background: var(--white);
    color: var(--green-deep);
    border-color: var(--white);
}

.btn--light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #0D1F15 0%,
        #1B4332 25%,
        #2D6A4F 50%,
        #1B4332 75%,
        #0D1F15 100%
    );
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-pale);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-headline em {
    color: var(--green-pale);
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-trust-sep {
    color: rgba(82, 183, 136, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
    opacity: 0;
}

.hero-scroll svg {
    animation: bounce 2s infinite;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* --- Section Shared --- */
.section-header {
    margin-bottom: 64px;
}

.section-header--centered {
    text-align: center;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* --- Services --- */
.services {
    padding: 120px 0;
    background: var(--cream);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 44px 36px;
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-deep), var(--green-pale));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.1);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    color: var(--cream);
    margin-bottom: 24px;
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream-light);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 16px;
    width: 100%;
    height: 470px;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(27, 67, 50, 0.15);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    z-index: -1;
    opacity: 0.15;
}

.about-content {
    max-width: 480px;
}

.about-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 28px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    gap: 32px;
    margin: 36px 0 40px;
    padding: 28px 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.about-value {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-value-number {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1;
}

.about-value-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-content .btn {
    margin-top: 8px;
}

/* --- Collection --- */
.collection {
    padding: 120px 0;
    background: var(--cream);
}

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

.collection-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.collection-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.collection-item:hover .collection-img {
    transform: scale(1.05);
}

.collection-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    background: linear-gradient(to top, rgba(13, 31, 21, 0.9) 0%, transparent 100%);
    color: var(--cream);
    transform: translateY(8px);
    opacity: 0.9;
    transition: all 0.4s var(--ease-out);
}

.collection-item:hover .collection-item-content {
    transform: translateY(0);
    opacity: 1;
}

.collection-item-title {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 6px;
}

.collection-item-content p {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.5;
}

/* --- Quote --- */
.quote-section {
    padding: 100px 0;
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 40px 40px;
}

.quote-wrapper {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    color: var(--cream);
    margin-bottom: 24px;
}

.quote-text {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 28px;
}

.quote-attribution {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-pale);
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--cream-light);
}

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

.contact-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--green-deep);
    color: var(--cream);
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-detail-text a,
.contact-detail-text span {
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.contact-detail-text a:hover {
    color: var(--green-mid);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 44px;
    border: 1px solid rgba(27, 67, 50, 0.06);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.06);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--charcoal);
}

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream-light);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--green-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-input::placeholder {
    color: var(--cream-dark);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.06), rgba(82, 183, 136, 0.08));
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--green-deep);
    font-weight: 500;
}

.form-success.show {
    display: flex;
}

/* --- Location Banner --- */
.location-banner {
    padding: 60px 0;
    background: var(--cream-dark);
}

.location-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.location-banner-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 8px;
}

.location-banner-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--charcoal);
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    padding: 64px 0 0;
    color: rgba(245, 240, 232, 0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(245, 240, 232, 0.3);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--green-pale);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--green-pale);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.35);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image {
        height: 400px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 80px;
    }
    
    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services,
    .about,
    .collection,
    .contact {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .service-card {
        padding: 32px 28px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-img {
        height: 240px;
    }
    
    .about-values {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .location-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 90px 16px 70px;
    }
    
    .hero-trust {
        font-size: 0.7rem;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
}
