/*
 * Typography ground truth pulled from the live original site via
 * getComputedStyle() (not estimated from screenshots):
 *   Heading/logo/button font: brandon-grotesque (weight 900) — Adobe Fonts
 *   Body/nav font:            europa (weight 300/400)        — Adobe Fonts
 * Both are paid Adobe Fonts. TYPEKIT_KIT_ID below is a placeholder until
 * a kit ID (from fonts.adobe.com, with these two families added for web
 * use) is supplied — see index.html <head> for the loader script.
 */

:root {
  --font-heading: brandon-grotesque, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: europa, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --color-black: #111111;
  --color-pure-black: #000000;
  --color-body: #666666;
  --color-nav: #9c9c9c;
  --color-tagline: #aaaaaa;
  --color-border: #e5e5e5;
  --color-bg: #ffffff;
  --color-button-bg: #272727;
  --color-badge-bg: #222222;

  --content-left: 60px;
  --content-width: 960px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* Header container: symmetric 60px margins */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Content container: fixed 60px left margin, capped at 960px wide (not centered) */
.container-content {
  max-width: calc(var(--content-width) + var(--content-left));
  margin: 0;
  padding: 0 0 0 var(--content-left);
}

/* Header */
.site-header {
  padding: 60px 0 0;
}

.site-header .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-header__brand { min-width: 0; }

.site-header__logo {
  text-decoration: none;
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 2px;
  line-height: 1.2;
  color: var(--color-black);
}

.site-header__tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--color-tagline);
}

.site-nav {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
  text-transform: uppercase;
  color: var(--color-nav);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-pure-black);
}

/* Sections */
section { padding: 0; }

.content-block {
  padding: 172px 0 72px;
}

.content-block--tight { padding-top: 132px; }

/* Plain "page title" text — on the original, TOS/Privacy/Legal titles
   render in the exact same style as body paragraphs, no emphasis. */
p.page-title {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-body);
  margin: 0 0 25px;
}

.page-title--italic {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--color-body);
  margin: 0 0 25px;
}

/* Real content heading (Hire page, product detail title) */
h1.content-heading {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--color-black);
  margin: 0 0 40px;
}

h3.section-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-body);
  margin: 32px 0 12px;
}

.prose p { margin: 0 0 25px; }

.prose ul {
  margin: 0 0 25px;
  padding-left: 22px;
}

.prose ul li { margin-bottom: 8px; }

.prose a { color: var(--color-black); text-decoration: underline; }

/* Narrower inset column (Hire body copy sits in a centered sub-column) */
.prose--inset {
  max-width: 500px;
  margin: 0 auto;
}

.center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* Buttons: small, auto-width, used sparingly */
.btn {
  display: inline-block;
  padding: 16px 35px;
  background: var(--color-button-bg);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.btn:hover { opacity: 0.85; }

/* Featured image placeholder (Hire page) */
.featured-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #f3f3f3;
  margin-bottom: 56px;
  display: block;
}

/* Hire CTA row */
.cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.cta-row p { margin: 0; max-width: 320px; }

/* Shop grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-top: 40px;
}

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__image-wrap {
  position: relative;
  margin-bottom: 14px;
}

.product-card__image-wrap img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.product-card__sold-out {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-badge-bg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 8px;
  border-radius: 0;
}

.product-card__name {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: var(--color-black);
  margin: 0 0 2px;
}

.product-card__price {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: var(--color-black);
  margin: 0;
}

/* Back-to-shop link */
.back-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  margin-bottom: 40px;
}

.back-link:hover { text-decoration: underline; }

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: 56px;
  align-items: start;
}

.product-detail__gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: zoom-in;
}

.product-detail__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.product-detail__thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 1px solid transparent;
}

.product-detail__thumbs img:hover,
.product-detail__thumbs img.is-active {
  opacity: 1;
  border-color: var(--color-black);
}

.product-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-detail__title {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--color-black);
  margin: 0;
}

.product-detail__sold-out {
  background: var(--color-badge-bg);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 8px;
  white-space: nowrap;
  margin-top: 4px;
}

.product-detail__price {
  color: var(--color-body);
  font-size: 16px;
  margin: 12px 0 0;
}

.product-detail__subtitle {
  color: var(--color-body);
  font-size: 13px;
  margin: 4px 0 0;
}

.product-detail__desc { margin: 20px 0 24px; }
.product-detail__desc p { margin: 0 0 16px; }

.product-detail__share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-nav);
}

.product-detail__share-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--color-nav);
  display: inline-block;
}

/* Modal (sold-out popup) */
.cart-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.cart-modal {
  position: relative;
  background: var(--color-bg);
  max-width: 420px;
  width: 90%;
  padding: 32px;
  text-align: center;
}

.cart-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: var(--color-nav);
  padding: 4px;
}

.cart-modal__close:hover { color: var(--color-black); }

.cart-modal h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 17px;
  color: var(--color-black);
}

.cart-modal p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--color-body);
}

.cart-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Contact form */
.contact-form { max-width: 620px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .field { margin-bottom: 20px; }

.contact-form label {
  display: block;
  font-size: 13px;
  color: var(--color-body);
  margin-bottom: 6px;
}

.contact-form label .req {
  font-size: 11px;
  color: var(--color-nav);
  font-weight: 300;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  font: inherit;
  font-size: 14px;
  background: #fafafa;
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.radio-group { margin-bottom: 24px; }

.radio-group__label {
  font-size: 13px;
  color: var(--color-body);
  margin-bottom: 10px;
  display: block;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-body);
  margin-bottom: 6px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-body);
  margin-bottom: 24px;
}

.form-status {
  font-size: 13px;
  margin-top: 12px;
}

.form-status--ok { color: #1a7f37; }
.form-status--error { color: #b3261e; }

/* Legal links list */
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.legal-links a {
  color: var(--color-black);
  text-decoration: underline;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  padding: 40px 0 48px;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 300;
}

.site-footer a { color: var(--color-black); text-decoration: underline; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .container-content { max-width: 100%; padding: 0 24px; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
}
