/* sessions.css — page-specific layout for sessions.html */

/* ─── Hero ─── */
.ses-hero {
  padding: 96px 44px 72px;
  border-bottom: 1px solid var(--line);
  max-width: 1300px;
  margin: 0 auto;
}
.ses-hero .k { margin-bottom: 18px; display: block; }
.ses-hero h1 {
  font-family: var(--sans);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 32px;
}
.ses-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg-2);
  font-weight: 400;
}
.ses-hero p {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 640px;
  margin: 0;
}
@media (max-width: 768px) {
  .ses-hero { padding: 64px 20px 48px; }
}

/* ─── Overview 4-up grid ─── */
.ses-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.ses-overview-card {
  background: var(--bg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 180px;
  transition: background var(--dur-fast);
}
.ses-overview-card:hover { background: var(--bg-2); }
.ses-overview-card .k { color: var(--fg-3); }
.ses-overview-card-title {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.ses-overview-card-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: auto;
}
.ses-overview-card-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  font-family: var(--mono);
  color: var(--accent);
  font-size: 16px;
}
@media (max-width: 900px) {
  .ses-overview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ses-overview { grid-template-columns: 1fr; }
}

/* ─── Vertical section ─── */
.ses-section {
  padding: 72px 44px 88px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 80px;
}
.ses-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.ses-section-copy h2 {
  font-family: var(--sans);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 14px 0 24px;
  line-height: 1.05;
}
.ses-section-copy h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg-2);
  font-weight: 400;
}
.ses-section-copy p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 24px;
  max-width: 540px;
}
.ses-included {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.ses-included li {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
  line-height: 1.5;
}
.ses-included li:last-child { border-bottom: none; }
.ses-included li::before {
  content: "✓";
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  flex-shrink: 0;
}
.ses-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}

/* Sub-category breakout (Commercial section) */
.ses-subcat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin: 24px 0 8px;
  border: 1px solid var(--line);
}
.ses-subcat {
  background: var(--bg);
  padding: 18px 20px;
}
.ses-subcat h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.ses-subcat p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 600px) {
  .ses-subcat-grid { grid-template-columns: 1fr; }
}
.ses-section-cta { margin-top: 36px; }
.ses-section-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.ses-section-photos .photo-slot {
  aspect-ratio: 3 / 2;
}
@media (max-width: 900px) {
  .ses-section { padding: 56px 20px 64px; }
  .ses-section-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── Also offered ─── */
.ses-also {
  padding: 64px 44px;
  border-bottom: 1px solid var(--line);
  max-width: 1200px;
  margin: 0 auto;
}
.ses-also-header h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
  line-height: 1.05;
}
.ses-also-header h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg-2);
  font-weight: 400;
}
.ses-also-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
}
.ses-also-card h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.ses-also-card p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 720px) {
  .ses-also { padding: 48px 20px; }
  .ses-also-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── FAQ ─── */
.ses-faq {
  padding: 64px 44px 80px;
  border-bottom: 1px solid var(--line);
  max-width: 960px;
  margin: 0 auto;
}
.ses-faq-header h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 12px 0 36px;
  line-height: 1.05;
}
.ses-faq-header h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg-2);
  font-weight: 400;
}
.ses-faq .faq-item {
  border-bottom: 1px solid var(--line);
}
.ses-faq .faq-item:last-child { border-bottom: none; }
.ses-faq .faq-q {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 18px;
  padding: 24px 0;
  align-items: flex-start;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: inherit;
  font: inherit;
  user-select: none;
  -webkit-user-select: none;
}
.ses-faq .faq-idx {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: .2em;
  padding-top: 5px;
}
.ses-faq .faq-item.open .faq-idx { color: var(--accent); }
.ses-faq .faq-q h3 {
  font-family: var(--sans);
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 500;
  line-height: 1.25;
}
.ses-faq .faq-q h3 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg-2);
  font-weight: 400;
}
.ses-faq .faq-toggle {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
  text-align: right;
  padding-top: 2px;
  line-height: 1;
}
.ses-faq .faq-toggle::after { content: "+"; }
.ses-faq .faq-item.open .faq-toggle::after { content: "−"; }
.ses-faq .faq-a {
  display: none;
  padding: 0 0 24px calc(48px + 18px);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 720px;
}
.ses-faq .faq-item.open .faq-a { display: block; }
@media (max-width: 720px) {
  .ses-faq { padding: 48px 20px 64px; }
  .ses-faq .faq-a { padding-left: 0; }
}

/* ─── Closer CTA ─── */
.ses-closer {
  padding: 88px 44px 96px;
  text-align: center;
}
.ses-closer h2 {
  font-family: var(--sans);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  line-height: 1.05;
}
.ses-closer h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg-2);
  font-weight: 400;
}
.ses-closer p {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .ses-closer { padding: 56px 20px 72px; }
}
