:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #676767;
  --paper: #ffffff;
  --soft: #f4f4f1;
  --line: #d9d9d4;
  --accent: #e74c3c;
  --accent-dark: #c93629;
  --radius: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: 0.4rem;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 46%, rgba(255,255,255,0.78) 100%),
    url("assets/header.jpg") center / cover fixed;
}

.site-header,
.hero,
.site-footer {
  width: min(100% - 3rem, 1180px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 7rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.brand-mark img {
  width: 3.65rem;
  height: auto;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.address {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 12.5rem);
  padding-block: clamp(3.5rem, 8vh, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.7rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 2px;
  content: "";
  background: var(--accent);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 5vw, 5.15rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.headline-line,
.domain-name {
  display: block;
  white-space: nowrap;
}

.domain-name {
  color: var(--accent);
  font-size: 0.92em;
  font-weight: inherit;
  letter-spacing: -0.065em;
}

.lead {
  max-width: 35rem;
  margin: 2rem 0 2.25rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  min-height: 3.75rem;
  padding: 0.9rem 1rem 0.9rem 1.35rem;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.primary-link .arrow {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
  font-size: 1.15rem;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.primary-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.primary-link:hover .arrow {
  color: #fff;
  background: rgba(23, 23, 23, 0.92);
  transform: translateX(2px);
}

.primary-link:focus-visible,
.brand:focus-visible,
.visual:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.visual {
  position: relative;
  display: block;
  min-height: min(62vh, 39rem);
  color: #fff;
  text-decoration: none;
}

.color-field {
  position: absolute;
  inset: 2.25rem 0 1rem 12%;
  overflow: hidden;
  background: url("assets/header.jpg") center / cover;
  border-radius: var(--radius);
  box-shadow: 0 2.5rem 5rem rgba(38, 50, 31, 0.15);
}

.color-field::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255,255,255,0.18);
  backdrop-filter: saturate(0.82);
}

.photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #222;
  border: 0.45rem solid #fff;
  border-radius: calc(var(--radius) * 0.85);
  box-shadow: 0 1.8rem 3.5rem rgba(0,0,0,0.2);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.photo-main {
  z-index: 1;
  top: 0;
  right: 5%;
  width: 72%;
  height: 74%;
  transform: rotate(1.7deg);
}

.photo-detail {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 44%;
  height: 43%;
  transform: rotate(-3.2deg);
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 2.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.12);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visual:hover .photo-main img {
  transform: scale(1.035);
}

.visual:hover .visual-caption {
  color: var(--accent-dark);
}

.site-footer {
  padding-block: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-meta {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  font-size: 0.76rem;
}

.footer-meta strong {
  color: var(--ink);
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.site-footer a {
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.site-footer a:hover {
  color: var(--accent-dark);
}

@media (max-width: 1060px) {
  .page-shell {
    background: #fff;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3.25rem;
    padding-block: 4.5rem 3.5rem;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .visual {
    min-height: 34rem;
    width: min(100%, 42rem);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .site-footer {
    width: min(100% - 2rem, 1180px);
  }

  .site-header {
    min-height: 5.75rem;
  }

  .brand-mark {
    width: 3.45rem;
    height: 3.45rem;
  }

  .brand-mark img {
    width: 3rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .address {
    display: none;
  }

  .hero {
    gap: 2.5rem;
    min-height: 0;
    padding-block: 3.2rem 2.75rem;
  }

  .eyebrow {
    margin-bottom: 1.25rem;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.3rem, 11.5vw, 3.6rem);
  }

  .domain-name {
    font-size: 0.9em;
  }

  .lead {
    margin-block: 1.5rem 1.8rem;
  }

  .primary-link {
    width: 100%;
    gap: 0.8rem;
    padding: 0.8rem 0.75rem 0.8rem 1.05rem;
    font-size: 0.94rem;
  }

  .visual {
    min-height: 25rem;
  }

  .color-field {
    inset: 1.75rem 0 0.5rem 8%;
  }

  .photo-main {
    right: 2%;
    width: 80%;
    height: 71%;
  }

  .photo-detail {
    width: 50%;
    height: 40%;
  }

  .visual-caption {
    right: 0.5rem;
    bottom: 1.25rem;
    font-size: 0.7rem;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .footer-meta {
    gap: 0.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
