@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: "Brighton";
  src: url("fonts/brighton-std-medium.otf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Brighton Light";
  src: url("fonts/brighton-std-light.otf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Avenir";
  src: url("fonts/avenir/book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Bold";
  src: url("fonts/avenir/heavy.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --khaki: #b9b791;
  --mid-blue: #d2deea;
  --light-olive: #8F8B4E;
  --olive: #716d39;
  --powder-blue: #a7bed3;
  --light-blue: #C6E2E9;
  --coral: #ffa98a;
  --seashell: #f7f7f2;
  --dark-blue: #34435e;
  --salmon: #fd8b7b;
  --shadow: rgba(0, 0, 0, 0.12);
  --gold: #b88606;
  --light-gold: #eac361;
  --pale-olive: #e0dfcb;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--olive);
  color: var(--seashell);
  font-family: "Avenir", sans-serif;
  line-height: 1.7;
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
blockquote {
  font-family: "Brighton", serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--olive);
}

.top-bar {
  background: var(--olive);
  color: var(--seashell);
  padding: 0.8rem 8%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.top-bar a {
  color: var(--seashell);
  font-weight: 700;
  border-bottom: 1px solid var(--seashell);
}

.nav {
  background: var(--light-olive);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-olive);
  padding: 1.25rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.9rem;
}

.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--seashell);
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--pale-olive);
}

.nav-button {
  background: var(--seashell);
  color: var(--olive) !important;
  padding: 0.7rem 1rem;
  border-radius: 4px;
  font-weight: 700;
}

