/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #1a1612;
  --gold: #b8922a;
  --gold-light: #c9a84c;
  --cream: #f5f0e8;
  --cream-dark: #ede5d6;
  --text: #2c2416;
  --gray: #9e9088;
  --font-heading: 'Georgia', serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Nav ── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245, 240, 232, 0.95);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.2rem 2rem;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%),
                    url('../images/hero.jpg');
  background-size: cover;
  background-position: center top;
}

#hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

#hero p {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* ── Button ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
  font-family: var(--font-body);
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Sections ── */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

/* ── About ── */
.about-inner {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  flex: 0 0 400px;
}

.about-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

/* ── Portfolio ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portfolio-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.2s;
}

.portfolio-grid img:hover {
  opacity: 0.85;
}

/* ── Book Form ── */
#book {
  max-width: 600px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input,
form textarea {
  background: var(--cream-dark);
  border: 1px solid #d4c9b8;
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

form input:focus,
form textarea:focus {
  border-color: var(--gold);
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--cream-dark);
  text-align: center;
  padding: 2rem;
  color: var(--gray);
  font-size: 0.85rem;
}
