/*
Theme Name: Flash / Frame
Theme URI: https://example.com
Author: Flash / Frame
Description: A custom, minimal photobooth business theme.
Version: 1.0.0
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --black: #000;
  --white: #f5f5f5;
  --muted: #949494;
  --line: #2c2c2c;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.site-shell {
  margin: 0 auto;
  max-width: 860px;
  min-height: 100vh;
  padding: 0 24px;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  padding: 28px 0;
}

.site-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
}

.brand-lockup {
  align-items: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  max-width: 544px;
  text-decoration: none;
  width: 100%;
}

.brand-camera {
  display: block;
  height: auto;
  width: 116px;
}

.brand-kicker {
  align-items: center;
  display: flex;
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 500;
  gap: clamp(10px, 2vw, 16px);
  letter-spacing: .42em;
  line-height: 1;
  margin-top: 7px;
  padding-left: .42em;
  white-space: nowrap;
}

.brand-rule {
  background: currentColor;
  display: block;
  height: 1px;
  opacity: .9;
  width: clamp(40px, 8vw, 68px);
}

.brand-name {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: .25em;
  line-height: 1;
  margin-top: 11px;
  padding-left: .25em;
  white-space: nowrap;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px 0 36px;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-link {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  gap: 7px;
  text-decoration: none;
  transition: opacity .18s ease;
}

.footer-link:hover {
  opacity: .65;
}

.footer-icon {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 17px;
}

.contact-area {
  padding: 96px 0;
}

.eyebrow {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-title {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 20px 0 52px;
  max-width: 520px;
}

.contact-form {
  display: grid;
  gap: 36px;
}

.form-row {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-label {
  display: block;
}

.form-label span {
  display: block;
}

.form-field {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  display: block;
  font: inherit;
  margin-top: 8px;
  outline: 0;
  padding: 14px 0;
  width: 100%;
}

.form-field::placeholder {
  color: var(--muted);
}

.form-field:focus {
  border-bottom-color: var(--white);
}

.preference-group {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.preference-hint {
  color: var(--muted);
  font-size: 11px;
  margin: 9px 0 0;
}

.preference-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.preference-option {
  align-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  transition: border-color .18s ease, color .18s ease;
}

.preference-option:hover,
.preference-option:focus-within,
.preference-option:has(input:checked) {
  border-color: var(--white);
  color: var(--white);
}

.preference-option input {
  accent-color: var(--white);
  height: 14px;
  margin: 0;
  width: 14px;
}

.form-honeypot {
  display: none !important;
}

textarea.form-field {
  min-height: 96px;
  resize: vertical;
}

.submit-button {
  background: var(--white);
  border: 0;
  color: var(--black);
  cursor: pointer;
  font: inherit;
  padding: 17px 20px;
  text-align: left;
  transition: background .18s ease, transform .18s ease;
  width: 100%;
}

.submit-button:hover {
  background: #cfcfcf;
  transform: translateY(-2px);
}

.success-message,
.error-message {
  border: 1px solid var(--line);
  padding: 24px;
}

.success-message p,
.error-message p {
  margin: 0;
}

@media (max-width: 640px) {
  .site-shell {
    padding: 0 24px;
  }

  .contact-area {
    padding: 68px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .brand-camera {
    width: 96px;
  }

  .brand-kicker {
    letter-spacing: .32em;
    padding-left: .32em;
  }

  .brand-name {
    letter-spacing: .18em;
    padding-left: .18em;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}