/* =========================================================
   Variables & Reset
   ========================================================= */
:root {
  --bg:         #0d1117;
  --surface:    #161b22;
  --border:     #21262d;
  --border-h:   #30363d;
  --text:       #e6edf3;
  --text-muted: #7d8590;
  --accent:     #a3e635;
  --accent-h:   #c2f04e;
  --accent-dim: rgba(163, 230, 53, 0.12);
  --nav-h:      68px;
  --ease:       0.28s ease;
  --font:       'Space Grotesk', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* =========================================================
   Layout utilities
   ========================================================= */
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.section      { padding: 96px 0; }
.section--alt { background: var(--surface); }

/* Section headers – centered block */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Lines flanking the label in centred section-header */
.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background var(--ease), border-color var(--ease), backdrop-filter var(--ease);
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
}

/* Lime dot accent on logo */
.nav-logo::after {
  content: '.';
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > a,
.dropdown-trigger {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
  background: none;
  border: none;
  padding: 0;
  position: relative;
}

.nav-links > a::after,
.dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}

.nav-links > a:hover,
.dropdown-trigger:hover { color: var(--text); }
.nav-links > a:hover::after,
.dropdown-trigger:hover::after { width: 100%; }

.arrow { font-size: 9px; margin-left: 2px; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 164px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease), background var(--ease);
}

.dropdown-menu a:hover {
  background: var(--border);
  color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Atmospheric default when no image is set */
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 25% 75%, rgba(163, 230, 53, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(163, 230, 53, 0.04) 0%, transparent 45%);
  overflow: hidden;
}

.hero--image {
  background-size: cover;
  background-position: center;
  /* Override gradient when image is set */
  background-image: none;
}

/* Reapply just the dim overlay when image is present */
.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Dynamic inline style handles the bg-image; this just sits in front */
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(13,17,23,.88) 100%
  );
  z-index: 1;
}

/* No overlay on default bg — it would just darken the gradient */
.hero:not(.hero--image) .hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 880px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.hero-name {
  font-size: clamp(3.8rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: #fff;
  line-height: .95;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  letter-spacing: .01em;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Primary button — filled lime */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: var(--accent);
  color: #0d1117;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease);
}

.btn-outline::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--ease);
}

.btn-outline:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
}

.btn-outline:hover::after { transform: translateX(4px); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(163,230,53,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   Category Grid
   ========================================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3px;
}

.category-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  filter: brightness(.9) saturate(1.1);
}

.category-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--border);
}

.category-card:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.2); }

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transition: background var(--ease);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(13,17,23,.92) 0%, rgba(0,0,0,.2) 55%);
}

.category-card__overlay h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.category-card__overlay span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =========================================================
   Album Grid
   ========================================================= */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.album-card { display: block; }

.album-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}

.album-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.92) saturate(1.05);
}

.album-card:hover .album-card__img img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.15);
}

.album-card__info { padding: 14px 0 0; }

.album-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.album-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.album-location,
.album-count { font-size: 12px; color: var(--text-muted); }

/* =========================================================
   About
   ========================================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(.9) saturate(1.05);
}

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 22px; }

.about-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-text p { margin-bottom: 14px; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 28px;
  transition: border-color var(--ease);
}

.review-card:hover { border-color: var(--border-h); border-left-color: var(--accent-h); }

.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star         { font-size: 13px; color: var(--border-h); }
.star--filled { color: var(--accent); }

.review-text {
  font-style: normal;
  font-weight: 400;
  font-size: .975rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  quotes: '\201C' '\201D';
}

.review-text::before {
  content: open-quote;
  font-size: 2.2rem;
  line-height: 0;
  vertical-align: -.42em;
  color: var(--accent);
  opacity: .5;
  margin-right: 4px;
  font-weight: 700;
}

.review-author { display: flex; align-items: center; gap: 10px; }

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 13px; font-weight: 600; }
.review-album         { font-size: 11px; color: var(--text-muted); }

/* =========================================================
   Contact
   ========================================================= */
#contact { text-align: center; }

.contact-content { max-width: 560px; margin: 0 auto; }
.contact-content .section-title { margin-bottom: 24px; }

.contact-email {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  margin-bottom: 32px;
  letter-spacing: -.01em;
  transition: color var(--ease), border-color var(--ease);
}

.contact-email:hover { color: var(--accent-h); border-color: var(--accent-h); }

.contact-social { display: flex; justify-content: center; gap: 24px; }

.social-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
}

.social-link:hover { color: var(--accent); }
.social-arrow { margin-left: 4px; }

