341 lines
5.8 KiB
CSS
341 lines
5.8 KiB
CSS
:root {
|
|
/* Mediterranean palette */
|
|
--color-sea-deep: #0d4f6e;
|
|
--color-sea-mid: #1a7a9e;
|
|
--color-sea-light: #e8f4f8;
|
|
--color-sand: #f5f1eb;
|
|
--color-terracotta: #c4725a;
|
|
|
|
--color-white: #ffffff;
|
|
--color-gray-100: #f7f7f7;
|
|
--color-gray-200: #e5e5e5;
|
|
--color-gray-500: #6b7280;
|
|
--color-gray-700: #374151;
|
|
--color-gray-900: #111827;
|
|
|
|
--font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
|
|
--space-xs: 0.5rem;
|
|
--space-sm: 1rem;
|
|
--space-md: 1.5rem;
|
|
--space-lg: 2.5rem;
|
|
--space-xl: 4rem;
|
|
|
|
--transition-fast: 150ms ease;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
@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: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-sans);
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
color: var(--color-gray-700);
|
|
background-color: var(--color-white);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
/* Skip Link */
|
|
.skip-link {
|
|
position: absolute;
|
|
top: -100%;
|
|
left: var(--space-sm);
|
|
padding: var(--space-xs) var(--space-sm);
|
|
background: var(--color-sea-deep);
|
|
color: var(--color-white);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
border-radius: 4px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.skip-link:focus {
|
|
top: var(--space-sm);
|
|
}
|
|
|
|
/* Layout */
|
|
.page {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 720px;
|
|
margin-inline: auto;
|
|
padding-inline: var(--space-md);
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
background: var(--color-sea-deep);
|
|
color: var(--color-white);
|
|
padding: var(--space-lg) var(--space-md);
|
|
}
|
|
|
|
.header-inner {
|
|
max-width: 720px;
|
|
margin-inline: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.logo-mark {
|
|
width: 56px;
|
|
height: 56px;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.75rem;
|
|
font-weight: 600;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.company-name {
|
|
font-size: clamp(1.5rem, 4vw, 2rem);
|
|
font-weight: 600;
|
|
letter-spacing: -0.01em;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.company-location {
|
|
font-size: 0.9375rem;
|
|
opacity: 0.8;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
/* Hero */
|
|
.hero {
|
|
position: relative;
|
|
width: 100%;
|
|
aspect-ratio: 2.4 / 1;
|
|
max-height: 340px;
|
|
overflow: hidden;
|
|
background: var(--color-sea-light);
|
|
}
|
|
|
|
.hero-image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.hero-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
/* Sections */
|
|
.section {
|
|
padding: var(--space-xl) 0;
|
|
}
|
|
|
|
.section--about {
|
|
background: var(--color-sand);
|
|
}
|
|
|
|
.section--contact {
|
|
background: var(--color-white);
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--color-gray-900);
|
|
margin-bottom: var(--space-md);
|
|
position: relative;
|
|
padding-inline-start: var(--space-sm);
|
|
}
|
|
|
|
.section-title::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset-inline-start: 0;
|
|
top: 0.125em;
|
|
bottom: 0.125em;
|
|
width: 3px;
|
|
background: var(--color-terracotta);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* About */
|
|
.about-text {
|
|
font-size: 1rem;
|
|
line-height: 1.75;
|
|
color: var(--color-gray-700);
|
|
max-width: 60ch;
|
|
margin-bottom: var(--space-sm);
|
|
}
|
|
|
|
.about-text:last-child {
|
|
margin-bottom: 0;
|
|
color: var(--color-gray-500);
|
|
font-size: 0.9375rem;
|
|
}
|
|
|
|
/* Contact */
|
|
.contact-layout {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
@media (min-width: 540px) {
|
|
.contact-layout {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--space-lg);
|
|
}
|
|
|
|
.contact-item--tax {
|
|
grid-column: 1 / -1;
|
|
}
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.contact-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
color: var(--color-sea-mid);
|
|
flex-shrink: 0;
|
|
margin-top: 0.125rem;
|
|
}
|
|
|
|
.contact-icon svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.contact-label {
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
color: var(--color-gray-500);
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.contact-label span {
|
|
font-weight: 400;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.contact-value {
|
|
font-size: 1rem;
|
|
color: var(--color-gray-900);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.contact-value--mono {
|
|
font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
|
|
font-size: 0.9375rem;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
address.contact-value {
|
|
font-style: normal;
|
|
}
|
|
|
|
.contact-link {
|
|
color: var(--color-sea-deep);
|
|
text-decoration: none;
|
|
transition: color var(--transition-fast);
|
|
}
|
|
|
|
.contact-link:hover {
|
|
color: var(--color-sea-mid);
|
|
text-decoration: underline;
|
|
text-underline-offset: 2px;
|
|
}
|
|
|
|
.contact-link:focus-visible {
|
|
outline: 2px solid var(--color-sea-mid);
|
|
outline-offset: 2px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
margin-top: auto;
|
|
background: var(--color-gray-900);
|
|
color: var(--color-gray-200);
|
|
padding: var(--space-lg) var(--space-md);
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-text {
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.footer-legal {
|
|
font-size: 0.8125rem;
|
|
opacity: 0.6;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
/* Focus Styles */
|
|
a:focus-visible {
|
|
outline: 2px solid var(--color-sea-mid);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Print */
|
|
@media print {
|
|
.hero {
|
|
display: none;
|
|
}
|
|
|
|
.header {
|
|
background: none;
|
|
color: var(--color-gray-900);
|
|
border-bottom: 2px solid currentColor;
|
|
}
|
|
|
|
.logo-mark {
|
|
background: var(--color-gray-200);
|
|
}
|
|
|
|
.section {
|
|
background: none !important;
|
|
padding: var(--space-md) 0;
|
|
}
|
|
|
|
.footer {
|
|
background: none;
|
|
color: var(--color-gray-700);
|
|
border-top: 1px solid var(--color-gray-200);
|
|
}
|
|
} |