@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f4f4f4;
  --text: #161616;
  --text-dim: #6b6b6b;
  --accent: #cfa15a;
  --border: #e0e0e0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--text); text-decoration: none; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}

nav a:hover, nav a.active { color: var(--accent); }

/* Placeholder image blocks */
.placeholder {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  padding: 16px;
}

/* Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
}

.hero .placeholder,
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 80px;
  left: 160px;
  max-width: 520px;
}

.hero-text h1 {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 8px;
}

.hero-text p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Generic page content */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.page-content h1 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
}

.page-content .lede {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 48px;
}

/* Service blocks */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.service.dark {
  background: #000000;
  color: #ffffff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

.service.dark .service-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

.service.dark .service-inner.reverse {
  flex-direction: row-reverse;
}

.service h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.service.dark h2 { color: #ffffff; }

.service .placeholder,
.service img,
.service video {
  width: 100%;
  max-width: 384px;
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.service-text {
  flex: 1;
  min-width: 240px;
  text-align: center;
}

.service-text ul {
  display: inline-block;
  text-align: center;
  padding-left: 0;
  list-style-position: inside;
}

.service ul {
  padding-left: 18px;
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
}

.service.dark ul { color: #cccccc; }

.service li { margin-bottom: 8px; }

.gallery {
  column-count: 3;
  column-gap: 12px;
  margin-top: 8px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 24px;
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  border-radius: 10px;
  break-inside: avoid;
}

@media (max-width: 640px) {
  .gallery { column-count: 2; }
}

.cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  border: 1px solid var(--text);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta:hover { background: var(--text); color: var(--bg); }

.service.dark .cta {
  border-color: #ffffff;
  color: #ffffff;
}

.service.dark .cta:hover { background: #ffffff; color: #000000; }

.cta-section {
  text-align: center;
  margin-top: 64px;
}

/* About page */
.about-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.about-grid .placeholder,
.about-grid img {
  flex: 1;
  min-width: 280px;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.about-grid .bio {
  flex: 1;
  min-width: 280px;
}

/* Contact page */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

label {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input, textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}

button[type="submit"] {
  align-self: flex-start;
  padding: 10px 24px;
  border: 1px solid var(--text);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

button[type="submit"]:hover { background: var(--text); color: var(--bg); }

.contact-info {
  margin-top: 40px;
  color: var(--text-dim);
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--border);
  text-align: right;
  padding: 24px 48px;
  color: var(--text-dim);
  font-size: 13px;
}

@media (max-width: 640px) {
  header { flex-direction: column; align-items: flex-start; }
  .hero-text { left: 24px; right: 24px; }
}
