/* ── Hero ── */
.hero {
  width: 100vw;
  height: 33vh;
  min-height: 260px;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-text-box {
  position: relative;
  z-index: 1;
  margin-left: 5vw;
  background: #00352D;
  color: #ffffff;
  padding: 3vh 3vw;
  max-width: 36vw;
  min-width: 280px;
}

.hero-text-box h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.2vh;
  color: #ffffff;
}

.hero-text-box p {
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Portfolio ── */
.portfolio {
  padding: 5vh 4vw;
  background: var(--bg);
}

.portfolio-title {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  color: #00352D;
  letter-spacing: 0.12em;
  margin-bottom: 1vh;
  padding-bottom: 1.2vh;
  display: inline-block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  border-bottom: 2px solid #00352D;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1vw;
  margin-top: 3vh;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00352D;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  padding: 1.2vh 1.2vw;
  line-height: 1.4;
}

/* ── Content Sections ── */
.content-section {
  padding: 8vh 10vw;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  color: #00352D;
  margin-bottom: 2.5vh;
}

.content-section p {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #4a6b64;
  line-height: 1.8;
  margin-bottom: 1.8vh;
}

.content-section.alt {
  background: #f0ede8;
  max-width: 100%;
  padding: 8vh 10vw;
}

.content-section.alt h2,
.content-section.alt p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.content-section.alt h2 {
  margin-bottom: 2.5vh;
}

/* ── Portfolio Page ── */
.portfolio-page {
  padding-top: 5vh;
}

.portfolio-grid-full {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Contact Section ── */
.contact-section {
  padding: 8vh 6vw;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6vw;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  color: #00352D;
  margin-bottom: 2vh;
  padding-bottom: 1.2vh;
  border-bottom: 2px solid #00352D;
  display: inline-block;
}

.contact-info p {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #4a6b64;
  line-height: 1.8;
  margin-bottom: 3vh;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.5vh;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.3vh;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #4a6b64;
}

.contact-label {
  font-weight: 700;
  color: #00352D;
  font-size: clamp(0.75rem, 0.85vw, 0.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.5vh;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8vh;
}

.form-group label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: #00352D;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #00352D;
  background: #faf8f5;
  border: 1px solid #e4e0d8;
  padding: 1.2vh 1vw;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00352D;
}

.form-submit {
  align-self: flex-start;
  padding: 1.2vh 3vw;
  background: #00352D;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.form-submit:hover {
  background: #004d40;
}
