:root {
  --black: #111;
  --white: #fff;
  --soft: #f6f4f0;
  --text: #2b2b2b;
  --muted: #777;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
	/*text-align:center;*/
}

header {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--soft);
}

.logo {
  max-width: 520px;
  margin: 0 auto 2rem;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
  color: var(--black);
	display:none;
}

.subtitle {
  margin-top: 1rem;
  font-family: Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--muted);
}

nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid #e7e2da;
  z-index: 10;
  text-align: center;
  padding: .9rem;
  font-family: Arial, sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

nav a {
  color: var(--black);
  text-decoration: none;
  margin: 0 .8rem;
}

section {
  max-width: 980px;
  margin: auto;
  padding: 5rem 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: normal;
  color: var(--black);
  margin-bottom: 1.8rem;
	text-transform: uppercase;
}

.intro {
  font-size: 1.5rem;
	max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--soft);
  padding: 2rem;
  min-height: 220px;
}

.card h3 {
  font-weight: normal;
  margin-top: 0;
  color: var(--black);
}

.gallery-note {
  background: var(--black);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.gallery-note p {
max-width: 720px;
  margin: auto;
  font-size: 1.5rem;
}

form {
  max-width: 680px;
  margin-top: 2rem;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
}

button:hover {
  opacity: .9;
}

footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: .85rem;
  color: var(--muted);
  border-top: 1px solid #e7e2da;
}

@media (max-width: 750px) {

  nav a {
    display: inline-block;
    margin: .35rem .6rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

}