.nav-button:hover {
  background: var(--pale-olive);
  color: var(--seashell);
  transform: translateY(-3px);
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 3rem;
  padding: 8rem 5% 12rem;
  background:
    linear-gradient(
      rgba(244, 247, 248, 1.0),
      rgba(185, 183, 145, 0.7)
    ),
    url("images/background.svg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}

.hero-logo img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  transform: translateY(-20px);
}

.hero-copy {
  max-width: 850px;
  order: 2;
}
.eyebrow {
  color: var(--gold);
  font: "Avenir", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
  

h1 {
  color: var(--olive);
  font-family: "Brighton Light", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}


.hero-copy p {
  max-width: none;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.hero-description {
  color: var(--olive);
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.button,
button {
  display: inline-block;
  background: var(--seashell);
  color: var(--olive);
  border: none;
  border-radius: 4px;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  transition: 0.25s ease;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: var(--pale-olive);
  color: var(--light-olive);
  transform: translateY(-3px);
}

.button.secondary {
  background: var(--olive);
  color: var(--seashell);
}

.button.secondary:hover {
  background: var(--light-olive);
  color: var(--seashell);
  transform: translateY(-3px);
}

.hero-card,
.service-card,
.process-step,
.contact-form,
.automation-card {
  background: var(--olive);
  border: 1px solid rgba(253, 246, 237, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  color: var(--seashell);
}

.hero-card {
  padding: 2.75rem;
}

.hero-card h2 {
  font-size: 2.25rem;
}

.hero-card p {
  margin-top: 1rem;
}

.split-section {
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  background: var(--olive);
}

.content-block {
  font-size: 1.05rem;
  color: rgba(253, 246, 237, 0.9);
}

.content-block p + p {
  margin-top: 1rem;
}

.services-section {
  padding: 6rem 8%;
  background: var(--pale-olive);
  color: var(--olive);
}

.centered,
.centered-title {
  text-align: center;
}

.centered-title {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  transition: 0.3s ease;
  padding: 2.5rem;
  min-height: 260px;
  background: var(--seashell);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card p {
  margin-bottom: 1.25rem;
  color: var(--olive);
}

.service-card a {
  color: var(--gold);
  font-weight: 700;
}

.service-card:hover {
  background: var(--pale-olive);
  color: var(--seashell);
  transform: translateY(-6px);
}

.service-card:hover h3,

.service-card:hover p {
  color: var(--olive);
}

.service-card:hover a {
  color: var(--gold);
}

.process-section {
  padding: 6rem 8%;
  background: var(--olive);
  color: var(--olive);
}

.process-section h2,
.process-section h3 {
  color: var(--seashell);
}

.process-section .eyebrow {
  color: var(--light-gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.process-step {
  background: rgba(253, 246, 237, 0.18);
  color: var(--olive);
}

.process-step h3,
.process-step p {
  color: var(--seashell);
}

.process-step {
  padding: 2rem;
}

.process-step span {
  display: block;
  color: var(--olive);
  font-weight: 800;
  margin-bottom: 1rem;
}

.automation-section {
  padding: 6rem 8%;
  background: var(--khaki);
}

.automation-card {
  background: var(--olive);
  padding: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.automation-card p {
  max-width: 760px;
}

.feature-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-list div {
  background: rgba(253, 246, 237, 0.13);
  border: 1px solid rgba(253, 246, 237, 0.14);
  padding: 1rem;
  font-weight: 700;
  border-radius: 6px;
}

.contact-us
{
  padding: 6rem 8%;
  background: var(--seashell);
  color: var(--olive);
}

.contact-us-text {
  max-width: 700px;
  margin-bottom: 2rem;
}

.contact-section {
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  background: var(--khaki);
  color: var(--seashell);
}

.contact-section p {
  max-width: 560px;
  color: rgba(253, 246, 237, 0.9);
}

.contact-form {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.team-member {
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
  background: var(--seashell);
}

.team-member + .team-member {
  padding-top: 0;
}

.team-member-reverse .team-photo {
  order: 2;
}

.team-member-reverse .team-bio {
  order: 1;
}

.team-photo {
  display: flex;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.30);
}

.team-bio {
  max-width: 700px;
}

.team-bio h2 {
  color: var(--olive);
  margin-bottom: 0.25rem;
}

.team-bio h3 {
  color: var(--olive);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.team-bio p:not(.eyebrow) {
  color: var(--olive);
  margin-bottom: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  background: rgba(253, 246, 237, 0.08);
  border: 1px solid rgba(253, 246, 237, 0.2);
  color: var(--seashell);
  padding: 0.9rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(253, 246, 237, 0.6);
}

select option {
  color: var(--olive);
}

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

.footer {
  background: var(--olive);
  color: var(--seashell);
  padding: 3rem 8%;
  display: grid;
  grid-template-columns: 3fr 1fr;
  column-gap: 4rem;
  row-gap: 2rem;
}

.footer > div:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.footer > div:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.footer > div:nth-child(3) {
  grid-column: 1 / -1;
  grid-row: 2;
}

.footer h3,
.footer h4 {
  margin-bottom: 0.8rem;
}

.footer a {
  display: block;
  color: var(--misty-latte);
  margin-bottom: 0.4rem;
}

.footer p {
  color: rgba(253, 246, 237, 0.82);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }
}
  .split-section,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }


@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .top-bar,
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero,
  .split-section,
  .services-section,
  .process-section,
  .automation-section,
  .contact-section {
    padding: 4rem 1.25rem;
  }

  .service-grid,
  .process-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .automation-card,
  .hero-card {
    padding: 2rem;
  }

  .footer {
    padding: 3rem 1.25rem;
  }
}

.blog-section {
  padding: 6rem 8%;
  background: var(--seashell);
  color: var(--olive);
}

.blog-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.blog-header h2 {
  color: var(--olive);
  max-width: 750px;
  margin-bottom: 0;
}

.blog-intro {
  max-width: 500px;
  color: var(--olive);
  font-size: 1.05rem;
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  display: block;
  background: var(--seashell);
  color: var(--olive);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.13);
}

.blog-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 1.75rem 2rem 2rem;
}

.blog-category {
  color: #cc876e;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.blog-card h3 {
  color: var(--olive);
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.blog-link {
  color: var(--olive);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}