/* ─── INNER PAGES — grillz, orologi, contatti ── */

/* Hero inner pages */
.hero {
    height: 65vh;
    min-height: 400px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: attr(data-label);
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 18rem;
    font-weight: 900;
    color: rgba(212,175,55,0.04);
    letter-spacing: 20px;
    pointer-events: none;
    white-space: nowrap;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.hero .tagline {
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Showcase (Grillz / Orologi) ──────────────── */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.showcase-image {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

/* Placeholder for showcase */
.showcase-image.placeholder {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image.placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 75%;
    border: 2px solid rgba(212,175,55,0.2);
    transform: translate(-50%, -50%);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.showcase-image.placeholder svg {
    width: 120px;
    height: 120px;
    fill: none;
    stroke: rgba(212,175,55,0.2);
    stroke-width: 1;
    position: relative;
    z-index: 1;
}

.showcase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.price {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* ─── Features (4-col black) ────────────────── */
#features {
    background: var(--black);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(212,175,55,0.04);
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--black);
    stroke-width: 2;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

/* ─── Materials ──────────────────────────────── */
#materials {
    background: var(--cream);
}

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

.material-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--gray-light);
    transition: all 0.4s ease;
}

.material-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.material-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.material-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.material-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.material-specs {
    list-style: none;
    border-top: 1px solid var(--gray-light);
    padding-top: 1.5rem;
}

.material-specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.spec-label { color: var(--gray); font-weight: 500; }
.spec-value { color: var(--black); font-weight: 600; }

/* ─── Process Timeline ────────────────────────── */
#process {
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: center;
}

.step-left { text-align: right; }
.step-right { text-align: left; }

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-bubble {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
}

.step-content {
    padding: 2rem;
    background: var(--cream);
    border: 1px solid var(--gray-light);
    transition: border-color 0.3s;
}

.step-content:hover {
    border-color: var(--gold);
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ─── Gallery Grid ────────────────────────────── */
#gallery {
    background: var(--black);
    color: var(--white);
}

#gallery .section-header h2 {
    color: var(--white);
}

#gallery .section-header p {
    color: rgba(255,255,255,0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    background: #111;
}

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

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212,175,55,0.2);
}

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

/* Placeholder gallery item */
.gallery-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.gallery-item.placeholder svg {
    width: 60px;
    height: 60px;
    fill: none;
    stroke: rgba(212,175,55,0.2);
    stroke-width: 1;
}

/* ─── Watch specific ──────────────────────────── */
.coming-soon-banner {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.waitlist-box {
    background: var(--cream);
    border: 1px solid var(--gold);
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.waitlist-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
}

.waitlist-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--gray-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    background: var(--white);
    outline: none;
    transition: border-color 0.3s;
}

.waitlist-form input:focus {
    border-color: var(--gold);
}

/* ─── Contact Page ────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 6rem;
}

.contact-form h2,
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-form > p,
.contact-info > p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--gray-light);
    background: var(--cream);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-notice {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Contact Info */
.info-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.info-block:last-of-type {
    border-bottom: none;
}

.info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.info-block .info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    color: var(--gray);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.info-block .info-item:hover {
    color: var(--gold);
}

.info-block .info-item svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    flex-shrink: 0;
}

/* Social in contact */
.social-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.social-links-big {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-big {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--gray-light);
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.social-link-big svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link-big:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.05);
}

/* FAQ */
.faq-section {
    background: var(--cream);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-align: center;
}

.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-light);
    cursor: pointer;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open h3 {
    color: var(--gold);
}

.faq-item.open h3::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-top: 1.2rem;
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ─── Toast notification ─────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    border-left: 4px solid var(--gold);
    font-size: 1rem;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.4s ease;
    max-width: 360px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #4caf50;
}

.toast.error {
    border-left-color: #f44336;
}

/* ─── Responsive inner pages ─────────────────── */
@media (max-width: 1200px) {
    .hero h1 { font-size: 3.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .hero::before { font-size: 6rem; }
    .showcase-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .materials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
    .process-step {
        grid-template-columns: 60px 1fr;
        grid-template-areas: "num content";
    }
    .step-left, .step-right {
        text-align: left;
        grid-area: content;
    }
    .step-number { grid-area: num; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .waitlist-form { flex-direction: column; }
}

/* ─── Extra Mobile Fixes ────────────────────── */
@media (max-width: 600px) {
    .hero { padding-top: 100px; min-height: 40vh; }
    .hero h1 { font-size: 2rem; letter-spacing: 4px; }
    .hero .tagline { font-size: 1rem; letter-spacing: 3px; }
    .coming-soon-banner { font-size: 0.75rem; padding: 0.5rem 1rem; }
    .showcase-grid { padding: 0; }
    .showcase-content { padding: 1.5rem 1rem; }
    .showcase-content h2 { font-size: 1.8rem; }
    .contact-form, .contact-info { padding: 1.5rem 1rem; }
    .contact-form h2, .contact-info h2 { font-size: 1.8rem; }
    .social-links-big { flex-direction: column; gap: 1rem; }
    .material-card { padding: 1.5rem; }
    .faq-content { padding: 0 1rem; }
    nav { top: 0 !important; }
    .hero[style*="padding-top:120px"] { padding-top: 100px !important; }
}

/* ─── Contact Page Redesign ──────────────────── */
.contact-main-section {
    background: var(--white);
    padding: 8rem 3rem;
}

.contact-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.contact-intro p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.9;
}

/* IG Primary CTA */
.contact-primary {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}

.contact-ig-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 4rem;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border: 2px solid rgba(212,175,55,0.5);
    text-decoration: none;
    transition: all 0.4s ease;
    max-width: 640px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-ig-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-ig-cta:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.3);
}

.contact-ig-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
}

.contact-ig-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-ig-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-ig-label {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-ig-handle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.contact-ig-action {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border: 1px solid #e5e5e5;
    border-top: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.12);
    margin-bottom: 0.5rem;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    flex: 1;
}

.contact-card-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s;
    word-break: break-all;
}

.contact-card-link:hover {
    border-color: var(--gold);
}

.contact-card-note {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

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

@media (max-width: 600px) {
    .contact-main-section { padding: 5rem 1.5rem; }
    .contact-intro h2 { font-size: 2.2rem; }
    .contact-ig-cta { padding: 1.8rem 2rem; gap: 1.5rem; }
    .contact-ig-handle { font-size: 1.2rem; }
    .contact-ig-icon { width: 52px; height: 52px; }
    .contact-cards { grid-template-columns: 1fr; }
}

/* ─── Orologi: Banner + Nav fix ──────────────── */
.coming-soon-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-with-banner {
    top: 40px !important;
}

.hero-orologi {
    padding-top: 120px;
}

@media (max-width: 600px) {
    .coming-soon-banner { font-size: 0.65rem; letter-spacing: 1.5px; height: 36px; }
    .nav-with-banner { top: 36px !important; }
    .hero-orologi { padding-top: 106px; }
}
