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

:root {
  --stone: #5a4a3a;
  --stone-light: #8a7a6a;
  --cream: #f5f0eb;
  --text: #2c2416;
  --accent: #3d6b4f;
}

body {
  font-family: 'Raleway', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

/* ── Header / Nav ── */
header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  transition: opacity 0.2s;
}
nav a:hover { opacity: 0.75; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.30) 100%);
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 2.5rem 3rem;
  max-width: 700px;
}

.hero-name {
  font-size: clamp(1rem, 5vw, 2.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 0.75rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-content h1 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(0.85rem, 3.5vw, 1.6rem);
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.4;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 3px;
    color: #333;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 3rem);
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-top: 1rem;
}

.hero-name {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 0.75rem;
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2.2rem;
  background: #333333;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  border-radius: 3px;
  transition: background 0.2s;
  font-family: 'Raleway', sans-serif;
}
.hero-cta:hover { background: #1a1a1a; }

/* ── Sections ── */
section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--stone);
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}

/* ── Services ── */
.services-bg { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--stone);
}

.service-card p {
  font-size: 0.92rem;
  color: #555;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  transition: opacity 0.2s;
}

.gallery-grid img:hover { opacity: 0.88; }

.gallery-grid .gallery-wide {
  grid-column: span 2;
}

.gallery-grid .gallery-wide img {
  height: 220px;
}

/* ── About strip ── */
.about-strip {
  background: var(--stone);
  color: #fff;
  text-align: center;
}

.about-strip p {
  font-size: 1.25rem;
  max-width: 620px;
  margin: 0 auto;
  font-style: italic;
  opacity: 0.95;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--stone);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: Arial, sans-serif;
}

.contact-icon {
  font-size: 1.1rem;
  width: 1.5rem;
  text-align: center;
  color: #888;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
}

.contact-map img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* ── Footer ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 2rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { display: none; }
  nav { display: none; }
  .hero-content { padding: 1.25rem; max-width: 90vw; }
  .hero-name { letter-spacing: 0.08em; font-size: clamp(1.4rem, 6vw, 2rem); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-wide { grid-column: span 1; }
  .hero-content { padding: 1rem; max-width: 95vw; }
}
