:root {
  --bg: #f6f2ec;
  --paper: #fffaf3;
  --ink: #171717;
  --muted: #6f675e;
  --line: rgba(23, 23, 23, 0.16);
  --accent: #b56b4a;
  --accent-2: #e9c8a8;
  --accent-3: #263a4f;
  --shadow: 0 28px 70px rgba(23, 23, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(181, 107, 74, 0.16), transparent 25%),
    radial-gradient(circle at 84% 80%, rgba(38, 58, 79, 0.10), transparent 28%),
    linear-gradient(135deg, #f8f3ec 0%, #f5efe7 52%, #f9f6f1 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.card {
  width: min(1160px, 100%);
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 5vw, 64px);
  background: color-mix(in srgb, var(--paper) 91%, white 9%);
  border: 1px solid rgba(23, 23, 23, 0.10);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "#aogallery";
  position: absolute;
  right: clamp(20px, 4vw, 54px);
  bottom: clamp(170px, 15vw, 250px);
  color: rgba(23, 23, 23, 0.04);
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.topline,
.hero-grid,
.location-panel,
.footer-note {
  position: relative;
  z-index: 2;
}

.topline {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.08em;
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 800;
  text-transform: uppercase;
}

.brand-old {
  color: var(--muted);
}

.brand-new {
  color: var(--ink);
}

.brand-link,
.brand-link:visited,
.brand-link:hover,
.brand-link:focus-visible {
  color: inherit;
  text-decoration: none;
}

.brand-new:hover,
.brand-new:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.arrow {
  width: min(112px, 18vw);
  height: 1px;
  background: var(--ink);
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: start;
  padding: clamp(42px, 7vw, 76px) 0 clamp(32px, 5vw, 52px);
}

.copy {
  max-width: 640px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(50px, 7.2vw, 98px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 820;
}

.hero-title-link,
.hero-title-link:visited,
.hero-title-link:hover,
.hero-title-link:focus-visible,
h1 .hero-title-link,
h1 .hero-title-link:visited,
h1 .hero-title-link:hover,
h1 .hero-title-link:focus-visible {
  color: var(--ink) !important;
  text-decoration: none !important;
}

.lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.actions {
  margin-top: 42px;
}

.button,
.text-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: var(--ink);
}

.text-link {
  position: relative;
  padding-bottom: 5px;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.18s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(0.72);
}

.photo-card {
  margin: 0;
  align-self: start;
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  box-shadow: 0 18px 45px rgba(23, 23, 23, 0.08);
  background: var(--accent-2);
  overflow: hidden;
}

.photo-card::before,
.photo-card::after {
  content: none;
  display: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 38px) 0;
  border-top: 1px solid var(--line);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.location-copy p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
}

.map-card {
  min-height: 250px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  overflow: hidden;
  background: #eee8df;
  box-shadow: 0 18px 45px rgba(23, 23, 23, 0.06);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  border: 0;
  filter: saturate(0.75) contrast(0.95);
}

.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 920px) {
  .page {
    padding: 16px;
  }

  .topline,
  .footer-note,
  .actions,
  .location-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .photo-card {
    order: -1;
    margin-top: 0;
  }

  .photo-card,
  .photo-card img {
    min-height: 260px;
  }

  .map-card,
  .map-card iframe {
    min-height: 220px;
  }

  .card::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .card {
    padding: 24px;
  }

  .brand {
    font-size: 12px;
  }

  .arrow {
    width: 54px;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
  }
}
