@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic:wght@400;500;600;700&family=Tinos:wght@400;700&display=swap'); *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: 'Didact Gothic', system-ui, -apple-system, sans-serif; line-height: 1.7; font-size: 1.05rem; color: #2d2d3a; background: #fffcf9; overflow-x: hidden; } a { color: inherit; text-decoration: none; } img { max-width: 100%; height: auto; display: block; } .container { width: min(1400px, 95%); margin: 0 auto; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } [hidden] { display: none !important; } .skip-link { position: absolute; top: -40px; left: 6px; background: #1a1a2e; color: white; padding: 8px 12px; text-decoration: none; border-radius: 4px; z-index: 1000; transition: top 0.2s ease; font-weight: 500; font-size: 0.9rem; } .skip-link:focus { top: 6px; outline: 2px solid #e8556d; outline-offset: 2px; } :focus-visible { outline: 2px solid #e8556d; outline-offset: 2px; border-radius: 4px; } button:focus-visible, a:focus-visible { outline: 2px solid #e8556d; outline-offset: 2px; } @media (prefers-contrast: high) { :root { --color-bg: #ffffff; --color-text: #000000; --color-primary: #0000ff; --color-secondary: #ff0000; } .header { border-bottom: 2px solid #000000; } .btn { border: 2px solid #000000; background: #ffffff; color: #000000; } .btn:hover { background: #000000; color: #ffffff; } } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } .reveal--visible { opacity: 1; transform: none; } } .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 252, 249, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0, 0, 0, 0.06); transition: box-shadow 0.3s ease, background 0.3s ease; } .header--scrolled { background: rgba(255, 252, 249, 0.96); box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06); } .header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; gap: 1rem; } .header__logo { display: flex; align-items: center; transition: opacity 0.2s ease; } .header__logo img { width: 180px; height: 40px; object-fit: contain; } .header__logo:hover { opacity: 0.7; } .header__nav li a{ font-size: 18px; font-weight: 700; } .header__nav { display: flex; align-items: center; gap: 2rem; list-style: none; } .header__nav a { font-weight: 500; font-size: 0.95rem; color: #2d2d3a; position: relative; padding: 0.25rem 0; transition: color 0.2s ease; } .header__nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #f5a623, #e8556d); border-radius: 2px; transition: width 0.3s ease; } .header__nav a:hover { color: #1a1a2e; } .header__nav a:hover::after { width: 100%; } .header__nav a:focus-visible { outline: 2px solid #e8556d; outline-offset: 4px; border-radius: 2px; } .header__actions { display: flex; align-items: center; gap: 0.75rem; } .lang-switcher { display: flex; align-items: center; background: rgba(0, 0, 0, 0.04); border-radius: 0.5rem; overflow: hidden; } .lang-switcher__link { display: block; padding: 0.5rem 0.8rem; font-size: 0.82rem; font-weight: 600; color: #4a4a5a; letter-spacing: 0.03em; transition: all 0.2s ease; min-height: 44px; display: flex; align-items: center; justify-content: center; } .lang-switcher__link:hover { color: #1a1a2e; } .lang-switcher__link--active { background: #1a1a2e; color: #fff; border-radius: 0.375rem; } .lang-switcher__link--active:hover { color: #fff; } .lang-switcher__link:focus-visible { outline: 2px solid #e8556d; outline-offset: 2px; } .mobile-toggle { display: none; background: none; border: none; padding: 0.75rem; cursor: pointer; border-radius: 0.375rem; transition: background 0.2s ease; min-height: 44px; min-width: 44px; } .mobile-toggle:hover { background: rgba(0, 0, 0, 0.05); } .mobile-toggle svg { width: 24px; height: 24px; color: #1a1a2e; } .mobile-toggle:focus-visible { outline: 2px solid #e8556d; outline-offset: 2px; } .mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid rgba(0, 0, 0, 0.06); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); list-style: none; padding: 0.5rem 0; } .mobile-nav--open { display: block; } .mobile-nav li { border-bottom: 1px solid rgba(0, 0, 0, 0.04); } .mobile-nav li:last-child { border-bottom: none; } .mobile-nav a { display: block; padding: 0.85rem 1.5rem; font-weight: 500; color: #2d2d3a; transition: background 0.2s ease; } .mobile-nav a:hover { background: rgba(0, 0, 0, 0.03); } .mobile-nav a:focus-visible { outline: 2px solid #e8556d; outline-offset: -2px; } main { padding-top: 4rem; } section { padding: 6rem 0; } .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); } .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; } .hero { position: relative; padding: 8rem 0 6rem; text-align: center; background: linear-gradient(160deg, #fff7ed 0%, #fde8d0 30%, #fbd5c0 60%, #f8c4b4 100%); overflow: hidden; } .hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); } .hero::before { width: 500px; height: 500px; background: rgba(245, 166, 35, 0.25); top: -10%; right: -5%; } .hero::after { width: 400px; height: 400px; background: rgba(232, 85, 109, 0.18); bottom: -15%; left: -8%; } .hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(8px); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 2rem; padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 600; color: #4a3a2a; margin-bottom: 1.5rem; } .hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #38c172; animation: pulse-dot 2s ease-in-out infinite; } @keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } } .hero h1 { font-family: 'Tinos', serif; font-size: clamp(2.8rem, 6.5vw, 4.5rem); font-weight: 400; color: #1a1a2e; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.02em; } .hero__subtitle { font-size: clamp(1.1rem, 2.5vw, 1.35rem); color: #4a3a3a; max-width: 52ch; margin: 0 auto 2.5rem; line-height: 1.7; } .btn { display: inline-flex; align-items: center; gap: 0.6rem; background: linear-gradient(135deg, #e8556d, #f5a623); color: #fff; font-weight: 600; padding: 1rem 2.1rem; border-radius: 0.65rem; border: none; font-size: 1rem; cursor: pointer; box-shadow: 0 4px 15px rgba(232, 85, 109, 0.3); transition: transform 0.25s ease, box-shadow 0.25s ease; position: relative; z-index: 1; min-height: 48px; } .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232, 85, 109, 0.4); } .btn:active { transform: translateY(0); } .btn:focus-visible { outline: 3px solid #1a1a2e; outline-offset: 3px; } .btn__arrow { transition: transform 0.25s ease; font-size: 1.2rem; } .btn:hover .btn__arrow { transform: translateX(4px); } .section-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; } .section-header--left { text-align: left; margin: 0 0 1.5rem; } .section-header__tag { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #d6384b; margin-bottom: 0.75rem; } .section-header h2 { font-family: 'Tinos', serif; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400; color: #1a1a2e; line-height: 1.2; margin-bottom: 0.75rem; } .section-header p { color: #4a4a5a; font-size: 1.15rem; } .about { background: #fffcf9; } .about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .about__text p { margin-bottom: 1.25rem; color: #3a3a4a; font-size: 1.1rem; } .about__text strong { color: #1a1a2e; } .about__image-wrapper { position: relative; border-radius: 1rem; overflow: hidden; } .about__image-wrapper::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(232, 85, 109, 0.08)); pointer-events: none; } .about__image-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 1rem; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); } .about__image-wrapper:hover img { transform: scale(1.03); } .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; } .stats__item { text-align: center; padding: 1.5rem 1rem; background: #fff; border-radius: 1rem; border: 1px solid rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .stats__item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); } .stats__number { font-family: 'Tinos', serif; font-size: 2.2rem; color: #1a1a2e; line-height: 1.1; } .stats__label { font-size: 0.9rem; color: #4a4a5a; margin-top: 0.3rem; } .products { background: linear-gradient(180deg, #fef9f4 0%, #fffcf9 100%); } .products__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } .card { background: #fff; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 1rem; padding: 2rem; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; } .card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #f5a623, #e8556d); opacity: 0; transition: opacity 0.3s ease; } .card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); } .card:hover::before { opacity: 1; } .card__icon { width: 48px; height: 48px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.4rem; } .card__icon--slabs { background: #fef3e2; color: #944800; } .card__icon--tiles { background: #fce8eb; color: #a32639; } .card__icon--selections { background: #e8f5e9; color: #2e7d32; } .card h3 { font-family: 'Tinos', serif; font-size: 1.3rem; font-weight: 400; color: #1a1a2e; margin-bottom: 0.5rem; } .card > p { color: #4a4a5a; font-size: 1.05rem; margin-bottom: 1rem; } .card ul { list-style: none; padding: 0; } .card li { padding: 0.4rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.04); font-size: 1.05rem; color: #3a3a4a; } .card li:last-child { border-bottom: none; } .card li strong { color: #1a1a2e; } .gallery { background: #1a1a2e; color: #fff; } .gallery .section-header__tag { color: #f5a623; } .gallery .section-header h2 { color: #fff; } .gallery .section-header p { color: #b3b3c5; } .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; } .gallery-item { position: relative; border-radius: 0.75rem; overflow: hidden; cursor: pointer; background: #2a2a42; aspect-ratio: 4 / 3; min-height: 120px; } .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease; } .gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 26, 46, 0.5) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; } .gallery-item__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2; } .gallery-item__overlay svg { width: 24px; height: 24px; color: #fff; } .gallery-item:hover img { transform: scale(1.08); } .gallery-item:hover::after { opacity: 1; } .gallery-item:hover .gallery-item__overlay { transform: translateY(0); } .gallery-item:focus-visible { outline: 3px solid #f5a623; outline-offset: 3px; } .lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0, 0, 0, 0.94); display: none; align-items: center; justify-content: center; padding: 1rem; } .lightbox[aria-hidden="false"] { display: flex; } .lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; animation: lightbox-in 0.3s cubic-bezier(0.16, 1, 0.3, 1); } @keyframes lightbox-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } .lightbox img { width: 100%; height: auto; max-height: 85vh; object-fit: contain; border-radius: 0.5rem; } .lightbox-close { position: absolute; top: -3rem; right: 0; background: none; border: none; color: #fff; font-size: 1.75rem; cursor: pointer; padding: 0.5rem; opacity: 0.7; transition: opacity 0.2s ease; } .lightbox-close:hover { opacity: 1; } .lightbox-close:focus-visible { outline: 2px solid #f5a623; outline-offset: 4px; } .lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.15); color: #fff; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; transition: background 0.2s ease; } .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, 0.25); } .lightbox-prev:focus-visible, .lightbox-next:focus-visible { outline: 2px solid #f5a623; outline-offset: 3px; } .lightbox-prev { left: -4.5rem; } .lightbox-next { right: -4.5rem; } .lightbox-caption { position: absolute; bottom: -2.5rem; left: 0; right: 0; text-align: center; color: #a3a3b5; font-size: 0.95rem; } .lightbox-counter { position: absolute; top: -3rem; left: 0; color: #6b6b80; font-size: 0.85rem; font-weight: 600; } .cta-banner { position: relative; padding: 5rem 0; background: linear-gradient(135deg, #fde8d0 0%, #fbd5c0 40%, #f8c4b4 100%); text-align: center; overflow: hidden; } .cta-banner::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245, 166, 35, 0.2), transparent 70%); top: -30%; right: -10%; border-radius: 50%; pointer-events: none; } .cta-banner h2 { font-family: 'Tinos', serif; font-size: clamp(2rem, 4.5vw, 3rem); color: #1a1a2e; margin-bottom: 1rem; } .cta-banner p { color: #4a3a3a; max-width: 50ch; margin: 0 auto 2rem; font-size: 1.15rem; } .contact { background: #fffcf9; } .contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; } .contact__info-card { background: #fff; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 1rem; padding: 2.5rem; } .contact__detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; } .contact__detail:last-child { margin-bottom: 0; } .contact__detail-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 0.5rem; background: #fef3e2; display: flex; align-items: center; justify-content: center; color: #944800; font-size: 1.1rem; } .contact__detail-text { flex: 1; } .contact__detail-text span { display: block; font-size: 0.82rem; color: #4a4a5a; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; } .contact__detail-text p { color: #3a3a4a; margin: 0; } .contact__detail-text strong { color: #1a1a2e; } .contact__detail-text a { color: #c5384b; font-weight: 600; transition: color 0.2s ease; } .contact__detail-text a:hover { color: #c5384b; } .contact__detail-text a:focus-visible { outline: 2px solid #e8556d; outline-offset: 2px; } .map { width: 100%; height: 100%; min-height: 320px; border: none; border-radius: 1rem; background: #e2e8f0; } :root { --font-body: 'Didact Gothic', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; --font-heading: 'Tinos', Georgia, serif; --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Consolas, 'Liberation Mono', Menlo, monospace; } .footer { background: #1a1a2e; color: #8a8a9a; padding: 2.5rem 0; text-align: center; font-size: 0.9rem; } .footer__content { display: grid; grid-template-columns: 1fr auto auto 1fr; gap: 2rem; align-items: start; text-align: left; } .footer__section:first-child { text-align: left; } .footer__heading { font-family: 'Tinos', serif; font-size: 1.2rem; font-weight: 400; color: #fff; margin-bottom: 1rem; } .footer__links { list-style: none; padding: 0; margin: 0; } .footer__links li { margin-bottom: 0.5rem; } .footer__link { color: #b3b3c5; transition: color 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; padding: 0.25rem 0; border-radius: 0.25rem; } .footer__link:hover { color: #fff; } .footer__link:focus-visible { outline: 2px solid #f5a623; outline-offset: 2px; } .footer__link-icon { font-size: 0.9em; transition: transform 0.2s ease; } .footer__link:hover .footer__link-icon { transform: scale(1.1); } .footer__copyright { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #2d2d3e; text-align: center; color: #8a8a9a; } .footer__section--espa { display: flex; align-items: center; justify-content: center; } .footer__logo-link { display: inline-block; margin-bottom: 1.5rem; transition: transform 0.2s ease, opacity 0.2s ease; } .footer__logo-link:hover { transform: scale(1.05); opacity: 0.9; } .footer__logo-link:focus-visible { outline: 2px solid #f5a623; outline-offset: 2px; } .footer__logo { display: block; width: 350px; max-width: 100%; height: auto; } .footer__espa-link { display: block; transition: transform 0.2s ease, opacity 0.2s ease; border-radius: 0.5rem; overflow: hidden; } .footer__espa-link:hover { transform: scale(1.05); opacity: 0.9; } .footer__espa-link:focus-visible { outline: 2px solid #f5a623; outline-offset: 2px; } .footer__espa-link img { display: block; width: 100%; max-width: 100%; height: auto; object-fit: contain; } :focus-visible { outline: 2px solid #e8556d; outline-offset: 3px; } :focus:not(:focus-visible) { outline: none; } @media (min-width: 769px) and (max-width: 1024px) { .about__grid { gap: 2.5rem; } .stats { gap: 1rem; } } @media (max-width: 768px) { .header__nav { display: none; } .mobile-toggle { display: block; } .about__grid { grid-template-columns: 1fr; gap: 2rem; } .contact__grid { grid-template-columns: 1fr; } .stats { grid-template-columns: 1fr; gap: 1rem; } section { padding: 4rem 0; } .hero { padding: 6rem 0 4rem; } .lightbox-prev { left: 0.5rem; } .lightbox-next { right: 0.5rem; } .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); } .products__grid { grid-template-columns: 1fr; } .footer__content { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; } .footer__section:first-child { text-align: center; } .footer__heading { text-align: center; } .footer__section--espa { order: -1; } } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; } }