* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #f7f5f0;
  line-height: 1.6;
}

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

/* =========================
   NAV (NO IMAGE HERE)
========================= */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8%;
  background: #0d0d0d;
  color: #fff;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  font-size: 14px;
}

/* =========================
   BUTTONS
========================= */

.btn,
.btn-small,
.btn-secondary {
  display: inline-block;
  border-radius: 0;
  padding: 14px 22px;
  font-weight: 600;
}

.btn {
  background: #111;
  color: #fff;
}

.btn-small {
  border: 1px solid #fff;
  padding: 9px 14px;
}

.btn-secondary {
  border: 1px solid #111;
  color: #111;
}

/* =========================
   HERO (IMAGE HERE ONLY)
========================= */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 8%;
  color: #fff;

  background-image: url("images/header-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 0;
}

/* Content above overlay */
.hero * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1;
  margin: 10px 0 24px;
  letter-spacing: -2px;
}

.subtitle {
  max-width: 680px;
  font-size: 20px;
  color: #d6d6d6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #bfa87a;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}

/* Hero buttons */
.hero .btn {
  background: #f7f5f0;
  color: #111;
}

.hero .btn-secondary {
  border-color: #f7f5f0;
  color: #f7f5f0;
}

/* =========================
   PAGE HEADER (ARTICLES PAGE)
========================= */

.page-header {
  position: relative;
  padding: 90px 8% 50px;
  color: #fff;

  background-image: url("images/header-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 0;
}

.page-header * {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 10px 0;
}

.page-header p {
  max-width: 720px;
  color: #ddd;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 90px 8%;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card,
.article-card,
.cta-box,
.booking-box {
  background: #fff;
  padding: 30px;
  border: 1px solid #e4dfd3;
}

.card h3 {
  margin-top: 0;
}

.dark {
  background: #181818;
  color: #fff;
}

.dark p {
  max-width: 800px;
  color: #ddd;
}

.list {
  font-size: 20px;
  max-width: 800px;
}

/* =========================
   ARTICLES
========================= */

.article-list {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.article-card h2 {
  margin: 5px 0 10px;
}

.article-card h2 a:hover {
  text-decoration: underline;
}

.date {
  color: #bfa87a;
  font-weight: 700;
}

/* =========================
   ARTICLE PAGE
========================= */

.article-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 90px 24px;
  background: #f7f5f0;
}

.article-page h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
}

.article-page p {
  font-size: 19px;
}

.article-page h2 {
  margin-top: 45px;
}

/* =========================
   CTA BOX
========================= */

.cta-box {
  margin-top: 55px;
}
/* =========================

   UPWORK SECTION

========================= */

.upwork-section {

  background: #f7f5f0;

}

.upwork-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;

}

.upwork-card {

  background: #fff;

  border: 1px solid #e4dfd3;

  padding: 40px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

}

.upwork-card h3 {

  margin-top: 0;

  font-size: 24px;

}

.upwork-card p {

  color: #555;

  margin-bottom: 25px;

}
/* =========================
   BOOKING
========================= */

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact-form {
  display: grid;
  gap: 20px;
  background: #fff;
  padding: 35px;
  border: 1px solid #e4dfd3;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
/* =========================

   ABOUT SECTION (WITH IMAGE)

========================= */

.dark {

  position: relative;

  background-image: url("images/header-bg1.jpg");

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;

  color: #fff;

}

/* Overlay for readability */

.dark::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(

    to bottom,

    rgba(0, 0, 0, 0.85),

    rgba(0, 0, 0, 0.7)

  );

  z-index: 0;

}

/* Keep content above overlay */

.dark * {

  position: relative;

  z-index: 1;

}

.dark p {

  max-width: 800px;

  color: #ddd;

}
input,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.calendar-placeholder {
  height: 500px;
  border: 1px dashed #999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  color: #555;
}
/* =========================

   ARTICLE IMAGE

========================= */

.article-image {

  width: 100%;

  margin-bottom: 40px;

  overflow: hidden;

  border: 1px solid #e4dfd3;

}

.article-image img {

  width: 100%;

  height: 420px;

  object-fit: cover;

  display: block;

}
/* =========================

   ARTICLE CARDS WITH IMAGES

========================= */

.article-card {

  display: grid;

  grid-template-columns: 280px 1fr;

  gap: 28px;

  align-items: stretch;

}

.article-card-image {

  width: 100%;

  height: 100%;

  min-height: 220px;

  overflow: hidden;

  border: 1px solid #e4dfd3;

}

.article-card-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: brightness(0.9);

  transition: transform 0.4s ease;

}

