:root {
  --background: #1a1a1a;
  --foreground: #f0f0f0;
  --accent: #9ca3af;
  --muted: #a1a1aa;
  --surface: #2a2a2a;
  --border: #3a3a3a;
  --max-width: 68rem;
  --transition: 150ms ease;
  font-size: 100%;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 1.25rem;
  gap: 1rem;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 1.5rem;
  width: auto;
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  width: 100%;
}

.main-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.main-nav .breadcrumb {
  color: var(--muted);
}

.hero {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
}

.hero-content {
  display: flex;
  gap: 1.5rem;
  max-width: var(--max-width);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-content > div {
  flex: 1 1 12rem;
  text-align: center;
  order: 0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: transform var(--transition), background-color var(--transition);
  overflow: hidden;
}

.hero-content > div:nth-child(2) {
  flex: 2 1 20rem;
}

.hero-content > div:nth-child(1),
.hero-content > div:nth-child(3) {
  flex: 0.8 1 10rem;
}

.hero-content > div:nth-child(1) {
  text-align: left;
}

.hero-content > div:nth-child(3) {
  text-align: right;
}

.hero-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto;
  border-radius: 0.5rem;
  object-fit: cover;
  object-position: 60% center;
}

.hero-content > div:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-item h1 {
  margin-bottom: 0.75rem;
}

.hero-item p {
  margin-top: 0.75rem;
  font-size: 0.475rem;
  color: var(--muted);
}

.hero-item p strong {
  color: var(--foreground);
}

.hero-content > div:nth-child(1) {
  order: 1;
}

.hero-content > div:nth-child(2) {
  order: 2;
}

.hero-content > div:nth-child(3) {
  order: 3;
}

@media (max-aspect-ratio: 1/1) {
  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .hero-content > div {
    flex: none;
    width: 100%;
  }

  .hero-content > div:nth-child(1) {
    order: 2;
  }

  .hero-content > div:nth-child(2) {
    order: 1;
  }

  .hero-content > div:nth-child(3) {
    order: 3;
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.hero p strong {
  color: var(--foreground);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--foreground);
  color: var(--foreground);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  background-color: var(--foreground);
  color: var(--surface);
}

.section {
  padding-block: clamp(3.5rem, 10vw, 5rem);
  background: var(--background);
}

.section:nth-of-type(even) {
  background: var(--surface);
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-top: 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section h2 img {
  height: 1.2em;
  width: auto;
  display: block;
}

.section p {
  margin: 0 0 1rem 0;
  color: var(--muted);
  max-width: 46rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.impressions-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin-top: 2rem;
}

.impressions article {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background-color: var(--surface);
  display: grid;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  align-content: end;
}

.impressions article {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.impressions article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.impressions article > * {
  position: relative;
  z-index: 1;
}

.impressions article h3,
.impressions article p {
  color: var(--foreground);
}

.impressions article:hover,
.impressions article:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.impressions h3 {
  margin: 0;
  margin-top: 0;
  font-size: 1.25rem;
  align-self: start;
}

.impressions article p {
  margin: 0;
  margin-top: 0;
}

.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin-top: 2rem;
}

.gallery-header {
	padding-top: 0.75em;
	padding-bottom: 0;
}

.gallery article {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background-color: var(--surface);
  display: grid;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  align-content: end;
}

.gallery article {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.gallery article > * {
  position: relative;
  z-index: 1;
}

.gallery article h3,
.gallery article p {
  color: var(--foreground);
}

.gallery article:hover,
.gallery article:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery h3 {
  margin: 0;
  margin-top: 0;
  font-size: 1.25rem;
  align-self: start;
}

.gallery article p {
  margin: 0;
  margin-top: 0;
}

.contact-inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.contact-inner .button {
  margin-top: 1.5rem;
}

address {
  font-style: normal;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer img {
  height: 1em;
  width: auto;
  vertical-align: middle;
  margin-top: -0.15em;
  display: inline-block;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
}



.site-footer img {
  height: 1em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}


@media (max-width: 720px) {

  .header-inner {

    flex-direction: column;

    align-items: flex-start;

  }



  .main-nav ul {

    flex-wrap: wrap;

    gap: 0.75rem 1.5rem;

  }

}




