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

/* ROOT THEME */
:root {
  --bg: #f8f6f2;
  --text: #1a1a1a;
  --accent: #c4622d;
  --muted: #6b6b6b;
}

/* BODY */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  letter-spacing: 0.2px;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

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

h2 {
  font-size: 2.2rem;
}

p {
  color: var(--muted);
}

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

.narrow {
  max-width: 680px;
}

/* NAV */
.nav {
  padding: 20px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  letter-spacing: 1px;
}

.logo-img img{
  width: 35px;
}


.nav-links a {
  margin-left: 25px;
  font-size: 0.9rem;
  position: relative;
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--accent);
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:active, .nav-links a:hover, .nav-links a:visited {
    color: inherit;
}

.nav-cta {
  border: 1px solid var(--text);
  padding: 6px 14px;
  border-radius: 20px;
}

/* HERO */
.hero {
  padding: 120px 0 90px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(196,98,45,0.08), transparent 60%);
  z-index: -1;
}

.hero p {
  margin: 20px auto;
  max-width: 600px;
}

/* BUTTON */
.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 30px;
  background: var(--text);
  color: #fff;
  transition: 0.25s;
}

.cta:hover {
  background: var(--accent);
}

/* SECTION */
.section {
  padding: 90px 0;
}

.section.alt {
  background: #efece6;
}

.section h2 {
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.card {
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8e5df;
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

/* WORK ITEMS */
.work-item {
  margin-bottom: 40px;
}

.work-item h3 {
  margin-bottom: 10px;
}

/* FORM */
form {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
}

/* FOOTER */
.footer {
  padding: 50px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}