/* ========================================================================== TROK Mobilya — Frontend design system Apple-inspired: generous whitespace, large type, calm neutral palette, frosted navigation, restrained motion. ========================================================================== */ :root { --black: #1d1d1f; --ink: #1d1d1f; --white: #ffffff; --bg: #ffffff; --bg-alt: #f5f5f7; --bg-dark: #101012; --muted: #6e6e73; --muted-2: #86868b; --line: #d2d2d7; --line-soft: #e8e8ed; --blue: #0071e3; --blue-hover: #0077ed; --blue-link: #2997ff; --accent: #b8895a; /* warm wood tone — furniture identity */ --accent-deep: #8a5a34; --radius: 18px; --radius-lg: 28px; --radius-sm: 12px; --shadow: 0 6px 30px rgba(0, 0, 0, 0.08); --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14); --nav-h: 68px; --maxw: 1180px; --maxw-narrow: 820px; --ease: cubic-bezier(0.28, 0.11, 0.32, 1); --font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "Segoe UI", Roboto, Arial, sans-serif; } * { box-sizing: border-box; } html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; } body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.47; letter-spacing: -0.01em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 17px; } img { max-width: 100%; display: block; } a { color: var(--blue); text-decoration: none; } a:hover { text-decoration: none; } h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; } .container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; } .container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 22px; } /* ---------- Typography helpers ---------- */ .eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); } .display { font-size: clamp(40px, 6.4vw, 80px); font-weight: 600; line-height: 1.03; letter-spacing: -0.035em; } .headline { font-size: clamp(30px, 4.4vw, 52px); font-weight: 600; letter-spacing: -0.03em; } .subhead { font-size: clamp(19px, 2.2vw, 26px); font-weight: 500; color: var(--muted); letter-spacing: -0.01em; } .lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); line-height: 1.5; } .muted { color: var(--muted); } .center { text-align: center; } /* ---------- Buttons ---------- */ .btn { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; line-height: 1; padding: 12px 22px; border-radius: 980px; border: 1px solid transparent; cursor: pointer; transition: background .25s var(--ease), color .25s, transform .2s, border-color .25s; text-decoration: none; white-space: nowrap; } .btn:hover { text-decoration: none; } .btn-primary { background: var(--blue); color: #fff; } .btn-primary:hover { background: var(--blue-hover); } .btn-dark { background: var(--ink); color: #fff; } .btn-dark:hover { background: #000; } .btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); } .btn-ghost:hover { background: var(--blue); color: #fff; } .btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); } .btn-light:hover { background: #fff; color: var(--ink); } .btn-whatsapp { background: #25d366; color: #fff; } .btn-whatsapp:hover { background: #1eb658; color: #fff; } .btn-lg { padding: 15px 30px; font-size: 18px; } .tlink { display: inline-flex; align-items: center; gap: 4px; color: var(--blue); font-size: 17px; font-weight: 400; } .tlink:hover { text-decoration: none; } .tlink::after { content: "›"; font-size: 1.25em; line-height: 0; transform: translateY(1px); transition: transform .25s var(--ease); } .tlink:hover::after { transform: translate(3px, 1px); } /* ---------- Navigation ---------- */ .nav { position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 1000; background: rgba(255, 255, 255, 0.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .nav-inner { max-width: var(--maxw); margin: 0 auto; height: 100%; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; } .brand { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 19px; color: var(--ink); letter-spacing: -0.02em; } .brand:hover { text-decoration: none; } .brand .mark { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; font-size: 14px; font-weight: 700; } .brand { font-size: 21px; } .brand .mark { width: 30px; height: 30px; border-radius: 8px; font-size: 16px; } .brand img { height: 32px; width: auto; } .nav-nav { height: 100%; } .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; height: 100%; } .nav-links > li { display: flex; align-items: center; height: 100%; } .nav-links a { color: var(--ink); font-size: 15px; font-weight: 400; opacity: .88; } .nav-links a:hover { opacity: 1; text-decoration: none; color: var(--accent-deep); } .nav-cta { font-size: 15px; } .nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; } .nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: .3s; } /* ---------- Mega menu ---------- */ .has-mega { position: static; } .mega-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; } .mega-trigger .chev { font-size: 11px; opacity: .55; transition: transform .3s var(--ease); } .mega { position: absolute; left: 0; right: 0; top: var(--nav-h); z-index: 998; background: #ffffff; border-bottom: 1px solid var(--line-soft); box-shadow: 0 24px 50px rgba(0,0,0,.12); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s; } .has-mega:hover .mega, .mega:hover { opacity: 1; visibility: visible; transform: none; } .has-mega:hover .mega-trigger .chev { transform: rotate(180deg); } .mega-inner { max-width: var(--maxw); margin: 0 auto; padding: 0; display: grid; grid-template-columns: 320px 1fr; } .mega-promo { position: relative; overflow: hidden; padding: 40px 34px; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; } .mega-promo:hover { text-decoration: none; } .mega-promo-bg { position: absolute; inset: 0; z-index: 0; } .mega-promo-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); } .mega-promo:hover .mega-promo-bg img { transform: scale(1.05); } .mega-promo-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,15,12,.25), rgba(20,15,12,.88)); } .mega-promo > * { position: relative; z-index: 2; } .mega-promo .eyebrow { color: #fff; opacity: .85; } .mega-promo h4 { font-size: 27px; margin: 12px 0 10px; letter-spacing: -0.025em; line-height: 1.1; } .mega-promo p { color: rgba(255,255,255,.82); font-size: 14px; margin: 0 0 20px; max-width: 240px; } .mega-promo .btn { align-self: flex-start; } .mega-list { padding: 28px 30px 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 14px; align-content: start; } .mega-list-head { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); } .mega-list-head .eyebrow { margin: 0; } .mega-item { display: flex; align-items: center; gap: 14px; padding: 11px 12px; border-radius: 14px; transition: background .2s var(--ease); } .mega-item:hover { background: var(--bg-alt); text-decoration: none; } .mega-thumb { width: 54px; height: 54px; border-radius: 12px; object-fit: cover; flex: 0 0 54px; background: var(--bg-alt); } .mega-thumb.ph { display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); font-size: 16px; font-weight: 700; } .mega-item .body { min-width: 0; } .mega-item .t { font-size: 15px; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 7px; } .mega-item .t .count { font-size: 11px; font-weight: 500; color: var(--muted-2); background: var(--bg-alt); border-radius: 20px; padding: 1px 8px; transition: background .2s; } .mega-item:hover .t .count { background: #fff; } .mega-item .d { font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .mega-item .go { margin-left: auto; color: var(--accent); font-size: 12px; opacity: 0; transform: translateX(-6px); transition: .25s var(--ease); } .mega-item:hover .go { opacity: 1; transform: none; } /* mobile menu */ .mobile-menu { position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 999; background: rgba(255,255,255,.94); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line-soft); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s var(--ease); padding: 14px 22px 26px; } .mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; } .mobile-menu a { display: block; padding: 14px 4px; font-size: 22px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line-soft); } .mobile-menu a:hover { text-decoration: none; color: var(--accent-deep); } main { padding-top: var(--nav-h); } /* ---------- Sections ---------- */ .section { padding: clamp(70px, 10vw, 128px) 0; } .section-sm { padding: clamp(48px, 7vw, 84px) 0; } .section-alt { background: var(--bg-alt); } .section-dark { background: var(--bg-dark); color: #f5f5f7; } .section-dark .subhead, .section-dark .lead, .section-dark .muted { color: #a1a1a6; } .section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; } .section-head .eyebrow { margin-bottom: 14px; display: block; } .section-head p { margin: 18px 0 0; } /* ---------- Hero slider ---------- */ .hero { position: relative; height: clamp(560px, 92vh, 860px); overflow: hidden; background: #000; } .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); display: grid; place-items: center; text-align: center; background-size: cover; background-position: center; } .hero-slide.active { opacity: 1; } .hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.34) 45%, rgba(0,0,0,.6)); } .hero-slide.theme-light::after { background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(245,245,247,.55)); } .hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 22px; color: #fff; } .hero-slide.theme-light .hero-content { color: var(--ink); } .hero-content .eyebrow { color: #fff; opacity: .9; } .hero-slide.theme-light .hero-content .eyebrow { color: var(--accent-deep); } .hero-content h1 { font-size: clamp(38px, 6.5vw, 76px); margin: 12px 0 0; text-shadow: 0 2px 30px rgba(0,0,0,.25); } .hero-content p { font-size: clamp(18px, 2.4vw, 25px); margin: 18px auto 30px; max-width: 620px; font-weight: 500; } .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; } .hero-dots { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 3; display: flex; gap: 10px; justify-content: center; } .hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; transition: .3s; } .hero-dots button.active { background: #fff; width: 26px; border-radius: 5px; } /* static hero fallback (no slides) */ .hero-static { background: linear-gradient(160deg, #1a1a1c 0%, #2a2320 60%, #3a2c20 100%); } /* ---------- Grids & cards ---------- */ .grid { display: grid; gap: 22px; } .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } .card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .45s var(--ease), box-shadow .45s var(--ease); display: flex; flex-direction: column; } .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); } .card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-alt); } .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); } .card:hover .card-media img { transform: scale(1.05); } .card-media.placeholder { display: grid; place-items: center; color: var(--muted-2); background: linear-gradient(135deg, #efeff2, #e3e3e8); } .card-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; } .card-body h3 { font-size: 22px; } .card-body p { color: var(--muted); font-size: 15px; margin: 0; } .card-body .card-meta { margin-top: auto; padding-top: 12px; } /* Feature tile (Apple bento) */ .tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; display: flex; flex-direction: column; justify-content: flex-start; text-align: center; padding: 52px 32px; background: var(--bg-alt); color: var(--ink); transition: transform .5s var(--ease); } .tile:hover { transform: scale(1.006); } .tile.dark { background: var(--bg-dark); color: #f5f5f7; } .tile-bg { position: absolute; inset: 0; z-index: 0; } .tile-bg img { width: 100%; height: 100%; object-fit: cover; } .tile-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.25) 42%, rgba(0,0,0,.38)); } .tile-inner { position: relative; z-index: 2; } .tile .over { color: #fff; } .tile h3 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 8px; } .tile p { font-size: 18px; margin: 0 0 16px; } .tile-actions { display: flex; gap: 18px; justify-content: center; } /* ---------- Category / product listing ---------- */ .cat-link { color: var(--ink); } .cat-link:hover { text-decoration: none; } .badge { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .02em; color: var(--accent-deep); background: rgba(184,137,90,.12); padding: 4px 11px; border-radius: 980px; } /* ---------- Split / feature rows ---------- */ .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: center; } .split.reverse .split-media { order: 2; } .split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; } .split-media .placeholder { border-radius: var(--radius); aspect-ratio: 4/3; background: linear-gradient(135deg,#efeff2,#e3e3e8); display: grid; place-items: center; color: var(--muted-2); } .split-text h2 { margin-bottom: 18px; } .split-text p { color: var(--muted); font-size: 18px; } /* ---------- Stats (flush band, edge to edge in container) ---------- */ .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; } .stat { padding: 8px 22px; } .stat + .stat { border-left: 1px solid var(--line-soft); } .section-dark .stat + .stat { border-left-color: rgba(255,255,255,.14); } .stat .num { font-size: clamp(40px, 5vw, 62px); font-weight: 600; letter-spacing: -0.03em; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; } .stat .label { color: var(--muted); font-size: 15px; margin-top: 6px; } /* ---------- CTA with photo background ---------- */ .section-dark.cta { position: relative; background: #101012; overflow: hidden; } .cta-bg { position: absolute; inset: 0; z-index: 0; } .cta-bg img { width: 100%; height: 100%; object-fit: cover; } .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,16,18,.74), rgba(16,16,18,.84)); } .section-dark.cta > .container-narrow { position: relative; z-index: 2; } /* ---------- Gallery grid ---------- */ .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; } .gallery-cell { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; box-shadow: var(--shadow); display: block; } .gallery-cell:nth-child(6n+1) { grid-column: span 2; aspect-ratio: 16/10; } .gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); } .gallery-cell:hover img { transform: scale(1.06); } .gallery-cell .gallery-zoom { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 22px; background: rgba(0,0,0,.28); opacity: 0; transition: opacity .3s var(--ease); } .gallery-cell:hover .gallery-zoom { opacity: 1; } @media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 734px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .gallery-cell:nth-child(6n+1) { grid-column: auto; aspect-ratio: 4/3; } } /* ---------- Breadcrumb ---------- */ .crumbs { font-size: 13px; color: var(--muted-2); padding: 14px 0; display: flex; gap: 8px; flex-wrap: wrap; } .crumbs a { color: var(--muted-2); } .crumbs a:hover { color: var(--ink); text-decoration: none; } .crumbs span { color: var(--line); } /* ---------- Page hero (interior) ---------- */ .page-hero { padding: clamp(64px, 9vw, 118px) 0 clamp(30px, 4vw, 50px); text-align: center; } .page-hero.on-image { position: relative; color: #fff; background-size: cover; background-position: center; } .page-hero.on-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)); } .page-hero.on-image .container { position: relative; z-index: 2; } .page-hero h1 { font-size: clamp(38px, 5.6vw, 68px); } .page-hero p { max-width: 640px; margin: 20px auto 0; font-size: clamp(18px,2.1vw,22px); } .page-hero.on-image p { color: #e8e8ed; } /* ---------- Product detail ---------- */ .pd { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,5vw,64px); align-items: start; } .pd-gallery { position: sticky; top: calc(var(--nav-h) + 20px); } .pd-main { border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); aspect-ratio: 1; } .pd-main img { width: 100%; height: 100%; object-fit: cover; } .pd-main.placeholder { display: grid; place-items: center; color: var(--muted-2); } .pd-thumbs { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; } .pd-thumbs img { width: 84px; height: 84px; object-fit: cover; border-radius: 12px; cursor: pointer; border: 1px solid var(--line-soft); transition: .2s; } .pd-thumbs img:hover { border-color: var(--accent); } .pd-info h1 { font-size: clamp(30px,4vw,46px); margin: 10px 0 14px; } .pd-specs { list-style: none; margin: 26px 0; padding: 0; border-top: 1px solid var(--line-soft); } .pd-specs li { display: flex; justify-content: space-between; gap: 20px; padding: 15px 2px; border-bottom: 1px solid var(--line-soft); font-size: 16px; } .pd-specs li span:first-child { color: var(--muted); } .pd-features { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 12px; } .pd-features li { position: relative; padding-left: 30px; color: var(--ink); } .pd-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; } /* ---------- Prose (blog / rich text) ---------- */ .prose { font-size: 19px; line-height: 1.62; color: #333336; } .prose > * + * { margin-top: 1.25em; } .prose h2 { font-size: 30px; margin-top: 1.6em; letter-spacing: -0.02em; } .prose h3 { font-size: 23px; margin-top: 1.4em; } .prose p { margin: 0 0 1em; } .prose ul, .prose ol { padding-left: 1.3em; } .prose li { margin: .4em 0; } .prose img { border-radius: var(--radius); margin: 1.6em 0; } .prose blockquote { border-left: 3px solid var(--accent); padding-left: 22px; color: var(--muted); font-size: 22px; font-style: italic; margin: 1.6em 0; } .prose a { color: var(--blue); } /* ---------- Blog cards ---------- */ .post-card .card-media { aspect-ratio: 16/10; } .post-meta { font-size: 13px; color: var(--muted-2); display: flex; gap: 10px; align-items: center; } .post-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px,4vw,52px); align-items: center; background: var(--bg-alt); border-radius: var(--radius-lg); overflow: hidden; } .post-hero-media { aspect-ratio: 16/11; } .post-hero-media img { width: 100%; height: 100%; object-fit: cover; } .post-hero-body { padding: clamp(24px,4vw,54px); } .post-hero-body h2 { font-size: clamp(26px,3.2vw,40px); margin: 14px 0 16px; } /* ---------- Contact ---------- */ .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: start; } .info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; } .info-list li { display: flex; gap: 16px; } .info-ico { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(184,137,90,.12); color: var(--accent-deep); } .info-list h4 { font-size: 15px; margin: 0 0 3px; } .info-list p, .info-list a { color: var(--muted); font-size: 16px; margin: 0; } .info-list a:hover { color: var(--accent-deep); text-decoration: none; } .form-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow); } .field { margin-bottom: 18px; } .field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--ink); } .field input, .field textarea, .field select { width: 100%; padding: 14px 16px; font-family: inherit; font-size: 16px; border: 1px solid var(--line); border-radius: 12px; background: #fbfbfd; color: var(--ink); transition: border-color .2s, box-shadow .2s; } .field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,113,227,.12); background: #fff; } .field textarea { min-height: 140px; resize: vertical; } .field .err { color: #d70015; font-size: 13px; margin-top: 6px; } .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } .alert { padding: 15px 18px; border-radius: 12px; font-size: 15px; margin-bottom: 22px; } .alert-success { background: #e7f6ec; color: #1a7f37; border: 1px solid #b7e2c4; } .map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; } .map-wrap iframe { width: 100%; height: 420px; border: 0; } /* ---------- Footer ---------- */ .footer { background: var(--bg-alt); color: var(--muted); font-size: 13px; padding: 56px 0 34px; border-top: 1px solid var(--line-soft); } .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); } .footer h5 { font-size: 13px; color: var(--ink); margin: 0 0 16px; font-weight: 600; } .footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; } .footer a { color: var(--muted); } .footer a:hover { color: var(--ink); text-decoration: none; } .footer-brand p { max-width: 280px; line-height: 1.6; } .footer .social { display: flex; gap: 14px; margin-top: 18px; } .footer .social a { width: 36px; height: 36px; border-radius: 50%; background: #fff; display: grid; place-items: center; border: 1px solid var(--line-soft); color: var(--muted); } .footer .social a:hover { color: #fff; background: var(--accent-deep); border-color: var(--accent-deep); } .footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; } /* ---------- Scroll reveal ---------- */ .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); } .reveal.in { opacity: 1; transform: none; } .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; } /* ---------- Utilities ---------- */ .mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; } .stack-actions { display: flex; gap: 16px; flex-wrap: wrap; } .pagination-wrap { display: flex; justify-content: center; margin-top: 52px; } .pagination-wrap nav { display: flex; gap: 6px; } .pagination-wrap a, .pagination-wrap span { min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 15px; color: var(--ink); border: 1px solid var(--line-soft); } .pagination-wrap a:hover { text-decoration: none; border-color: var(--accent); } .pagination-wrap [aria-current] span, .pagination-wrap .active span { background: var(--ink); color: #fff; border-color: var(--ink); } /* ---------- Responsive ---------- */ @media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } .stats { grid-template-columns: repeat(2, 1fr); gap: 34px; } .split, .pd, .contact-grid, .post-hero { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } .pd-gallery { position: static; } .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } } @media (max-width: 734px) { body { font-size: 16px; } .nav-links, .nav-cta { display: none; } .nav-toggle { display: block; } .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr 1fr; } .hero { height: clamp(520px, 84vh, 720px); } } @media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } .stats { grid-template-columns: 1fr 1fr; } } @media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; transition: none; } }