.article-card:hover .article-card-image img {

  transform: scale(1.05);

}

.article-card-content {

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.read-more {

  margin-top: 18px;

  display: inline-block;

  width: fit-content;

  border: 1px solid #111;

  padding: 10px 16px;

  font-weight: 700;

  font-size: 14px;

}

.read-more:hover {

  background: #111;

  color: #fff;

}
/* =========================

   FOCUS SECTION

========================= */

.focus-section {

  background: #f7f5f0;

}

.section-intro {

  max-width: 760px;

  font-size: 20px;

  color: #555;

  margin-bottom: 45px;

}

.focus-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

}

.focus-item {

  background: #fff;

  border: 1px solid #e4dfd3;

  padding: 34px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.focus-item:hover {

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);

}

.focus-item span {

  display: block;

  color: #bfa87a;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 18px;

}

.focus-item h3 {

  margin: 0 0 14px;

  font-size: 24px;

}

.focus-item p {

  margin: 0;

  color: #555;

}
/* =========================
   FOOTER
========================= */

footer {
  padding: 40px 8%;
  background: #0d0d0d;
  color: #aaa;
  font-size: 14px;
}

footer a {
  color: #fff;
}
/* =========================

   CARD IMAGES

========================= */

.card-image {

  width: 100%;

  height: 180px;

  margin-bottom: 20px;

  overflow: hidden;

  border: 1px solid #e4dfd3;

}

.card-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.4s ease;

}

/* subtle hover effect */

.card:hover .card-image img {

  transform: scale(1.05);

} 
/* =========================

   RESPONSIVE

========================= */

@media (max-width: 900px) {

  .nav {

    flex-direction: column;

    gap: 18px;

  }

  .nav nav {

    flex-wrap: wrap;

    justify-content: center;

  }

  .grid,

  .booking-grid,

  .upwork-grid,

  .focus-grid {

    grid-template-columns: 1fr;

  }

  .hero-actions {

    flex-direction: column;

    align-items: flex-start;

  }

  .article-card {

    grid-template-columns: 1fr;

    padding: 22px;

  }

  .article-card-image {

    height: 220px;

    min-height: 220px;

  }

  .article-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

  }

}
@media (max-width: 500px) {

  .section {

    padding: 60px 6%;

  }

  .article-card-image {

    height: 190px;

    min-height: 190px;

  }

  .article-card h2 {

    font-size: 22px;

  }

}

/* =========================

   ELEGANT ANIMATIONS

========================= */

.hero h1,

.hero .eyebrow,

.hero .subtitle,

.hero-actions,

.section h2,

.section-intro,

.card,

.focus-item,

.upwork-card {

  opacity: 0;

  transform: translateY(24px);

  transition: opacity 0.8s ease, transform 0.8s ease;

}

.hero h1 {

  transition-delay: 0.15s;

}

.hero .subtitle {

  transition-delay: 0.3s;

}

.hero-actions {

  transition-delay: 0.45s;

}

.is-visible {

  opacity: 1 !important;

  transform: translateY(0) !important;

}

.card,

.focus-item,

.upwork-card {

  transition: 

    opacity 0.8s ease,

    transform 0.8s ease,

    box-shadow 0.3s ease;

}

.card:hover,

.focus-item:hover,

.upwork-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

}

.card-image img {

  transition: transform 0.6s ease;

}

.card:hover .card-image img {

  transform: scale(1.06);

}

.btn,

.btn-secondary,

.btn-small {

  transition: 

    transform 0.25s ease,

    box-shadow 0.25s ease,

    background 0.25s ease,

    color 0.25s ease;

}

.btn:hover,

.btn-secondary:hover,

.btn-small:hover {

  transform: translateY(-3px);

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

}

.nav {

  animation: navFade 0.7s ease forwards;

}

@keyframes navFade {

  from {

    opacity: 0;

    transform: translateY(-14px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

@media (prefers-reduced-motion: reduce) {

  * {

    animation: none !important;

    transition: none !important;

  }

  .hero h1,

  .hero .eyebrow,

  .hero .subtitle,

  .hero-actions,

  .section h2,

  .section-intro,

  .card,

  .focus-item,

  .upwork-card {

    opacity: 1 !important;

    transform: none !important;

  }

}