/* =========================================================
   Footer
   ========================================================= */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 12px; color: var(--text-muted); }

.footer-social { display: flex; gap: 18px; }

.footer-social a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
}

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

/* =========================================================
   Page Hero (category page)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  background: var(--surface);
  background-size: cover;
  background-position: center;
}

.page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,.9) 0%, rgba(0,0,0,.25) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 44px 40px;
}

.page-hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}

.page-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 500px;
}

/* =========================================================
   Album Header
   ========================================================= */
.album-header {
  padding: calc(var(--nav-h) + 56px) 0 52px;
  text-align: center;
}

.album-header__title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.album-header__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.album-header__desc {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-muted);
}

/* =========================================================
   Photo Grid — CSS masonry via columns
   ========================================================= */
.photo-grid {
  columns: 3 260px;
  column-gap: 4px;
  padding: 4px 24px 96px;
  max-width: 1600px;
  margin: 0 auto;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--surface);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
  filter: brightness(.93) saturate(1.1);
}

.photo-item:hover img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1.2);
}

.photo-item__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease), background var(--ease);
}

.photo-item:hover .photo-item__overlay {
  opacity: 1;
  background: rgba(163, 230, 53, 0.08);
}

/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--accent); transition: opacity var(--ease); }
.breadcrumb a:hover { opacity: .75; }

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 70px 90px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity .15s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  transition: color var(--ease);
  line-height: 1;
}

.lightbox-close { top: 22px; right: 26px; font-size: 22px; }
.lightbox-prev  { top: 50%; left: 20px;  transform: translateY(-50%); font-size: 50px; }
.lightbox-next  { top: 50%; right: 20px; transform: translateY(-50%); font-size: 50px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--accent); }

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
}

/* =========================================================
   Empty state
   ========================================================= */
.empty-state {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .container     { padding: 0 28px; }
  .nav-container { padding: 0 28px; }
  .about-layout  { grid-template-columns: 1fr; gap: 44px; }
  .about-image   { max-width: 480px; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,17,23,.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 14px 0 22px;
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links > a,
  .dropdown-trigger { padding: 12px 28px; font-size: 12px; text-align: left; }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 0 0 6px 44px;
  }

  .nav-toggle { display: flex; }

  .category-grid { grid-template-columns: 1fr 1fr; }
  .album-grid    { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .photo-grid    { columns: 2 160px; padding: 4px 16px 70px; }

  .footer-inner  { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero__content { padding: 34px 28px; }
  .album-header  { padding: calc(var(--nav-h) + 36px) 0 36px; }

  .lightbox-inner { padding: 56px 60px; }
  .lightbox-prev  { left: 6px; }
  .lightbox-next  { right: 6px; }
}

@media (max-width: 480px) {
  .container     { padding: 0 18px; }
  .nav-container { padding: 0 18px; }

  .category-grid { grid-template-columns: 1fr; }
  .photo-grid    { columns: 1; padding: 4px 8px 60px; }

  .lightbox-inner { padding: 48px 10px; }
}

/* =========================================================
   FAQ (details/summary accordion)
   ========================================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color var(--ease);
  user-select: none;
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease);
}

details[open] .faq-question          { color: var(--accent); }
details[open] .faq-question::after   { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-answer p { margin-bottom: 10px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form         { display: flex; flex-direction: column; gap: 20px; }
.form-row             { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group           { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.required { color: var(--accent); }

.form-input,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  resize: vertical;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
}

.form-textarea { min-height: 150px; }

.form-group--error .form-input,
.form-group--error .form-textarea { border-color: #ef4444; }

.form-error {
  font-size: 12px;
  font-weight: 500;
  color: #ef4444;
}

.form-discord-error {
  padding: 13px 16px;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .3);
  font-size: 13px;
  color: #f87171;
}

/* Full-width button */
.btn--full { width: 100%; justify-content: center; }

/* Sidebar */
.contact-info {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.contact-info__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-info__item { margin-bottom: 20px; }

.contact-info__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--ease);
}

.contact-info__value:hover { color: var(--accent); }

.contact-info__response {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 80px 40px;
  max-width: 480px;
  margin: 0 auto;
}

.contact-success__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.contact-success h2 {
  font-size: 2rem;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.contact-success p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   CTA strip (about page footer)
   ========================================================= */
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip .section-label { margin-bottom: 8px; }
.cta-strip .section-title  { text-align: left; }

/* =========================================================
   Additional responsive rules
   ========================================================= */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .form-row       { grid-template-columns: 1fr; }
  .cta-strip      { flex-direction: column; align-items: flex-start; }
}
