/* ----------------------------
   Modern CSS Reset
----------------------------- */
/* 1. Box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Allow percentage-based heights */
html,
body {
  height: 100%;
}

/* 4. Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #585858;
  background-color: #fff;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Remove list styles (only if you're styling them yourself) */
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

/* 9. Smooth scrolling (optional) */
html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #585858;
  background: white;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.hero {
  padding: 6rem 0 4rem;
  background-color: #f5f5f5;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

a {
  color: #585858;
  position: relative;
}

.about p {
  margin-bottom: 24px;
}

p.pre-title {
  text-transform: uppercase;
  color: #6b7280;
}

p.tagline {
  margin-bottom: 1.5rem;
}

a.contact-info-bold {
  display: block;
  font-weight: 700;
  text-transform: none;
  margin: 0 0 2rem 2rem;
  text-decoration: none;
  font-size: 18px;
}

.contact-info-bold:last-of-type {
  display: inline-block;
  border-bottom: 1px solid;
}

.contact-info-bold:last-of-type:hover {
  border-bottom: 2px solid;
}

.contact-info-bold svg {
  color: #585858;
  font-weight: 400;
}

.contact-pre-title {
  text-transform: uppercase;
}

.contact-pre-title svg {
  display: inline;
  margin-right: 0.75rem;
  width: 20px;
  position: relative;
  top: .375rem;
}

.grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.site-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
  background: white;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  font-size: 24px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo-text-spk {
  font-weight: 700;
  margin-right: .375rem;
}

.logo-wrapper {
  text-decoration: none;
}

.btn-primary {
  background: #111111;
  color: white;
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  background: #333;
}

.btn-secondary {
  border: 1px solid #111111;
  color: #111111;
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-secondary:hover {
  background: #111111;
  color: white;
}

.btn-secondary svg {
  display: inline;
  margin-right: 0.75rem;
  width: 20px;
}

.card {
  padding: 1.5rem;
  background: #f5f5f5;
}

.card svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
  margin-bottom: 1rem;
  color: #db865e;
}

.gallery-grid {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.gallery-grid img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

form.contact {
  background-color: #f5f5f5;
  padding: 2rem;
}

input,
textarea {
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  -webkit-transition: border 0.2s ease;
  transition: border 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #111111;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.socials {
  margin: 24px 0;
}

footer {
  margin: 2rem 0;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .gallery-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .hero h1 {
    font-size: 3rem;
  }
  .grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .about-grid,
  .contact-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .socials {
    background-color: white;
  }
}
/*# sourceMappingURL=main.css.map */