:root {
--primary: #edc43c;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.hero-section {
min-height: calc(100vh - 120px);
width: 100%;
background-color: #fff;
display: flex;
align-items: center;
position: relative;
padding-top: 2rem;
padding-bottom: 5rem;
}
@media (min-width: 768px) {
.hero-section {
padding-top: 0;
}
}
.hero-container {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 1rem;
position: relative;
z-index: 2;
}
@media (min-width: 768px) {
.hero-container {
padding: 0 2.5rem;
}
}
@media (min-width: 992px) {
.hero-container {
padding: 0 5rem;
}
}
@media (min-width: 1440px) {
.hero-container {
padding: 0 9rem;
}
}
.hero-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3.5rem;
align-items: stretch;
}
@media (min-width: 992px) {
.hero-grid {
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: stretch;
}
}
.hero-content {
color: #000;
display: flex;
flex-direction: column;
justify-content: center;
}
.hero-location {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: 'Lato', sans-serif;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
color: #666;
margin-bottom: 1rem;
letter-spacing: 0.05em;
line-height: 1;
}
.hero-location .pin-icon {
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
}
.hero-location .pin-icon svg {
display: block;
width: 16px;
height: 16px;
transform: translateY(-1px);
}
.hero-title {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 2rem;
line-height: 1.15;
text-transform: uppercase;
margin-bottom: 1.25rem;
}
.hero-title .highlight {
color: var(--primary);
}
@media (min-width: 768px) {
.hero-title {
font-size: 2.7rem;
}
}
@media (min-width: 1200px) {
.hero-title {
font-size: 3.5rem;
}
}
.hero-list {
list-style: none;
padding: 0;
margin-bottom: 1.25rem;
font-family: 'Lato', sans-serif;
font-size: 0.95rem;
font-weight: 500;
}
.hero-list li {
margin-bottom: 0.8rem;
display: flex;
align-items: center;
gap: 0.75rem;
line-height: 1.3;
}
.hero-list li::before {
content: '';
width: 10px;
height: 10px;
background-color: var(--primary);
border-radius: 50%;
flex: 0 0 auto;
align-self: center;
}
@media (min-width: 768px) {
.hero-list {
font-size: 1.15rem;
}
.hero-list li::before {
width: 14px;
height: 14px;
}
}
.cta-label {
font-family: 'Lato', sans-serif;
font-weight: 600;
font-size: 0.8rem;
text-transform: uppercase;
margin-bottom: 0.65rem;
letter-spacing: 0.05em;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: linear-gradient(135deg, var(--primary) 0%, #e3bc31 100%);
color: #000;
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 1rem;
line-height: 1;
padding: 0.75rem 1.75rem;
border-radius: 6px;
text-decoration: none;
transition: filter 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
text-transform: uppercase;
letter-spacing: 0.05em;
border: 2px solid transparent;
white-space: nowrap;
}
.btn-primary:hover {
filter: brightness(1.1);
transform: none;
box-shadow: 0 4px 15px rgba(227, 188, 49, 0.4);
}
.btn-icon {
display: flex;
align-items: center;
justify-content: center;
line-height: 0;
}
.btn-primary svg,
.btn-primary-outline svg,
.btn-secondary svg,
.btn-icon svg {
display: block;
width: 24px;
height: 24px;
flex-shrink: 0;
}
.hero-image {
display: flex;
justify-content: center;
align-items: flex-end;
position: relative;
height: 100%;
}
.hero-image img {
max-width: 100%;
height: auto;
object-fit: contain;
max-height: 85vh;
}
@media (min-width: 992px) {
.hero-image img {
width: 110%;
max-width: none;
}
}
@media (min-width: 1400px) {
.hero-image img {
width: 120%;
}
}
.hero-shape {
position: absolute;
top: -25vh;
left: -25vw;
width: 100vw;
height: 150vh;
background: radial-gradient(circle, rgba(237, 196, 60, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
filter: blur(100px);
pointer-events: none;
z-index: 1;
opacity: 1;
}
.services-section {
background-color: transparent;
padding: 5rem 0;
position: relative;
z-index: 10;
}
.services-container {
width: 100%;
max-width: 1600px;
margin: 0 auto;
padding: 0 1rem;
}
@media (min-width: 768px) {
.services-container {
padding: 0 2.5rem;
}
}
@media (min-width: 992px) {
.services-container {
padding: 0 5rem;
}
}
@media (min-width: 1440px) {
.services-container {
padding: 0 9rem;
}
}
.section-header {
text-align: center;
max-width: 800px;
margin: 0 auto 2.5rem auto;
}
.section-tag {
display: inline-block;
font-family: 'Lato', sans-serif;
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--primary);
margin-bottom: 1rem;
padding: 0;
background: transparent;
}
.section-title {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 2rem;
margin-bottom: 1rem;
line-height: 1.2;
text-transform: uppercase;
}
.section-title .highlight {
color: var(--primary);
}
.section-subtitle {
font-family: 'Lato', sans-serif;
font-size: 1rem;
color: #666;
line-height: 1.6;
}
@media (min-width: 768px) {
.section-title {
font-size: 2.5rem;
}
.section-subtitle {
font-size: 1.125rem;
}
}
.services-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
margin-bottom: 5rem;
}
@media (min-width: 768px) {
.services-grid {
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
}
@media (min-width: 1200px) {
.services-grid {
gap: 3rem;
}
}
.service-card {
background: #fff;
padding: 2rem;
border-radius: 12px;
border: 1px solid #eee;
height: 100%;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
display: grid;
grid-template-columns: auto 1fr;
column-gap: 1rem;
row-gap: 0.5rem;
align-items: center;
}
.card-icon {
width: auto;
height: auto;
background: none;
border-radius: 0;
margin-bottom: 0;
display: flex;
color: var(--primary);
grid-column: 1;
grid-row: 1;
}
.card-icon svg {
display: block;
width: 32px;
height: 32px;
}
.service-card h3 {
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 1.25rem;
margin-bottom: 0;
line-height: 1.3;
grid-column: 2;
grid-row: 1;
}
.service-card p {
font-family: 'Lato', sans-serif;
font-size: 0.95rem;
color: #666;
line-height: 1.6;
margin-bottom: 0;
grid-column: 1 / -1;
grid-row: 2;
margin-top: 0.5rem;
}
.service-cta-card {
background: linear-gradient(135deg, var(--primary) 0%, #e3bc31 100%);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
height: 100%;
position: relative;
overflow: hidden;
}
.service-cta-card::before,
.service-cta-card::after {
content: '';
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15);
pointer-events: none;
}
.service-cta-card::before {
width: 200px;
height: 200px;
top: -100px;
left: -50px;
}
.service-cta-card::after {
width: 150px;
height: 150px;
bottom: -75px;
right: -25px;
}
.service-cta-content {
position: relative;
z-index: 1;
}
.service-cta-content h3 {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: #000;
}
.service-cta-content p {
font-family: 'Lato', sans-serif;
font-size: 1rem;
color: #000;
margin-bottom: 1.5rem;
font-weight: 500;
}
@media (min-width: 992px) {
.services-cta-banner {
flex-direction: row;
justify-content: space-between;
text-align: left;
padding: 3rem 4rem;
}
}
.cta-banner-content {
position: relative;
z-index: 1;
}
.cta-banner-content h3 {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: #000;
text-transform: uppercase;
}
@media (min-width: 768px) {
.cta-banner-content h3 {
font-size: 1.75rem;
}
}
.cta-banner-content p {
font-family: 'Lato', sans-serif;
font-size: 1rem;
font-weight: 500;
color: #000;
margin: 0;
}
@media (min-width: 768px) {
.cta-banner-content p {
font-size: 1.1rem;
}
}
.cta-banner-action {
position: relative;
z-index: 1;
}
.btn-primary-outline {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: #000;
color: #fff;
font-family: 'Lato', sans-serif;
font-weight: 500;
font-size: 1rem;
line-height: 1;
padding: 0.75rem 2rem;
border-radius: 6px;
text-decoration: none;
transition: background-color 0.3s ease;
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 0.05em;
border: 2px solid transparent;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-primary-outline:hover {
background: #333;
transform: none;
box-shadow: none;
}
.btn-primary-outline svg {
color: var(--primary);
}
.why-us-section {
background-color: var(--primary);
padding: 8rem 0;
position: relative;
z-index: 10;
overflow: hidden;
}
.why-us-section::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: -1px;
height: 70px;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path fill='%23ffffff' d='M0,64 C240,120 480,120 720,64 C960,8 1200,8 1440,64 L1440,0 L0,0 Z'/></svg>");
background-size: 100% 100%;
background-repeat: no-repeat;
transform: scaleX(-1);
pointer-events: none;
z-index: 0;
}
.why-us-section::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -1px;
height: 70px;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path fill='%23ffffff' d='M0,56 C240,8 480,8 720,56 C960,104 1200,104 1440,56 L1440,120 L0,120 Z'/></svg>");
background-size: 100% 100%;
background-repeat: no-repeat;
pointer-events: none;
z-index: 0;
}
.why-us-container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
position: relative;
z-index: 1;
}
.why-us-section .section-header {
text-align: center;
max-width: 900px;
margin: 0 auto 3rem auto;
}
.why-us-section .section-title {
color: #000;
}
.why-us-section .section-title .highlight {
color: #000;
}
.section-tag-simple {
display: inline-block;
font-family: 'Lato', sans-serif;
font-size: 0.9rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #000;
margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
.why-us-container {
padding: 0 2.5rem;
}
}
@media (min-width: 992px) {
.why-us-container {
padding: 0 5rem;
}
}
@media (min-width: 1440px) {
.why-us-container {
padding: 0 9rem;
}
}
.why-us-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
margin-top: 3rem;
counter-reset: why;
}
@media (min-width: 768px) {
.why-us-grid {
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
}
.advantage-item {
text-align: left;
position: relative;
padding: 2rem 1.75rem 2.25rem 1.75rem;
border: 2px solid rgba(0, 0, 0, 0.14);
border-radius: 14px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.advantage-item::before {
counter-increment: why;
content: counter(why, decimal-leading-zero);
display: inline-flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
border-radius: 12px;
background: #000;
color: var(--primary);
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 1rem;
letter-spacing: 0.08em;
margin-bottom: 1.25rem;
}
.advantage-item h3 {
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 1.25rem;
margin-bottom: 0.75rem;
color: #000;
}
.advantage-item p {
font-family: 'Lato', sans-serif;
font-size: 1rem;
line-height: 1.5;
color: #222;
margin: 0;
}
.realizacje-section {
background-color: #fff;
padding: 5rem 0;
position: relative;
z-index: 10;
}
.realizacje-container {
width: 100%;
max-width: 1600px;
margin: 0 auto;
padding: 0;
}
.realizacje-header-wrapper {
padding: 0 1rem;
}
@media (min-width: 768px) {
.realizacje-container {
padding: 0 2.5rem;
}
.realizacje-header-wrapper {
padding: 0;
}
}
@media (min-width: 992px) {
.realizacje-container {
padding: 0 5rem;
}
}
@media (min-width: 1440px) {
.realizacje-container {
padding: 0 9rem;
}
}
.realizacje-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
margin-bottom: 3rem;
align-items: start;
}
@media (min-width: 992px) {
.realizacje-grid {
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
}
.realizacja-card {
width: 100%;
border-radius: 14px;
overflow: hidden;
background: #fff;
border: 1px solid #eee;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
color: #000;
}
.realizacja-media {
width: 100%;
aspect-ratio: 4 / 3;
background-size: cover;
background-position: center;
transition: transform 0.35s ease;
}
.realizacja-body {
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.realizacja-tag {
align-self: flex-start;
font-family: 'Lato', sans-serif;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: #000;
background: var(--primary);
padding: 0.35rem 0.6rem;
border-radius: 3px;
}
.realizacja-title {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 1.15rem;
color: #000;
margin: 0;
text-transform: uppercase;
line-height: 1.3;
}
.realizacja-excerpt {
font-family: 'Lato', sans-serif;
font-size: 0.95rem;
line-height: 1.6;
color: #222;
}
.realizacja-cta {
margin-top: auto;
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.12em;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.realizacja-cta::after {
content: '→';
font-size: 1.2rem;
font-weight: 900;
line-height: 1;
}
.realizacje-cta {
text-align: center;
margin-bottom: 2.5rem;
}
.realizacje-link-all {
display: inline-flex;
align-items: center;
gap: 0.75rem;
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 1rem;
line-height: 1;
text-transform: uppercase;
letter-spacing: 0.06em;
color: #000;
text-decoration: none;
padding: 0.85rem 1.15rem;
border-radius: 6px;
border: 2px solid transparent;
background: linear-gradient(135deg, var(--primary) 0%, #e3bc31 100%);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.realizacje-link-all::after {
content: '→';
display: inline-flex;
align-items: center;
justify-content: center;
width: auto;
height: auto;
background: transparent;
color: #000;
font-size: 1.6rem;
font-weight: 900;
line-height: 1;
transition: transform 0.2s ease, filter 0.2s ease;
}
.realizacje-link-all:hover::after {
transform: translateX(3px);
filter: brightness(1.05);
}
.realizacje-link-all:hover {
filter: brightness(1.05);
}
.realizacje-arrow {
display: none;
background: none;
border: none;
width: 44px;
height: 44px;
align-items: center;
justify-content: center;
color: #1a1a1a;
cursor: pointer;
transition: all 0.2s ease;
z-index: 20;
}
.realizacje-arrow:hover {
color: var(--primary);
transform: scale(1.15);
}
.realizacje-arrow:active {
color: var(--primary);
transform: scale(0.95);
}
.realizacje-arrow-left {
order: 1;
}
.realizacje-arrow-right {
order: 3;
}
@media (max-width: 991px) {
.realizacje-arrow {
display: flex;
}
.realizacje-container {
position: relative;
overflow: hidden;
padding: 0;
}
.realizacje-header-wrapper {
padding: 0 1rem;
}
.realizacje-grid {
display: flex;
scroll-behavior: smooth;
gap: 0;
margin-bottom: 2rem;
transition: transform 0.3s ease;
}
.realizacja-slide-wrapper {
flex: 0 0 100vw;
min-width: 100vw;
flex-shrink: 0;
width: 100vw;
max-width: 100vw;
padding: 0 1rem;
box-sizing: border-box;
}
.realizacja-card {
padding-left: 0;
padding-right: 0;
}
}
.realizacje-indicators {
display: none;
justify-content: center;
align-items: center;
gap: 0.25rem;
order: 2;
}
@media (max-width: 991px) {
.realizacje-indicators {
display: flex;
}
.realizacje-container {
display: flex;
flex-direction: column;
}
.realizacje-controls {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-top: 1.5rem;
}
}
.realizacje-indicator {
background: none;
border: none;
padding: 0.3rem;
cursor: pointer;
transition: transform 0.2s ease;
}
.realizacje-indicator:hover {
transform: scale(1.2);
}
.realizacje-indicator circle {
transition: fill 0.3s ease;
}
.contact-cta-section {
background-color: #fff;
padding: 5rem 0;
position: relative;
overflow: hidden;
}
.contact-cta-section.no-realizacje {
margin-top: 5rem;
}
.contact-cta-section::before {
content: '';
display: none;
position: absolute;
top: 50%;
left: calc(50% + 1rem);
transform: translateY(-50%) rotate(15deg);
transform-origin: left center;
width: 120vw;
height: 120vw;
max-width: 1200px;
max-height: 1200px;
background: linear-gradient(135deg, var(--primary) 0%, #e3bc31 100%);
border-radius: 40px;
z-index: 1;
pointer-events: none;
}
@media (min-width: 992px) {
.contact-cta-section::before {
display: block;
}
}
.contact-cta-image {
position: relative;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
}
.contact-cta-container {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 1rem;
position: relative;
z-index: 2;
}
@media (min-width: 768px) {
.contact-cta-container {
padding: 0 2.5rem;
}
}
@media (min-width: 992px) {
.contact-cta-container {
padding: 0 5rem;
}
}
@media (min-width: 1440px) {
.contact-cta-container {
padding: 0 9rem;
}
}
.contact-cta-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
align-items: center;
}
@media (min-width: 992px) {
.contact-cta-grid {
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
}
.contact-cta-content {
color: #000;
}
.contact-cta-title {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 2.2rem;
line-height: 1.15;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.contact-cta-title .highlight {
color: var(--primary);
}
@media (min-width: 768px) {
.contact-cta-title {
font-size: 3rem;
}
}
@media (min-width: 1200px) {
.contact-cta-title {
font-size: 3.5rem;
}
}
.contact-cta-text {
font-family: 'Lato', sans-serif;
font-size: 1.1rem;
line-height: 1.6;
color: #666;
margin-bottom: 2rem;
}
.contact-cta-actions {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}
@media (min-width: 768px) {
.contact-cta-actions {
flex-direction: row;
flex-wrap: wrap;
gap: 1.5rem;
}
}
.btn-secondary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
background: transparent;
color: #000;
border: 2px solid var(--primary);
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 1.1rem;
line-height: 1;
padding: 0.75rem 1.75rem;
border-radius: 6px;
text-decoration: none;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.05em;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn-secondary:hover {
background: var(--primary);
color: #000;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(237, 196, 60, 0.3);
}
.contact-cta-image {
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.contact-cta-image img {
max-width: 100%;
height: auto;
object-fit: contain;
max-height: 60vh;
}
.top-bar {
width: 100%;
background-color: transparent;
font-family: 'Lato', sans-serif;
font-size: 0.85rem;
padding: 1rem 0;
}
@media (min-width: 768px) {
.top-bar {
font-size: 1rem;
}
}
.top-bar-inner {
width: 100%;
display: flex;
justify-content: flex-end;
align-items: center;
padding-left: 1rem;
padding-right: 1rem;
}
@media (min-width: 768px) {
.top-bar-inner {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
}
@media (min-width: 992px) {
.top-bar-inner {
padding-left: 5rem;
padding-right: 5rem;
}
}
@media (min-width: 1440px) {
.top-bar-inner {
padding-left: 9rem;
padding-right: 9rem;
}
}
.top-bar-content {
display: flex;
align-items: center;
gap: 1.5rem;
}
.top-bar-separator {
display: block;
width: 6px;
height: 6px;
background-color: var(--primary);
border-radius: 50%;
}
@media (min-width: 768px) {
.top-bar-separator {
width: 8px;
height: 8px;
}
}
.top-bar-link {
text-decoration: none;
color: #444;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 0.4rem;
transition: color 0.2s;
}
.top-bar-link:hover {
color: var(--primary);
}
.site-header {
position: sticky;
top: 0;
width: 100%;
z-index: 1000;
background: linear-gradient(to right, var(--primary) 0%, #e3bc31 100%);
padding: 1rem 0;
overflow: hidden;
}
.header-inner {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding-left: 1rem;
padding-right: 1rem;
position: relative;
z-index: 2;
}
@media (min-width: 768px) {
.header-inner {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
}
@media (min-width: 992px) {
.header-inner {
padding-left: 5rem;
padding-right: 5rem;
}
}
@media (min-width: 1440px) {
.header-inner {
padding-left: 9rem;
padding-right: 9rem;
}
}
.logo img {
height: auto;
max-width: 10rem;
display: block;
}
.header-right {
display: none;
}
@media (min-width: 992px) {
.header-right {
display: block;
}
}
.main-navigation {
position: relative;
z-index: 2;
}
.site-header::before {
content: '';
position: absolute;
top: -50%;
right: 10%;
width: 200px;
height: 200px;
background: rgba(255, 255, 255, 0.15);
border-radius: 50%;
pointer-events: none;
filter: blur(30px);
z-index: 1;
}
.site-header::after {
content: '';
position: absolute;
bottom: -30%;
left: 15%;
width: 150px;
height: 150px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
pointer-events: none;
filter: blur(25px);
z-index: 1;
}
.main-navigation ul {
list-style: none;
display: flex;
gap: 1.5rem;
margin: 0;
padding: 0;
position: relative;
z-index: 2;
}
.main-navigation a {
text-decoration: none;
color: #000;
font-weight: 600;
transition: color 0.2s ease, opacity 0.2s ease;
font-family: 'Lato', sans-serif;
letter-spacing: 0.05em;
text-transform: uppercase;
font-size: 0.9rem;
}
.main-navigation a:hover {
opacity: 0.7;
}
.header-socials {
display: flex;
align-items: center;
gap: 1rem;
position: relative;
z-index: 2;
}
.social-icon {
color: #000;
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
}
.social-icon svg {
width: 100%;
height: 100%;
display: block;
}
.mobile-only {
display: block;
background: none;
border: none;
cursor: pointer;
color: #000;
padding: 0;
}
@media (min-width: 992px) {
.mobile-only {
display: none !important;
}
}
.icon-hamburger {
width: 32px;
height: 32px;
}
.mobile-drawer {
position: fixed;
inset: 0;
background: linear-gradient(135deg, var(--primary) 0%, #e3bc31 100%);
z-index: 9999;
transform: translateX(100%);
transition: transform 0.3s ease-in-out;
display: flex;
flex-direction: column;
padding: 1rem;
overflow: hidden;
}
.mobile-drawer::before {
content: '';
position: absolute;
bottom: -10vh;
right: -10vw;
width: 60vh;
height: 60vh;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
pointer-events: none;
filter: blur(40px);
}
@media (min-width: 768px) {
.mobile-drawer {
padding: 2.5rem;
}
}
.mobile-drawer.is-open {
transform: translateX(0);
}
.close-menu {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
cursor: pointer;
padding: 0;
color: #000;
z-index: 10;
}
@media (min-width: 768px) {
.close-menu {
top: 1rem;
right: 2.5rem;
}
}
@media (min-width: 992px) {
.close-menu {
right: 5rem;
}
}
.drawer-content {
margin-top: 5rem;
padding-left: 0;
position: relative;
z-index: 2;
}
.mobile-navigation ul {
list-style: none;
padding: 0;
margin: 0 0 2rem 0;
}
.mobile-navigation li {
margin-bottom: 1rem;
}
.mobile-navigation a {
font-size: 1.5rem;
font-weight: 600;
color: #000;
text-decoration: none;
display: block;
font-family: 'Lato', sans-serif;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.mobile-socials {
display: flex;
gap: 1.5rem;
}
body.menu-is-open {
overflow: hidden;
}
.mobile-socials .social-icon {
width: 34px;
height: 34px;
}
.mobile-socials .social-icon svg {
width: 100%;
height: 100%;
}
.site-footer {
position: relative;
background-color: transparent;
margin-top: 0;
overflow: hidden;
}
.site-footer::after {
content: '';
position: absolute;
bottom: -150px;
right: -100px;
width: 600px;
height: 600px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
pointer-events: none;
filter: blur(60px);
z-index: 0;
}
.footer-wave {
width: 100%;
line-height: 0;
position: relative;
z-index: 0;
}
.footer-wave svg {
display: block;
width: 100%;
height: auto;
max-height: 150px;
}
.footer-inner {
background: linear-gradient(to right, var(--primary) 0%, #e3bc31 100%);
padding-top: 4rem;
padding-bottom: 1.5rem;
padding-left: 1rem;
padding-right: 1rem;
margin-top: -1px;
position: relative;
}
.footer-container,
.site-credits {
position: relative;
z-index: 2;
}
@media (min-width: 768px) {
.footer-inner {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
}
@media (min-width: 992px) {
.footer-inner {
padding-left: 5rem;
padding-right: 5rem;
}
}
@media (min-width: 1440px) {
.footer-inner {
padding-left: 9rem;
padding-right: 9rem;
}
}
.footer-container {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
margin: 0;
}
@media (min-width: 992px) {
.footer-container {
grid-template-columns: max-content max-content max-content 1fr;
gap: 4rem;
align-items: start;
}
}
.site-credits {
margin-top: 3rem;
padding-top: 1rem;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
gap: 1rem;
font-family: 'Lato', sans-serif;
font-size: 0.9rem;
color: #000;
}
@media (min-width: 768px) {
.site-credits {
flex-direction: row;
align-items: center;
}
}
.site-credits a {
color: #000;
text-decoration: none;
font-weight: 500;
}
.site-credits a:hover {
text-decoration: underline;
}
.footer-col h3 {
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 1.25rem;
color: #000;
margin-bottom: 1.5rem;
text-transform: uppercase;
}
.footer-social-links {
display: flex;
flex-direction: row;
gap: 1rem;
align-items: center;
}
.footer-social-block {
display: block;
}
.footer-col-contact {
display: flex;
flex-direction: column;
margin-top: 3rem;
}
@media (min-width: 992px) {
.footer-col-contact {
align-items: flex-end;
text-align: right;
justify-content: flex-start;
justify-self: end;
margin-top: 0;
}
}
.footer-section-contact {
margin: 0;
}
.footer-phone {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 3rem;
line-height: 1.1;
color: #000;
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
white-space: nowrap;
}
@media (min-width: 992px) {
.footer-phone {
font-size: 5rem;
}
}
.footer-email {
font-family: 'Lato', sans-serif;
font-size: 1.35rem;
font-weight: 500;
color: #000;
text-decoration: none;
display: block;
}
@media (min-width: 992px) {
.footer-email {
font-size: 1.5rem;
}
}
.footer-email:hover,
.footer-phone:hover {
color: #222;
text-decoration: underline;
}
.logo-wrapper-simple {
display: inline-block;
}
.logo-wrapper-simple img {
display: block;
max-width: 180px;
height: auto;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 0.75rem;
}
.footer-links a {
text-decoration: none;
color: #000;
font-family: 'Lato', sans-serif;
font-weight: 500;
font-size: 1rem;
transition: opacity 0.2s;
}
.footer-links a:hover {
opacity: 0.7;
}
.footer-social-links {
display: flex;
gap: 1rem;
}
.footer-social-links .social-icon {
width: 32px;
height: 32px;
color: #000;
}
.footer-social-links .social-icon svg {
width: 100%;
height: 100%;
}
.realizacje-archive-section {
padding: 5rem 0 5rem;
font-family: 'Lato', sans-serif;
background-color: transparent;
}
.realizacje-archive-container {
max-width: 1600px;
margin: 0 auto;
padding: 0 1rem;
}
@media (min-width: 768px) {
.realizacje-archive-container {
padding: 0 2.5rem;
}
}
@media (min-width: 992px) {
.realizacje-archive-container {
padding: 0 5rem;
}
}
@media (min-width: 1440px) {
.realizacje-archive-container {
padding: 0 9rem;
}
}
.realizacje-header-simple {
text-align: center;
margin-bottom: 4rem;
}
.realizacje-archive-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
@media (min-width: 992px) {
.realizacje-archive-grid {
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
}
.masonry-grid {
display: flex;
flex-direction: column;
gap: 2rem;
}
.no-realizations-message {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 3rem 2rem;
min-height: 300px;
}
.no-realizations-title {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 2rem;
color: #000;
margin-bottom: 1rem;
}
.no-realizations-text {
font-family: 'Lato', sans-serif;
font-size: 1.1rem;
line-height: 1.6;
color: #666;
max-width: 600px;
margin: 0 auto;
}
.masonry-column {
display: flex;
flex-direction: column;
gap: 2rem;
}
@media (min-width: 992px) {
.masonry-grid {
flex-direction: row;
align-items: flex-start;
gap: 4rem;
}
.masonry-column {
flex: 1;
width: 50%;
}
}
.realizacja-card-archive {
display: flex;
flex-direction: column;
width: 100%;
border-radius: 14px;
overflow: hidden;
background: #fff;
border: 1px solid #eee;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.realizacja-gallery-preview {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 2px;
grid-auto-rows: auto;
aspect-ratio: 3 / 2;
border-radius: 14px 14px 0 0;
overflow: hidden;
cursor: default;
}
.realizacja-gallery-preview.js-open-lightbox {
cursor: pointer;
}
.gallery-main-img {
width: 100%;
height: 100%;
grid-row: span 2;
}
.gallery-main-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.gallery-side-imgs {
display: grid;
grid-template-rows: 1fr 1fr;
gap: 2px;
height: 100%;
align-content: stretch;
}
.gallery-small-img {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
aspect-ratio: 1 / 1;
}
.gallery-small-img.js-open-lightbox {
cursor: pointer;
}
.gallery-small-img img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.more-photos-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.6);
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-weight: 700;
font-size: 0.9rem;
text-align: center;
transition: background 0.3s;
line-height: 1.2;
padding: 0.5rem;
text-transform: uppercase;
}
.more-photos-overlay:hover {
background: rgba(0, 0, 0, 0.7);
}
.gallery-icon-small {
margin-bottom: 0.25rem;
color: var(--primary);
transform: scale(1.3);
}
.realizacja-info-box {
background: #fff;
padding: 1.5rem;
border-radius: 0 0 14px 14px;
color: #000;
position: relative;
z-index: 1;
}
.realizacja-archive-title {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 1.15rem;
color: #000;
margin: 0 0 0.75rem 0;
text-transform: uppercase;
line-height: 1.3;
}
.realizacja-archive-excerpt {
font-family: 'Lato', sans-serif;
font-size: 0.95rem;
line-height: 1.6;
color: #222;
margin: 0;
}
.realizacja-gallery-preview.layout-single {
display: block;
aspect-ratio: 4 / 3;
}
.realizacja-gallery-preview.layout-double {
grid-template-columns: 3fr 1fr;
aspect-ratio: 16 / 9;
grid-template-rows: 1fr;
}
.realizacja-gallery-preview.layout-double .gallery-main-img {
grid-row: auto;
}
.realizacja-gallery-preview.layout-double .gallery-side-imgs {
display: grid;
grid-template-rows: 1fr;
height: 100%;
}
.realizacja-gallery-preview.layout-double .gallery-small-img {
height: 100%;
aspect-ratio: auto;
}
.realizacja-gallery-preview:not(.js-open-lightbox) {
cursor: default;
}
.realizacja-gallery-preview:not(.js-open-lightbox):hover .gallery-main-img img,
.realizacja-gallery-preview:not(.js-open-lightbox):hover .gallery-small-img img {
transform: none;
}
.realizacja-lightbox {
position: fixed;
inset: 0;
z-index: 9999;
background: rgba(0, 0, 0, 0.95);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.realizacja-lightbox.active {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.lightbox-content {
position: relative;
width: 90vw;
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
}
.lightbox-img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
user-select: none;
opacity: 0;
transition: opacity 0.3s ease;
z-index: 2;
}
.lightbox-img.visible {
opacity: 1;
}
.lightbox-close {
position: absolute;
top: 20px;
right: 20px;
background: none;
border: none;
color: #fff;
cursor: pointer;
z-index: 20;
padding: 10px;
transition: transform 0.2s;
}
.lightbox-close:hover {
transform: scale(1.1);
}
.lightbox-nav {
position: absolute;
bottom: 30px;
right: 30px;
display: flex;
gap: 1rem;
z-index: 20;
}
@media (max-width: 768px) {
.lightbox-nav {
bottom: 20px;
right: 50%;
transform: translateX(50%);
}
}
.lightbox-btn {
background: rgba(255, 255, 255, 0.1);
border: none;
color: #fff;
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
transition: background 0.2s, transform 0.2s;
}
.lightbox-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.05);
}
.lightbox-counter {
position: absolute;
bottom: 30px;
left: 30px;
color: #fff;
font-family: 'Lato', sans-serif;
font-size: 1rem;
font-weight: 600;
z-index: 20;
letter-spacing: 0.05em;
}
.lightbox-loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
height: 50px;
border: 4px solid rgba(255, 255, 255, 0.1);
border-top: 4px solid var(--primary);
border-radius: 50%;
animation: spin 1s linear infinite;
z-index: 1;
display: none;
}
.lightbox-loader.active {
display: block;
}
@keyframes spin {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.cross-promo-section {
background-color: #fff;
padding: 5rem 0;
position: relative;
overflow: hidden;
border-top: none;
}
.cross-promo-container {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 1rem;
}
@media (min-width: 768px) {
.cross-promo-container {
padding: 0 2.5rem;
}
}
@media (min-width: 992px) {
.cross-promo-container {
padding: 0 5rem;
}
}
@media (min-width: 1440px) {
.cross-promo-container {
padding: 0 9rem;
}
}
.cross-promo-grid {
display: grid;
grid-template-columns: 1fr;
gap: 0;
align-items: stretch;
background: #fff;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
overflow: hidden;
}
@media (min-width: 992px) {
.cross-promo-grid {
grid-template-columns: 1fr 1fr;
gap: 0;
}
}
.cross-promo-image {
position: relative;
width: 100%;
height: 100%;
min-height: 300px;
}
.cross-promo-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.cross-promo-content {
color: #000;
padding: 1.5rem;
display: flex;
flex-direction: column;
justify-content: center;
}
@media (min-width: 992px) {
.cross-promo-content {
padding: 4rem;
}
}
.cross-promo-title {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 2rem;
line-height: 1.2;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.cross-promo-title .highlight {
color: var(--primary);
}
@media (min-width: 768px) {
.cross-promo-title {
font-size: 2.5rem;
}
}
.cross-promo-text {
font-family: 'Lato', sans-serif;
font-size: 1.1rem;
line-height: 1.6;
color: #555;
margin-bottom: 2rem;
}
.promo-link-large {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 1.5rem;
color: #000;
text-decoration: none;
border-bottom: none;
transition: color 0.3s;
display: inline-block;
line-height: 1.2;
white-space: nowrap;
}
.promo-link-large:hover {
color: #222;
text-decoration: underline;
}
@media (min-width: 768px) {
.promo-link-large {
font-size: 2.2rem;
}
}
.contact-page-main {
padding-top: 3rem;
padding-bottom: 5rem;
background-color: #fff;
}
.contact-header-section {
margin-bottom: 4rem;
}
.contact-container {
width: 100%;
max-width: 1600px;
margin: 0 auto;
padding: 0 1rem;
}
@media (min-width: 768px) {
.contact-container {
padding: 0 2.5rem;
}
}
@media (min-width: 992px) {
.contact-container {
padding: 0 5rem;
}
}
@media (min-width: 1440px) {
.contact-container {
padding: 0 9rem;
}
}
.contact-header-section .contact-container {
max-width: 1000px;
}
.text-center {
text-align: center;
}
.page-title {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 2rem;
line-height: 1.15;
text-transform: uppercase;
margin-bottom: 1.5rem;
color: #000;
}
.page-title .highlight {
color: var(--primary);
}
.page-subtitle {
font-family: 'Lato', sans-serif;
font-size: 1.1rem;
color: #666;
line-height: 1.6;
max-width: 900px;
margin: 0 auto;
}
@media (min-width: 1200px) {
.contact-header-section .contact-container {
max-width: 1100px;
}
.page-subtitle {
max-width: 1100px;
}
}
@media (min-width: 768px) {
.page-title {
font-size: 2.5rem;
}
.page-subtitle {
font-size: 1.25rem;
}
}
.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
align-items: start;
}
@media (min-width: 992px) {
.contact-grid {
grid-template-columns: 1fr 1fr;
gap: 5rem;
}
}
.contact-info-column {
display: flex;
flex-direction: column;
gap: 3rem;
}
.contact-item {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.contact-label {
font-family: 'Lato', sans-serif;
font-size: 0.9rem;
text-transform: uppercase;
color: #999;
letter-spacing: 0.1em;
font-weight: 700;
margin-bottom: 0.5rem;
}
.contact-link-large {
font-family: 'Lato', sans-serif;
font-weight: 800;
font-size: 2.5rem;
color: #000;
text-decoration: none;
line-height: 1.1;
transition: color 0.3s ease;
}
.contact-link-large:hover {
color: var(--primary);
}
.contact-sub {
font-family: 'Lato', sans-serif;
font-size: 0.95rem;
color: #555;
margin-top: 0.5rem;
font-weight: 500;
}
.contact-link-medium {
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 1.5rem;
color: #000;
text-decoration: none;
word-break: break-all;
transition: color 0.3s ease;
}
.contact-link-medium:hover {
color: var(--primary);
}
.contact-address {
font-family: 'Lato', sans-serif;
font-size: 1.25rem;
color: #000;
line-height: 1.4;
font-weight: 600;
}
.contact-visual-column {
position: relative;
width: 100%;
}
.map-wrapper {
position: relative;
z-index: 2;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
background: #f0f0f0;
}
.map-wrapper iframe {
display: block;
width: 100%;
height: 280px;
}
.map-wrapper img {
display: block;
width: 100%;
height: auto;
}
.contact-map {
margin-top: 1.5rem;
width: 85%;
max-width: none;
}
.map-shape {
position: absolute;
top: -30px;
right: -30px;
width: 100%;
height: 100%;
background: var(--primary);
border-radius: 12px;
opacity: 0.2;
z-index: 1;
transform: rotate(3deg);
}
@media (min-width: 768px) {
.contact-link-large {
font-size: 3.5rem;
}
.contact-link-medium {
font-size: 1.8rem;
}
}
.contact-form-wrapper {
background: #fff;
padding: 1.5rem;
border-radius: 12px;
border: 1px solid #eee;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
position: relative;
z-index: 2;
font-family: 'Lato', sans-serif;
}
@media (min-width: 992px) {
.contact-form-wrapper {
padding: 2rem;
}
}
.form-title {
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 1.35rem;
text-transform: uppercase;
margin-bottom: 2rem;
color: #000;
}
.honeypot-field {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
overflow: hidden;
}
.form-row {
display: grid;
gap: 1rem;
margin-bottom: 1.2rem;
}
.contact-form .form-row:last-of-type {
margin-bottom: 0;
}
.form-row .form-group {
margin-bottom: 0;
}
.form-actions {
display: flex;
justify-content: flex-start;
margin-top: 0.5rem;
}
.form-group label {
display: block;
font-family: 'Lato', sans-serif;
font-weight: 700;
font-size: 0.95rem;
color: #333;
margin-bottom: 0.5rem;
}
.required {
color: #d32f2f;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
width: 100%;
padding: 0.85rem 1rem;
font-family: 'Lato', sans-serif;
font-size: 1rem;
border: 2px solid #ddd;
border-radius: 6px;
background: #fff;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: #999;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(237, 196, 60, 0.1);
}
.form-group textarea {
resize: none;
min-height: 120px;
}
.form-group.has-error input,
.form-group.has-error textarea {
border-color: #d32f2f;
}
.field-error {
display: block;
color: #d32f2f;
font-size: 0.85rem;
margin-top: 0.25rem;
line-height: 1.3;
font-weight: 500;
text-align: left;
max-height: 0;
opacity: 0;
transform: translateY(-6px);
transition: max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
overflow: hidden;
}
.form-group.has-error .field-error {
max-height: 60px;
opacity: 1;
transform: translateY(0);
}
.btn-submit {
width: auto;
cursor: pointer;
position: relative;
}
.btn-submit:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.btn-loader {
display: none;
}
.btn-submit.loading .btn-text {
display: none;
}
.btn-submit.loading .btn-loader {
display: inline;
}
.form-notice {
font-size: 0.85rem;
color: #666;
margin-top: 1.5rem;
line-height: 1.5;
}
.form-notice a {
color: #000;
text-decoration: none;
font-weight: 600;
}
.form-notice a:hover {
color: #000;
text-decoration: underline;
}
.form-message {
margin-top: 1.5rem;
font-weight: 600;
text-align: left;
}
.form-message.success {
color: #2e7d32;
}
.form-message.error {
color: #c62828;
}
@media (min-width: 768px) {
.form-row--two {
grid-template-columns: 1fr 1fr;
gap: 1.25rem;
}
}
.policy-page-main {
padding-top: 150px;
padding-bottom: 5rem;
min-height: 60vh;
}
.policy-container {
width: 100%;
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
}
@media (min-width: 768px) {
.policy-container {
padding: 0 2.5rem;
}
}
.policy-content {
background-color: #fff;
}
.policy-content h2 {
font-family: 'Lato', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: #000;
margin-top: 2.5rem;
margin-bottom: 1rem;
}
.policy-content h2:first-child {
margin-top: 0;
}
.policy-content p {
font-family: 'Inter', sans-serif;
font-size: 1rem;
line-height: 1.6;
color: #333;
margin-bottom: 1rem;
}
.policy-content ul {
list-style-type: disc;
margin-left: 1.5rem;
margin-bottom: 1.5rem;
padding-left: 1rem;
}
.policy-content li {
font-family: 'Inter', sans-serif;
font-size: 1rem;
line-height: 1.6;
color: #333;
margin-bottom: 0.5rem;
}
.policy-content a {
color: #000;
text-decoration: underline;
font-weight: 500;
transition: color 0.3s ease;
}
.policy-content a:hover {
color: var(--primary);
text-decoration: none;
}
.global-blob {
position: absolute;
width: 45vw;
height: 45vw;
max-width: 600px;
max-height: 600px;
background: linear-gradient(135deg, rgba(237, 196, 60, 0.15) 0%, rgba(237, 196, 60, 0.05) 100%);
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
filter: blur(60px);
pointer-events: none;
z-index: 0;
opacity: 0.6;
animation: blob-float 25s infinite alternate ease-in-out;
}
@keyframes blob-float {
0% {
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
transform: rotate(0deg) scale(1);
}
100% {
border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
transform: rotate(10deg) scale(1.05);
}
}
.blob-top-left {
top: -15%;
left: -10%;
}
.blob-bottom-right {
bottom: -15%;
right: -10%;
}
@media (max-width: 768px) {
.global-blob {
width: 90vw;
height: 90vw;
filter: blur(40px);
}
.blob-top-left {
top: -15%;
left: -35%;
}
.blob-bottom-right {
bottom: -15%;
right: -35%;
}
}
.gallery-section {
padding: 3.5rem 0 5rem;
background: transparent;
}
.gallery-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.gallery-cta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
margin-top: 0.75rem;
flex-wrap: wrap;
}
.gallery-cta-text {
margin: 0;
font-size: 1.4rem;
color: #444;
}
.gallery-cta {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
margin-bottom: 1rem;
}
.gallery-cta-text {
font-family: 'Lato', sans-serif;
font-size: 1.125rem;
color: #666;
line-height: 1.6;
margin: 0;
}
.gallery-cta-actions {
display: flex;
align-items: center;
gap: 1rem;
}
.gallery-social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
color: #000;
transition: transform 0.2s ease, color 0.2s ease;
}
.gallery-social-link svg {
width: 100%;
height: 100%;
display: block;
}
.gallery-social-link:hover {
transform: translateY(-2px);
color: var(--primary);
}
@media (max-width: 992px) {
.gallery-cta-text {
max-width: 100%;
}
.gallery-cta {
flex-direction: column;
text-align: center;
justify-content: center;
}
.gallery-cta-actions {
justify-content: center;
}
}
.gallery-carousel {
--gallery-gap: 0.1rem;
--gallery-items: 3;
margin-top: 1rem;
border-radius: 18px;
overflow: hidden;
background: transparent;
}
.gallery-track {
display: flex;
gap: var(--gallery-gap);
transition: transform 0.2s ease;
will-change: transform;
}
.gallery-slide {
flex: 0 0 calc((100% - (var(--gallery-items) - 1) * var(--gallery-gap)) / var(--gallery-items));
max-width: calc((100% - (var(--gallery-items) - 1) * var(--gallery-gap)) / var(--gallery-items));
}
.gallery-item {
display: block;
width: 100%;
aspect-ratio: 4 / 3;
background: #f0f0f0;
overflow: hidden;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.is-clone .gallery-item {
pointer-events: none;
}
.gallery-controls {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
margin-top: 1.5rem;
}
.gallery-arrow {
background: none;
border: none;
width: 44px;
height: 44px;
color: #1a1a1a;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
}
.gallery-arrow:hover {
color: #1a1a1a;
transform: scale(1.15);
}
.gallery-arrow:active {
color: #1a1a1a;
transform: scale(0.95);
}
.gallery-arrow svg {
display: block;
}
.gallery-indicators {
display: flex;
align-items: center;
gap: 0.08rem;
}
.gallery-indicator {
background: none;
border: none;
padding: 0.3rem;
cursor: pointer;
transition: transform 0.2s ease;
}
.gallery-indicator.active {
transform: scale(1.1);
}
.gallery-indicator svg {
display: block;
}
@media (max-width: 1024px) {
.gallery-carousel {
--gallery-items: 2;
}
}
@media (max-width: 768px) {
.gallery-section {
padding: 3rem 0 4rem;
}
.gallery-section .section-header {
margin-bottom: 1.5rem;
}
.gallery-container {
padding: 0 1rem;
}
.gallery-cta {
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
}
.gallery-cta-actions {
justify-content: center;
}
.gallery-carousel {
--gallery-items: 1;
}
}
@media (max-width: 480px) {
.gallery-controls {
gap: 0.75rem;
}
.gallery-arrow svg {
width: 24px;
height: 24px;
}
}