/*
  Placeholder styling only. Intentionally plain/neutral —
  swap this out once brand design direction is ready.
*/

:root {
  --color-bg: #faf9f7;
  --color-text: #1f1c19;
  --color-muted: #6b645c;
  --color-primary: #2f2a25;
  --color-primary-text: #ffffff;
  --color-secondary: #e7e2db;
  --color-secondary-text: #1f1c19;
  --color-border: #ddd6cc;
  --max-width: 1100px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.nav a:hover {
  color: var(--color-text);
}

/* Hero */

.hero {
  padding: 80px 0 64px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Buttons */

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-text);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-secondary-text);
  border-color: var(--color-border);
}

/* Services */

.services {
  padding: 64px 0;
  border-top: 1px solid var(--color-border);
}

.services h2,
.gallery h2,
.contact h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 8px;
}

.section-sub {
  text-align: center;
  color: var(--color-muted);
  margin: 0 0 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin: 16px 0 8px;
}

.service-card p {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Placeholder images */

.placeholder-img {
  background: var(--color-secondary);
  border: 1px dashed var(--color-border);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: var(--radius);
}

.service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

/* Gallery */

.gallery {
  padding: 64px 0;
  border-top: 1px solid var(--color-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-img {
  aspect-ratio: 1 / 1;
}

/* Contact */

.contact {
  padding: 64px 0 80px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.email-line {
  margin-top: 24px;
  color: var(--color-muted);
}

.email-line a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
}
