@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --stone: #8B7355;
  --stone-dark: #5C4A32;
  --stone-light: #C4A882;
  --earth: #3D2B1F;
  --moss: #5A6B3A;
  --moss-light: #7A8F55;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --water: #7BAAB5;
  --text: #2C1F14;
  --text-light: #6B5544;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(61, 43, 31, 0.92);
  backdrop-filter: blur(6px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(196, 168, 130, 0.3);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--stone-light);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--stone-light);
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--earth);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/project3.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61,43,31,0.3) 0%,
    rgba(61,43,31,0.1) 40%,
    rgba(61,43,31,0.7) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--cream);
  padding: 2rem;
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title em {
  color: var(--stone-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--cream-dark);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--stone);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--stone-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--stone-light);
  color: var(--stone-light);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--stone-light);
  color: var(--earth);
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--earth);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--stone);
  font-style: italic;
}

/* ── INTRO ── */
.intro {
  background: var(--cream);
  text-align: center;
}

.intro-inner {
  max-width: 680px;
  margin: 0 auto;
}

.intro p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--stone), var(--moss));
  margin: 2rem auto;
}

/* ── FEATURES ── */
.features {
  background: var(--earth);
  color: var(--cream);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features .section-title {
  color: var(--cream);
  text-align: center;
  margin-bottom: 3rem;
}

.features .section-label {
  text-align: center;
  color: var(--stone-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196,168,130,0.2);
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: var(--stone-light);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--stone-light);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
}

/* ── PREVIEW GALLERY (homepage) ── */
.preview-gallery {
  background: var(--cream-dark);
}

.preview-gallery .inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}

.preview-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.9);
}

.preview-grid img:hover {
  transform: scale(1.03);
  filter: saturate(1.1);
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--moss);
  text-align: center;
  padding: 4rem 2rem;
  color: var(--cream);
}

.cta-strip .section-title {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cta-strip p {
  color: rgba(245,240,232,0.8);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding-top: 64px;
  background: var(--earth);
  text-align: center;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/project4.jpg') center/cover no-repeat;
  opacity: 0.2;
}

.page-header-content {
  position: relative;
  padding-top: 4rem;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--stone-light);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ── GALLERY PAGE ── */
.gallery-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--stone-dark);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.8;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(61,43,31,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── ABOUT PAGE ── */
.about-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 12px 12px 0 var(--stone-light);
}

.about-values {
  background: var(--earth);
  padding: 5rem 2rem;
}

.about-values .inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-values .section-title {
  color: var(--cream);
}

.about-values .section-label {
  color: var(--stone-light);
}

.values-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}

.values-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: rgba(245,240,232,0.85);
  font-size: 0.95rem;
}

.values-list li::before {
  content: '◆';
  color: var(--stone-light);
  font-size: 0.6rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── CONTACT PAGE ── */
.contact-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--earth);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.contact-detail .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-detail a {
  color: var(--stone-dark);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--moss);
}

.contact-form .section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: white;
  border: 1px solid var(--cream-dark);
  border-bottom: 2px solid var(--stone-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--moss);
}

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

.form-success {
  display: none;
  background: var(--moss);
  color: var(--cream);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  background: var(--earth);
  color: rgba(245,240,232,0.6);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
}

footer a {
  color: var(--stone-light);
  text-decoration: none;
}

footer strong {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { gap: 1.5rem; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
}

@media (max-width: 520px) {
  .nav-links { display: none; }
  .nav-logo { font-size: 1.6rem; }
  nav { justify-content: center; }
}
