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

:root {
  --ink: #373737;
  --paper: #ffffff;
  --cream: #f9f6f1;
  --line: #e7e3db;
  --max: 1400px;
}

* { box-sizing: border-box; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
}

.logo {
  font-family: 'Sen', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn span {
  display: block;
  height: 1px;
  background: var(--ink);
  width: 100%;
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay .close-btn {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #888;
  font-family: sans-serif;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.nav-links li { margin: 26px 0; }

.nav-links a {
  font-family: 'Sen', sans-serif;
  font-size: 28px;
  color: #4a4a4a;
  letter-spacing: 0.02em;
}

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

/* Portfolio grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
}

.grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f2;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid a:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}

/* Generic page layout */
.page-hero {
  width: 100%;
  max-height: 720px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 28px 100px;
}

.content h1 {
  font-family: 'Sen', sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.04em;
  margin: 0 0 30px;
}

.content p { margin: 0 0 22px; }

.content h2 {
  font-family: 'Sen', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 44px 0 16px;
}

.about-figure {
  margin: 0 0 40px;
}

.instagram-tag {
  font-family: 'Sen', sans-serif;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Pricing */
.packages {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 28px 100px;
}

.packages > h1 {
  font-family: 'Sen', sans-serif;
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.03em;
  margin: 56px 0 60px;
}

.package {
  border-top: 1px solid var(--line);
  padding: 46px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

.package:last-of-type { border-bottom: 1px solid var(--line); }

.package img {
  border-radius: 2px;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.package h3 {
  font-family: 'Sen', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 14px;
}

.package .price {
  font-family: 'Sen', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 18px;
  display: inline-block;
}

@media (max-width: 640px) {
  .package { grid-template-columns: 1fr; }
}

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

.book-cta a {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 14px 40px;
  font-family: 'Sen', sans-serif;
  letter-spacing: 0.14em;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.book-cta a:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 44px;
}

.contact-form label {
  font-family: 'Sen', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

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

.contact-form button {
  margin-top: 12px;
  align-self: flex-start;
  border: 1px solid var(--ink);
  background: none;
  padding: 14px 40px;
  font-family: 'Sen', sans-serif;
  letter-spacing: 0.14em;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-form button:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 20px 60px;
  font-size: 13px;
  color: #999;
}
