:root {
  --color-bg: #fff;
  --color-text: #000;
  --font-body: Inter, system-ui, sans-serif;
}
* {
  border: 0;
  box-sizing: border-box;
  line-height: 1;
  margin: 0;
  padding: 0;
}
html {
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 62.5%;
}
body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-size-adjust: 0.5;
  min-width: 320px;
}

.site-shell {
  max-width: 76.8rem;
  margin-inline: auto;
  padding: 3.2rem 2rem 6.4rem;
  overflow-wrap: anywhere;
}
a, span, strong, em, time, code, br { line-height: inherit; }
.site-brand, .site-nav a, .language-nav, .site-footer,
.email, .contact-link, .contact-name, .business-details dd,
.post-details, .post-meta, .author-label, .author-box a,
.cookie-table caption {
  line-height: 1.6;
}
.blog-title { margin-block: 0.67em; }
.post-body p, .post-body li { line-height: 1.8; }
.policy li { line-height: 1.75; }
.policy address { line-height: 1.6; }

.site-header {
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  padding-bottom: 2.4rem;
  margin-bottom: 4.8rem;
  border-bottom: 1px solid #e5e5e5;
}
.site-brand {
  -webkit-tap-highlight-color: transparent;
  gap: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 2rem;
  font-weight: 750;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.site-logo {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  margin-inline-end: 1.2rem;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.4rem;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #525252;
}
.site-nav a { text-underline-offset: 0.4em; }
.site-nav a:hover { color: #171717; text-decoration: underline; }
.site-nav a[aria-current] {
  color: #171717;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.site-header a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}
a { color: inherit; }
h1, h2 { line-height: 1.2; }
h1 { font-size: clamp(3.2rem, 6vw, 4.8rem); }
h2 { font-size: 2.4rem; }
.meta { color: #555; }
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  margin-top: 6.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid #e5e5e5;
  color: #666;
  font-size: 1.4rem;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  text-underline-offset: 0.2em;
}
.site-footer a:hover { color: #171717; text-decoration: underline; }
.site-footer a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}
.language-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: #666;
}
.language-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 0.4rem;
  text-decoration: none;
  text-underline-offset: 0.2em;
}
.language-nav a[aria-current] { color: #171717; font-weight: 700; }
.language-nav a:hover { color: #171717; text-decoration: underline; }
.menu-toggle {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.header-menu { display: contents; }
@media (max-width: 700px) {
  .site-header {
    position: relative;
    z-index: 20;
    gap: 1.6rem;
    margin-bottom: 3.2rem;
  }
  .site-header[data-menu-ready] .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #171717;
    cursor: pointer;
    touch-action: manipulation;
  }
  .menu-toggle:focus-visible {
    outline: 2px solid #171717;
    outline-offset: 4px;
  }
  .header-menu {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-basis: 100%;
    min-width: 0;
  }
  .site-header[data-menu-ready] .header-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    max-height: calc(100dvh - 13rem);
    overflow-y: auto;
    padding: 1.2rem;
    border: 1px solid #e5e5e5;
    border-radius: 1.4rem;
    background: #fff;
    box-shadow: 0 1.2rem 3.2rem rgb(0 0 0 / 12%);
  }
  .site-header .menu-toggle[aria-expanded='true'] + .header-menu {
    display: flex;
  }
  .header-menu .site-nav { flex-direction: column; }
  .header-menu .site-nav a { justify-content: flex-start; }
  .header-menu .language-nav {
    justify-content: flex-end;
    padding: 0 0.8rem;
  }
}

.home { padding: 0 0 2.4rem; }
.hero {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  min-height: clamp(32rem, 48vw, 44rem);
  padding: 4rem 2.4rem;
  overflow: hidden;
  border-radius: 1.6rem;
  background: #171717;
  text-align: center;
}
.hero .hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 68%)
  );
}
.home h1 {
  max-width: 20ch;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-wrap: balance;
}
.home-contact {
  margin-top: 3.2rem;
  padding: 2.8rem;
  border: 1px solid #e5e5e5;
  border-radius: 1.6rem;
  background: #fafafa;
}
.home-contact h2 {
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.8rem;
}
.contact-column + .contact-column {
  padding-left: 2.8rem;
  border-left: 1px solid #e5e5e5;
}
.contact-label, .business-details dt {
  margin: 0 0 0.5rem;
  color: #666;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.email, .contact-link, .contact-name {
  display: inline-block;
  max-width: 100%;
  margin: 0;
  color: #171717;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
}
.email:hover, .contact-link:hover { text-decoration: underline; }
.email:focus-visible, .contact-link:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}
.home address {
  margin-top: 2.4rem;
  color: #555;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.8;
}
.home address strong { color: #333; font-weight: 600; }
.business-details { margin: 0; }
.business-details div + div { margin-top: 1.6rem; }
.business-details dd {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
@media (max-width: 600px) {
  .home-contact { padding: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .contact-column + .contact-column {
    padding: 2.4rem 0 0;
    border-left: 0;
    border-top: 1px solid #e5e5e5;
  }
}

.post-heading {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #e5e5e5;
}
.post-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  margin: 0 0 2rem;
  color: #666;
  font-size: 1.4rem;
}
.post-category {
  padding: 0.3rem 1rem;
  border-radius: 0.6rem;
  background: #f3f3f3;
  color: #444;
  font-weight: 600;
}
.post-details time { font-variant-numeric: tabular-nums; }
.post-heading h1 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.post-body {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.8;
}
.post-body p { margin: 0 0 2.4rem; }
.post-body > p:first-child {
  font-size: 2rem;
  line-height: 1.7;
  color: #444;
}
.post-body h2,
.post-body h3,
.post-body h4 {
  margin: 4rem 0 1.6rem;
  color: #171717;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.post-body h2 { font-size: 2.8rem; }
.post-body h3 { font-size: 2.3rem; }
.post-body h4 { font-size: 2rem; }
.post-body a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.post-body a:hover { text-decoration-thickness: 2px; }
.post-body a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}
.post-body ul, .post-body ol {
  margin: 0 0 2.4rem;
  padding-left: 2.8rem;
}
.post-body li { margin: 0.6rem 0; }
.post-body blockquote {
  margin: 3.2rem 0;
  padding: 0.4rem 0 0.4rem 2rem;
  border-left: 3px solid #d4d4d4;
  color: #555;
}
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body code {
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  background: #f3f3f3;
  font-size: 0.9em;
}
.post-body pre {
  margin: 2.4rem 0;
  padding: 2rem;
  overflow-x: auto;
  border-radius: 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
.post-body pre code {
  padding: 0;
  background: transparent;
  font-size: inherit;
}
.post-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.4rem 0;
  border-radius: 0.8rem;
}
.post-body hr {
  margin: 3.2rem 0;
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 480px) {
  .post-heading { padding-bottom: 2.4rem; margin-bottom: 2.4rem; }
  .post-body { font-size: 1.7rem; }
  .post-body > p:first-child { font-size: 1.9rem; }
}

.author-box {
  margin-top: 4.8rem;
  padding: 2.4rem;
  border: 1px solid #e5e5e5;
  border-radius: 1.2rem;
  background: #fafafa;
}
.author-label {
  margin: 0 0 0.8rem;
  color: #666;
  font-size: 1.4rem;
}
.author-box h2 { margin: 0 0 1rem; font-size: 2rem; }
.author-bio { margin: 0 0 1.6rem; color: #555; line-height: 1.7; }
.author-box a { text-underline-offset: 0.2em; }
.author-box a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}

.policy h1 {
  margin: 0 0 2.4rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.policy h2 {
  margin: 3.2rem 0 1.2rem;
  font-size: 2.3rem;
  letter-spacing: -0.02em;
}
.policy p, .policy ul { margin: 0 0 2rem; line-height: 1.75; }
.policy ul { padding-left: 2.4rem; }
.policy li { margin: 0.6rem 0; }
.policy address { margin-bottom: 2rem; font-style: normal; }
.policy a { text-underline-offset: 0.2em; }
.policy a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}
.policy .intro { color: #555; font-size: 1.8rem; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.4rem 0;
  table-layout: fixed;
  font-size: 1.5rem;
}
.cookie-table caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.cookie-table th, .cookie-table td {
  padding: 1.4rem 1.2rem;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.cookie-table thead { background: #f5f5f5; }
.cookie-table th:first-child { width: 25%; }
.cookie-table th:nth-child(2) { width: 25%; }
.cookie-table code { font-size: 1.3rem; }
@media (max-width: 480px) {
  .cookie-table th, .cookie-table td { padding: 1rem 0.6rem; }
  .cookie-table { font-size: 1.4rem; }
}

.posts {
  margin: 3.2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e5e5e5;
}
.posts li {
  margin: 0;
  padding: 3.2rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  margin: 0 0 1.4rem;
  font-size: 1.4rem;
  color: #666;
}
.post-category {
  padding: 0.3rem 1rem;
  border-radius: 0.6rem;
  background: #f3f3f3;
  color: #444;
  font-weight: 600;
}
.post-meta time { font-variant-numeric: tabular-nums; }
.posts h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.post-link {
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.post-link:hover { text-decoration: underline; }
.post-link:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 5px;
  border-radius: 2px;
}
.post-excerpt {
  max-width: 62ch;
  margin: 0;
  color: #555;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .posts { margin-top: 2.4rem; }
  .posts li { padding: 2.4rem 0; }
}

.menu-bars {
  position: relative;
  display: block;
  width: 16px;
  height: 14px;
}
.menu-bars span {
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}
.menu-bars span:nth-child(1) { top: 0; }
.menu-bars span:nth-child(2) { top: 6px; }
.menu-bars .menu-bottom {
  top: 12px;
  width: 10px;
  transition: width 180ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu-toggle:hover .menu-bottom { width: 16px; }
}
.menu-toggle[aria-expanded='true'] .menu-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded='true'] .menu-bars span:nth-child(2) {
  top: 6px;
  transform: rotate(-45deg);
}
.menu-toggle[aria-expanded='true'] .menu-bottom { display: none; }
@media (prefers-reduced-motion: reduce) {
  .menu-bars .menu-bottom { transition: none; }
}

.contact-social { margin-top: 1.6rem; }

.error-page { padding-block: 3.2rem; }
.error-page .error-code {
  margin-bottom: 1.2rem;
  color: #666;
  font-size: 1.4rem;
  font-weight: 600;
}
.error-page h1 { margin-bottom: 2.4rem; }
.error-page p { margin-bottom: 2.4rem; line-height: 1.7; }
.error-page a { line-height: 1.6; text-underline-offset: 0.2em; }
.error-page a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 4px;
}

.consent[hidden] { display: none; }
.consent {
  -webkit-user-select: none;
  user-select: none;
  position: fixed;
  z-index: 100;
  right: 2rem;
  bottom: 2rem;
  width: min(44rem, calc(100% - 4rem));
  max-height: calc(100dvh - 4rem);
  overflow-y: auto;
  padding: 2.4rem;
  border: 1px solid #d4d4d4;
  border-radius: 1.4rem;
  background: #fff;
  color: #171717;
  box-shadow: 0 1rem 4rem rgb(0 0 0 / 18%);
}
.consent-title { margin: 0 0 1.2rem; font-size: 2.2rem; }
.consent-title:focus { outline: none; }
.consent-copy {
  margin: 0 0 1.6rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
.consent-copy span, .consent-copy a { line-height: inherit; }
.consent-copy a { text-underline-offset: 0.2em; }
.consent-fields fieldset {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.consent-fields input {
  appearance: auto;
  width: 2rem;
  height: 2rem;
  accent-color: #171717;
}
.consent-fields label { line-height: 1.6; cursor: pointer; }
.consent-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.consent-buttons input {
  flex: 1 1 10rem;
  min-height: 44px;
  padding: 1rem 1.2rem;
  border: 1px solid #737373;
  border-radius: 0.6rem;
  background: #fff;
  color: #171717;
  font: inherit;
  font-size: 1.4rem;
  line-height: 1.4;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.consent-buttons input:hover { background: #f5f5f5; }
.consent input:focus-visible, .consent a:focus-visible {
  outline: 2px solid #171717;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links { justify-content: center; }
}

.no-script-nav { display: none; }
@media (max-width: 700px) {
  .site-header:has(.no-script-nav) .menu-toggle { display: none; }
  .site-header noscript { flex-basis: 100%; }
  .no-script-nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
  .no-script-nav a { line-height: 1.6; padding-block: 1rem; }
}
