    :root {
      --bg-color: #050505;
      --card-bg: #111111;
      --border-color: #333333;
      --accent: #72c2ff;
      --text-main: #f5f5f5;
      --text-muted: #72c2ff;
      --link: #72c2ff;

  --banner-width: 400px;   /* keep the banner size exactly */
  --gap: 12px;             /* space between banner and content (ARC-like) */
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  min-height: 100vh;
  background: radial-gradient(circle at top, #111 0, #050505 45%, #000 100%);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  padding: 2rem 1rem 2rem calc(var(--banner-width) + var(--gap));
}

/* LEFT BANNER */
.left-banner{
  position: fixed;
  left: 0;
  top: 0;
  width: var(--banner-width);
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}
.left-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills the whole left column */
  display: block;
}

/* PAGE WIDTH */
.page{
  width: 100%;
  max-width: 1100px;
}

/* MOBILE */
@media (max-width: 900px){
  .left-banner{ display:none; }
  body{ padding: 1.5rem; }
}

/* SIDEBAR (match ARC) */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 260px;
  flex-shrink: 0;
}

.sidebar-card {
  background: var(--card-bg, #111111);
  border: 1px solid var(--border-color, #333333);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.sidebar-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.sidebar-card ul {
  list-style: none;
  padding-left: 0;
}

.sidebar-card li + li {
  margin-top: 0.4rem;
}

.sidebar a {
  color: var(--link);
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* Make images and embeds scale down */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent random overflow on small screens */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* --- PHOTO GRID WITH CAPTIONS --- */
.photos{
  column-count: 2;
  column-gap: 20px;
  margin-top: 20px;
}

.photo{
  break-inside: avoid;
  margin: 0 0 20px;
}

.photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 2px solid var(--accent);
}
.photo figcaption{
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--accent);
  line-height: 1.3;
  text-align: center;
}

/* --- PHOTO MASONRY (2 columns, variable heights) --- */
.photos{
  column-count: 2;
  column-gap: 20px;
  margin-top: 20px;
}

.photo{
  break-inside: avoid;
  margin: 0 0 20px;
}

.photo img{
  width: 100%;
  height: auto;         /* keeps natural heights */
  display: block;
  border-radius: 8px;
  border: 2px solid var(--accent);
}

.photo figcaption{
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--accent);
  line-height: 1.3;
  text-align: center;
}

/* Mobile: 1 column */
@media (max-width: 900px){
  .photos{ column-count: 1; }
}
.content{
  max-width: 1100px;
  margin: 0 auto;
}
.prt-option {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid #333842;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #72c2ff;
  cursor: pointer;
  flex-shrink: 0;
}

.prt-extra-fields {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333842;
}

.prt-extra-fields.show {
  display: block;
}

.prt-description {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.prt-description p {
  margin-bottom: 1rem;
}

.prt-description ul {
  margin: 0.75rem 0 1rem 1.25rem;
  padding-left: 1rem;
}

.prt-description li {
  margin-bottom: 0.5rem;
}

.prt-extra-fields .field-group {
  margin-top: 1rem;
}

.prt-extra-fields label {
  display: block;
  margin-bottom: 0.5rem;
}

.prt-extra-fields input {
  width: 100%;
}

/* longer submit button */
.btn-primary {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 1rem auto 0;
}
.layout{
  width: 100%;
  max-width: 1380px;
  margin: 32px auto 48px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.wrap{
  flex: 1;
  min-width: 0;
}
.layout{
  width: 100%;
  max-width: 1380px;
  margin: 32px auto 48px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.wrap{
  flex: 1;
  min-width: 0;
}

@media (max-width: 900px){
  .layout{
    display: block;
  }

  .sidebar{
    width: 100%;
    margin-top: 24px;
  }
}
